@-webkit-keyframes flash {
    0%,50%,100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-moz-keyframes flash {
    0%,50%,100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-o-keyframes flash {
    0%,50%,100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes flash {
    0%,50%,100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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%,20%,50%,80%,100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%,20%,50%,80%,100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%,20%,50%,80%,100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -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 {
    20%,40%,60%,80%,100% {
        -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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(20px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-20px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-20px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(20px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(2000px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(2000px);
    }

    100% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    80% {
        -webkit: translateX(0) skewX(-15deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        -webkit: translateX(0) skewX(0deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    80% {
        -moz-transform: translateX(0) skewX(-15deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        -moz-transform: translateX(0) skewX(0deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    80% {
        -o-transform: translateX(0) skewX(-15deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        -o-transform: translateX(0) skewX(0deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    80% {
        transform: translateX(0) skewX(-15deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        transform: translateX(0) skewX(0deg);
        opacity: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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: 100;
        filter: alpha(opacity=10000);
        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);
    }

    90% {
        -webkit: skewX(0deg);
    }

    100% {
        -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);
    }

    90% {
        -moz-transform: skewX(0deg);
    }

    100% {
        -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);
    }

    90% {
        -o-transform: skewX(0deg);
    }

    100% {
        -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);
    }

    90% {
        transform: skewX(0deg);
    }

    100% {
        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 0;
    display: block;
    border: none;
    text-shadow: none;
    line-height: 1;
    color: #D56D28;
    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,0.8);
            font-weight: 700;
        }

    .branding:hover {
        text-decoration: none;
        cursor: pointer;
    }

body, html {
    font-family: "Open Sans",Arial,serif;
    background: #fff;
}

a, a:hover, a:focus {
    color: #D56D28;
}

    a:hover img {
        opacity: 80;
        filter: alpha(opacity=8000);
        opacity: .8;
        filter: alpha(opacity=80);
    }

    a:focus {
        outline: none;
    }

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: normal;
        line-height: 1;
        color: rgba(27,27,27,0.8);
    }

h1 {
    font-size: 31.5px;
}

h2 {
    font-size: 27.3px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 17.5px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 11.9px;
}

h1 small {
    font-size: 21.7px;
}

h2 small {
    font-size: 14.700000000000001px;
}

h3 small {
    font-size: 14px;
}

h4 small {
    font-size: 14px;
}

.page-title {
    margin: 0;
}

    .page-title small {
        color: rgba(51,51,51,0.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,0.01);
            border-width: 11px;
            left: 10%;
            margin-left: -11px;
        }

    blockquote small, blockquote footer {
        display: block;
        padding: 12px 0 0 10px;
    }

        blockquote small:before, blockquote footer:before {
            content: '';
        }

        blockquote small img, blockquote footer img {
            padding-right: 1em;
            max-width: 50px;
        }

.fancy {
    font-family: 'Calligraffitti',cursive;
    text-transform: lowercase;
}

.new-tag {
    display: inline;
    color: #d9534f;
    vertical-align: super;
    font-size: 10px;
    font-weight: bold;
}

.title-divider {
    text-align: left;
    margin-bottom: 1em;
    background: #fff url(../img/bg_divider.png) left center repeat-x;
    padding: 0;
}

    .title-divider span {
        background: #fff;
        padding-right: .5em;
    }

    .title-divider small {
        display: block;
        color: rgba(51,51,51,0.6);
    }

.block .title {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 .5em 0;
    line-height: 1;
}

.mdrs .btn-block, .mdrs .btn {
    padding: .6em 1em;
    font-size: 1.2em;
}

.intro p {
    margin-bottom: 0;
}

.btn span {
    display: block;
    font-size: 12px;
}

.spacer {
    font-weight: bold;
    color: #D56D28;
}

    .spacer.dark {
        color: #44857b;
    }

.de-em {
    font-weight: normal;
    color: rgba(51,51,51,0.8);
}

a .de-em {
    font-weight: normal;
    color: rgba(203, 93, 0, 0.9);
}

.em {
    font-weight: bold;
}

.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, .row-80, .row-70, .row-60, .row-50, .row-40, .row-30, .row-20, .row-10 {
    width: 100%;
}

.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,0.2);
    box-shadow: 1px 1px 10px rgba(27,27,27,0.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, .label.badge-lg, .badge.label-lg, .label.label-lg {
    padding: 4px 8px;
    font-size: 14px;
}

.badge.badge-xlg, .label.badge-xlg, .badge.label-xlg, .label.label-xlg {
    padding: 8px 12px;
    font-size: 18px;
}

.primary-colour {
    color: #D56D28;
}

.primary-colour-bg {
    background-color: #D56D28;
}

.more-link:hover {
    border-bottom: 3px solid #D56D28;
    text-decoration: none;
}

.pull-center {
    text-align: center;
}

.space-reset {
    line-height: 1;
    padding: 0;
    margin: 0;
}

.margin-top-small, .margin-top-sm {
    margin-top: .5em;
}

.margin-top-medium, .margin-top-md {
    margin-top: 1em;
}

.margin-top-large, .margin-top-lg {
    margin-top: 2em;
}

    .margin-top-small:before, .margin-top-medium:before, .margin-top-large:before, .margin-top-sm:before, .margin-top-md:before, .margin-top-lg:before, .margin-top-small:after, .margin-top-medium:after, .margin-top-large:after, .margin-top-sm:after, .margin-top-md:after, .margin-top-lg:after {
        content: " ";
        display: table;
    }

    .margin-top-small:after, .margin-top-medium:after, .margin-top-large:after, .margin-top-sm:after, .margin-top-md:after, .margin-top-lg:after {
        clear: both;
    }

.bordered-top-small, .bordered-top-sm {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 1px solid rgba(204,204,204,0.7);
}

.bordered-top-medium, .bordered-top-md {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid rgba(204,204,204,0.7);
}

.bordered-top-large, .bordered-top-lg {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid rgba(204,204,204,0.7);
}

.margin-bottom-small, .margin-bottom-sm {
    margin-bottom: .5em;
}

.margin-bottom-medium, .margin-bottom-md {
    margin-bottom: 1em;
}

.margin-bottom-large, .margin-bottom-lg {
    margin-bottom: 2em;
}

.bordered-bottom-small, .bordered-bottom-sm {
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px solid rgba(204,204,204,0.7);
}

.bordered-bottom-medium, .bordered-bottom-md {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(204,204,204,0.7);
}

.bordered-bottom-large, .bordered-bottom-lg {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(204,204,204,0.7);
}

ul.big-list, ul.list-lg {
    font-size: 1.1em;
    padding: 0;
    margin: 0;
}

    ul.big-list li, ul.list-lg li {
        list-style: none;
        margin: 0;
        padding: .5em;
        margin-bottom: .5em;
        padding-bottom: .5em;
        border-bottom: 1px solid rgba(204,204,204,0.7);
        border-color: rgba(204,204,204,0.6);
    }

        ul.big-list li:hover, ul.list-lg li:hover {
            background: #f7f7f7;
        }

.secondary-nav {
    margin: 0;
    padding: 0;
}

    .secondary-nav li a {
        margin: 0 0 1px 0;
        padding: 8px .5em;
        background: rgba(85,167,154,0.05);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid rgba(85,167,154,0.1);
    }

        .secondary-nav li a i {
            -webkit-transition: all .2s ease-in;
            transition: all .2s ease-in;
            opacity: 60;
            filter: alpha(opacity=6000);
            opacity: .6;
            filter: alpha(opacity=60);
        }

        .secondary-nav li a:hover {
            background: rgba(85,167,154,0.1);
        }

            .secondary-nav li a:hover i {
                opacity: 90;
                filter: alpha(opacity=9000);
                opacity: .9;
                filter: alpha(opacity=90);
            }

    .secondary-nav li.active a {
        background: #D56D28;
    }

    .secondary-nav li ul {
        margin: 0 0 1px 0;
        padding: 8px 1em;
        border: 1px solid rgba(85,167,154,0.3);
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        background: rgba(85,167,154,0.1);
    }

.popover-title {
    font-size: 16px;
    font-weight: bold;
}

.popover-content {
    font-size: 12px;
    font-weight: normal;
}

.accordion-primary .accordion-group {
    margin-bottom: 1px;
    border: 1px solid rgba(85,167,154,0.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: rgba(85,167,154,0.05);
}

    .accordion-primary .accordion-group:hover {
        background: rgba(85,167,154,0.1);
    }

.accordion-primary .accordion-inner {
    border-top: 1px solid rgba(85,167,154,0.2);
}

.background-clip-fix {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.alert-inline {
    display: inline-block;
}

.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 #navigation, .page-boxed #highlighted, .page-boxed #content, .page-boxed #content-below, .page-boxed #footer {
    margin-left: auto;
    margin-right: auto;
}

.page-boxed #navigation, .page-boxed #content {
    background-color: #fff;
}

@media (min-width:768px) {
    .page-boxed #navigation, .page-boxed #highlighted, .page-boxed #content, .page-boxed #content-below, .page-boxed #footer {
        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 #navigation, .page-boxed #highlighted, .page-boxed #content, .page-boxed #content-below, .page-boxed #footer {
        width: 1010px;
    }
}

@media (min-width:1200px) {
    .page-boxed #navigation, .page-boxed #highlighted, .page-boxed #content, .page-boxed #content-below, .page-boxed #footer {
        width: 1210px;
    }
}

.navbar-nav, #main-menu {
    float: none;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

    .navbar-nav > li, #main-menu > li {
        float: none;
        border-left: none;
        border-right: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid #242424;
    }

        .navbar-nav > li.home-link, #main-menu > li.home-link {
            display: none;
        }

        .navbar-nav > li > a, #main-menu > li > a {
            padding: 10px 15px;
            margin: 0;
            font-weight: normal;
            font-size: 12px;
            text-transform: uppercase;
            color: #babab3;
            color: rgba(255,255,255,0.7);
        }

            .navbar-nav > li > a .caret, #main-menu > li > a .caret {
                font-family: Font Awesome 7 Free;
                float: right;
                border: none;
                margin: 0 -20px 0 0;
                font-size: 16px;
                color: #fff;
                width: 30px;
                height: 30px;
            }

                .navbar-nav > li > a .caret:before, #main-menu > li > a .caret:before {
                    content: "\f054";
                }

            .navbar-nav > li > a:hover, #main-menu > li > a:hover, .navbar-nav > li.active > a, #main-menu > li.active > a {
                background: #282828;
                color: #fff;
            }

            .navbar-nav > li > a:focus, #main-menu > li > a:focus {
                background: transparent;
            }

        .navbar-nav > li.open > .dropdown-toggle, #main-menu > li.open > .dropdown-toggle, .navbar-nav > li.open.active > .dropdown-toggle, #main-menu > li.open.active > .dropdown-toggle {
            background: #292929;
            color: #fff;
        }

            .navbar-nav > li.open > .dropdown-toggle .caret:before, #main-menu > li.open > .dropdown-toggle .caret:before, .navbar-nav > li.open.active > .dropdown-toggle .caret:before, #main-menu > li.open.active > .dropdown-toggle .caret:before {
                content: "\f078";
            }

.btn-navbar, .navbar-btn {
    float: left;
    display: block;
    background: #414141;
    height: 34px;
    line-height: 34px;
    margin: 12px 0;
    width: 38px;
    text-align: center;
    cursor: pointer;
    padding: 6px 0;
}

    .btn-navbar .bar, .navbar-btn .bar {
        display: block;
        width: 26px;
        height: 3px;
        background-color: #888;
        border-radius: 1px;
        margin-left: auto;
        margin-right: auto;
    }

        .btn-navbar .bar + .bar, .navbar-btn .bar + .bar {
            margin-top: 4px;
        }

    .btn-navbar.open, .navbar-btn.open, .btn-navbar:hover, .navbar-btn:hover {
        background: #353535;
    }

        .btn-navbar.open .bar, .navbar-btn.open .bar, .btn-navbar:hover .bar, .navbar-btn:hover .bar {
            background-color: #a2a2a2;
        }

.navbar-collapse {
    max-height: none;
    clear: both;
    margin: 10px -8px 0 -8px;
    padding: 0;
}

#jPanelMenu-menu {
    background-color: #1b1b1b;
    background-image: url(../img/bg_noise-2.png);
    background-position: left top;
    background-repeat: repeat;
    padding: 0;
    max-height: none;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
}

    #jPanelMenu-menu.navbar-collapse, #jPanelMenu-menu.navbar-collapse.collapse, #jPanelMenu-menu.navbar-collapse.in {
        padding: 0;
        margin: 0;
        height: 100% !important;
        display: block !important;
    }

    #jPanelMenu-menu .navbar-nav li.home-link, #jPanelMenu-menu #main-menu li.home-link {
        display: block;
    }

        #jPanelMenu-menu .navbar-nav li.home-link a, #jPanelMenu-menu #main-menu li.home-link a, #jPanelMenu-menu .navbar-nav li.home-link a:link, #jPanelMenu-menu #main-menu li.home-link a:link, #jPanelMenu-menu .navbar-nav li.home-link a:focus, #jPanelMenu-menu #main-menu li.home-link a:focus {
            padding: 0;
            margin: 0;
        }

            #jPanelMenu-menu .navbar-nav li.home-link a i, #jPanelMenu-menu #main-menu li.home-link a i, #jPanelMenu-menu .navbar-nav li.home-link a:link i, #jPanelMenu-menu #main-menu li.home-link a:link i, #jPanelMenu-menu .navbar-nav li.home-link a:focus i, #jPanelMenu-menu #main-menu li.home-link a:focus i {
                margin: 0;
                display: block;
                text-align: center;
                color: #D56D28;
                font-size: 20px;
                padding: 16px 20px;
            }

            #jPanelMenu-menu .navbar-nav li.home-link a:hover, #jPanelMenu-menu #main-menu li.home-link a:hover, #jPanelMenu-menu .navbar-nav li.home-link a:link:hover, #jPanelMenu-menu #main-menu li.home-link a:link:hover, #jPanelMenu-menu .navbar-nav li.home-link a:focus:hover, #jPanelMenu-menu #main-menu li.home-link a:focus:hover {
                background: transparent;
            }

                #jPanelMenu-menu .navbar-nav li.home-link a:hover i, #jPanelMenu-menu #main-menu li.home-link a:hover i, #jPanelMenu-menu .navbar-nav li.home-link a:link:hover i, #jPanelMenu-menu #main-menu li.home-link a:link:hover i, #jPanelMenu-menu .navbar-nav li.home-link a:focus:hover i, #jPanelMenu-menu #main-menu li.home-link a:focus:hover i {
                    color: #fff;
                }

.has-navbar-fixed-top .navbar-fixed-top {
    background: #fff;
}

.has-navbar-fixed-top.jpanel-menu-open .navbar-fixed-top {
    position: static;
}

.has-navbar-fixed-top #content {
    padding-top: 200px;
}

.navbar-collapse.in {
    overflow-y: auto;
}

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: none !important;
            height: auto !important;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
            display: block !important;
        }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width:768px) {
    .has-navbar-fixed-top #content {
        padding-top: 160px;
    }
}

@media (min-width:992px) {
    .mobile-toggle-trigger, .btn-navbar, .navbar-btn {
        display: none;
    }

    #jPanelMenu-menu {
        display: none;
    }

    .navbar-collapse, .navbar-collapse.collapse, .navbar-collapse.in {
        display: block !important;
        padding: 0;
        margin: 0;
        clear: none;
        overflow-y: visible;
        overflow-x: visible;
        width: auto;
    }

    .navbar-nav, #main-menu {
        float: left;
    }

        .navbar-nav > li, #main-menu > li {
            float: left;
            border: none;
        }

            .navbar-nav > li.home-link, #main-menu > li.home-link {
                display: block !important;
            }

                .navbar-nav > li.home-link a, #main-menu > li.home-link a, .navbar-nav > li.home-link a:link, #main-menu > li.home-link a:link, .navbar-nav > li.home-link a:focus, #main-menu > li.home-link a:focus {
                    padding: 0;
                    margin: 0;
                }

                    .navbar-nav > li.home-link a i, #main-menu > li.home-link a i, .navbar-nav > li.home-link a:link i, #main-menu > li.home-link a:link i, .navbar-nav > li.home-link a:focus i, #main-menu > li.home-link a:focus i {
                        margin: 0;
                        display: block;
                        text-align: center;
                        color: #D56D28;
                        font-size: 20px;
                        padding: 16px 20px;
                    }

                    .navbar-nav > li.home-link a:hover, #main-menu > li.home-link a:hover, .navbar-nav > li.home-link a:link:hover, #main-menu > li.home-link a:link:hover, .navbar-nav > li.home-link a:focus:hover, #main-menu > li.home-link a:focus:hover {
                        background: transparent;
                    }

                        .navbar-nav > li.home-link a:hover i, #main-menu > li.home-link a:hover i, .navbar-nav > li.home-link a:link:hover i, #main-menu > li.home-link a:link:hover i, .navbar-nav > li.home-link a:focus:hover i, #main-menu > li.home-link a:focus:hover i {
                            color: #fff;
                        }

            .navbar-nav > li:first-child, #main-menu > li:first-child {
                border-left: none;
            }

            .navbar-nav > li:last-child, #main-menu > li:last-child {
                border-right: none;
            }

            .navbar-nav > li > a, #main-menu > li > a {
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                -webkit-box-shadow: none;
                box-shadow: none;
                -webkit-transition: all .3s ease-out;
                transition: all .3s ease-out;
                padding: 10px;
                margin: 0;
                font-size: 13px;
                font-weight: bold;
                text-transform: uppercase;
                color: #ffffff;
                border-top: 3px solid transparent;
            }

                .navbar-nav > li > a:hover, #main-menu > li > a:hover, .navbar-nav > li.active > a, #main-menu > li.active > a {
                    color: #ebebe8;
                    background-color: #353535;
                    border-color: transparent;
                }

                    .navbar-nav > li > a:hover .caret, #main-menu > li > a:hover .caret, .navbar-nav > li.active > a .caret, #main-menu > li.active > a .caret {
                        border-top-color: #fff;
                    }

                .navbar-nav > li > a:focus, #main-menu > li > a:focus {
                    background: transparent;
                }

            .navbar-nav > li.open > .dropdown-toggle, #main-menu > li.open > .dropdown-toggle, .navbar-nav > li.open.active > .dropdown-toggle, #main-menu > li.open.active > .dropdown-toggle, .navbar-nav > li.open > .dropdown-toggle, #main-menu > li.open > .dropdown-toggle, .navbar-nav > li.open.active > .dropdown-toggle, #main-menu > li.open.active > .dropdown-toggle {
                background: #fff;
                color: #1b1b1b;
                border-top-color: #D56D28;
            }
}

.nav .caret {
    border-top-color: #D56D28;
    border-bottom-color: #D56D28;
}

.nav a:hover {
    border-top-color: #44857b;
    border-bottom-color: #44857b;
}

.open > .dropdown-menu {
    display: block !important;
}

.dropdown-menu {
    background: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    border: none;
    color: rgba(255,255,255,0.6);
    position: relative;
    float: none !important;
    left: 0;
}

    .dropdown-menu:before, .dropdown-menu:after {
        display: none;
    }

    .dropdown-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 1em;
    }

    .dropdown-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #4e4e4e;
        background: none;
    }

        .dropdown-menu li span {
            font-size: 11px;
            display: none;
        }

        .dropdown-menu li strong {
            font-weight: normal;
        }

        .dropdown-menu li a, .dropdown-menu li a.menu-item {
            padding: 5px 20px !important;
            margin: 0;
            background: #353535;
            border-bottom: none;
            text-transform: none;
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            display: block;
            float: none;
            line-height: 20px;
        }

            .dropdown-menu li a:before, .dropdown-menu li a.menu-item:before {
               font-family: Font Awesome 7 Free;
                font-size: 12px;
                color: rgba(255,255,255,0.6);
                width: 30px;
                height: 30px;
                content: "\f105";
                padding: 0 10px 0 0;
                font-weight: 900; 
            }

            .dropdown-menu li a:hover, .dropdown-menu li a.menu-item:hover {
                background: #2f2f2f;
                border-bottom-color: rgba(255,255,255,0.16);
                color: #fff;
                text-decoration: none;
            }

            .dropdown-menu li a.img-link, .dropdown-menu li a.menu-item.img-link {
                display: none;
                padding: 0 !important;
            }

            .dropdown-menu li a img, .dropdown-menu li a.menu-item img {
                display: block;
                width: auto;
                height: auto;
                max-width: 100%;
            }

    .dropdown-menu > .open a, .dropdown-menu .open a, .dropdown-menu > .active a, .dropdown-menu .active a, .dropdown-menu > .open a:focus, .dropdown-menu .open a:focus, .dropdown-menu > .active a:focus, .dropdown-menu .active a:focus {
        background: #2f2f2f;
    }

        .dropdown-menu > .open a:hover, .dropdown-menu .open a:hover, .dropdown-menu > .active a:hover, .dropdown-menu .active a:hover, .dropdown-menu > .open a:focus:hover, .dropdown-menu .open a:focus:hover, .dropdown-menu > .active a:focus:hover, .dropdown-menu .active a:focus:hover {
            background: #2a2a2a;
            color: #fff;
        }

    .dropdown-menu > .open > a, .dropdown-menu .open > a, .dropdown-menu > .active > a, .dropdown-menu .active > a, .dropdown-menu > .open > a:focus > a:hover, .dropdown-menu .open > a:focus > a:hover, .dropdown-menu > .active > a:focus > a:hover, .dropdown-menu .active > a:focus > a:hover {
        color: #fff;
        background: #2f2f2f;
    }

    .dropdown-menu > .open li, .dropdown-menu .open li, .dropdown-menu > .active li, .dropdown-menu .active li {
        border-bottom: none;
    }

        .dropdown-menu > .open li a, .dropdown-menu .open li a, .dropdown-menu > .active li a, .dropdown-menu .active li a {
            padding: 8px 30px !important;
        }

    .dropdown-menu > .open > a:before, .dropdown-menu .open > a:before, .dropdown-menu > .open > a:focus > a:hover:before, .dropdown-menu .open > a:focus > a:hover:before {
        color: #fff;
        content: "\f107";
        margin-left: -2px;
    }

    .dropdown-menu .menu-title, .dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
        padding: 6px 20px;
    }

    .dropdown-menu .dropdown-submenu > a:after {
        border-style: solid;
        border-width: 0 0 10px 10px;
        border-color: transparent transparent #4e4e4e transparent;
        display: block;
        bottom: 0;
        right: 0;
        position: absolute;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        line-height: 1;
        content: '';
    }

    .dropdown-menu .dropdown-submenu.open > a:after, .dropdown-menu .dropdown-submenu > a:hover:after {
        border-width: 0 0 14px 14px;
    }

.mega-menu {
    padding: 0;
    min-width: 100%;
    max-width: 100%;
}

.dropdown-menu-default {
    border-bottom-color: #ccc !important;
}

    .dropdown-menu-default a:hover:before {
        color: #ccc !important;
    }

.dropdown-menu-primary {
    border-bottom-color: #D56D28 !important;
}

    .dropdown-menu-primary a:hover:before {
        color: #D56D28 !important;
    }

.dropdown-menu-info {
    border-bottom-color: #5bc0de !important;
}

    .dropdown-menu-info a:hover:before {
        color: #5bc0de !important;
    }

.dropdown-menu-success {
    border-bottom-color: #5cb85c !important;
}

    .dropdown-menu-success a:hover:before {
        color: #5cb85c !important;
    }

.dropdown-menu-warning {
    border-bottom-color: #f0ad4e !important;
}

    .dropdown-menu-warning a:hover:before {
        color: #f0ad4e !important;
    }

.dropdown-menu-danger {
    border-bottom-color: #d9534f !important;
}

    .dropdown-menu-danger a:hover:before {
        color: #d9534f !important;
    }

@media (min-width:992px) {
    .dropdown-menu {
        margin-top: 3px;
        padding: 8px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        left: auto;
        border: none;
        border-bottom: 2px solid #D56D28;
        min-width: 350px;
        color: #464646;
        color: rgba(27,27,27,0.8);
        background: #fff;
        position: absolute;
    }

        .dropdown-menu:before, .dropdown-menu:after {
            display: none;
        }

        .dropdown-menu li {
            border-left: none;
            border-right: none;
            border-bottom: none;
            float: none;
        }

            .dropdown-menu li span {
                display: block;
            }

            .dropdown-menu li strong {
                font-weight: bold;
            }

            .dropdown-menu li a, .dropdown-menu li a.menu-item {
                margin: 0;
                padding: 8px 15px !important;
                font-size: 12px;
                font-weight: normal;
                text-transform: none;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                -webkit-box-shadow: 0;
                box-shadow: 0;
                background-repeat: repeat-x;
    border-bottom: 1px solid #e6e6e6;
    color: #1b1b1b;
    background-image: linear-gradient(to bottom, #fff 0, #f7f7f7 100%);
}

                .dropdown-menu li a:before, .dropdown-menu li a.menu-item:before {
                    font-family: "Font Awesome 7 Free";
                    font-size: 12px;
                    color: rgba(27,27,27,0.6);
                    width: 30px;
                    height: 30px;
                    content: "\f105";
                    padding-right: 10px;
                    font-weight: 900; 
                }

                .dropdown-menu li a.img-link, .dropdown-menu li a.menu-item.img-link {
                    padding: 0;
                    background: #fff;
                    display: block;
                }

                    .dropdown-menu li a.img-link:before, .dropdown-menu li a.menu-item.img-link:before {
                        content: '';
                    }

                    .dropdown-menu li a.img-link:hover, .dropdown-menu li a.menu-item.img-link:hover {
                        background: #fafafa;
                    }

                .dropdown-menu li.active > a, .dropdown-menu li.active > a:hover, .dropdown-menu li.active > a:focus, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a:hover, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a:focus, .dropdown-menu li a:hover, .dropdown-menu li a.menu-item:hover {
                    color: #010101;
                    border-bottom-color: #d9d9d9;
                    background-repeat: repeat-x;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #fff 0, #e6e6e6 100%);
}

                    .dropdown-menu li.active > a:before, .dropdown-menu li.active > a:hover:before, .dropdown-menu li.active > a:focus:before, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a:before, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a:hover:before, .dropdown-menu li.dropdown-submenu .dropdown-menu .active > a:focus:before, .dropdown-menu li a:hover:before, .dropdown-menu li a.menu-item:hover:before {
                        color: #D56D28;
                    }

        .dropdown-menu [class*="col-"] {
            float: left;
            padding: 10px;
        }

        .menu-title, .dropdown-header, .dropdown-menu li.menu-title, .dropdown-menu li.dropdown-header, .dropdown-footer, .dropdown-menu li.dropdown-footer {
            font-weight: bold;
            font-size: 12px;
            padding: 5px 10px;
            margin-top: 10px;
            margin-bottom: 5px;
            border-bottom: 2px solid #e6e6e6 !important;
            display: block;
            float: none;
            color: #1b1b1b;
        }

            .menu-title:first-child, .dropdown-header:first-child, .dropdown-menu li.menu-title:first-child, .dropdown-menu li.dropdown-header:first-child, .dropdown-footer:first-child, .dropdown-menu li.dropdown-footer:first-child {
                margin-top: 0;
            }

        .dropdown-footer, .dropdown-menu li.dropdown-footer {
            border: none;
            border-top: 2px solid #e6e6e6;
            font-weight: 100;
            margin-bottom: 0;
            font-size: 11px;
        }

            .dropdown-footer:first-child, .dropdown-menu li.dropdown-footer:first-child {
                margin-top: 10px;
            }

    .mega-menu .menu-title, .mega-menu .dropdown-header, .mega-menu li.menu-title, .mega-menu li.dropdown-header {
        font-size: 14px;
        padding: 10px;
    }

    .mega-menu .dropdown-footer, .mega-menu li.dropdown-footer {
        font-size: 11px;
    }

    .mega-menu {
        min-width: 550px;
        max-width: 700px;
    }

    .dropdown-menu .dropdown-submenu {
        position: relative;
    }

        .dropdown-menu .dropdown-submenu > .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -5px;
            margin-left: 10px;
            padding: 8px;
        }

            .dropdown-menu .dropdown-submenu > .dropdown-menu.dropdown-menu-right {
                top: 0;
                left: 100%;
            }

            .dropdown-menu .dropdown-submenu > .dropdown-menu.dropdown-menu-left {
                top: 0;
                left: auto;
                right: 100%;
                margin-left: 0;
                margin-right: 10px;
            }

        .dropdown-menu .dropdown-submenu > a:after {
            border-color: transparent transparent #D56D28 transparent;
        }

        .dropdown-menu .dropdown-submenu.open li a, .dropdown-menu .dropdown-submenu.open li a:focus {
            background-repeat: repeat-x;
    padding: 8px 15px !important;
    color: #1b1b1b;
    background-image: linear-gradient(to bottom, #fff 0, #f7f7f7 100%);
}

            .dropdown-menu .dropdown-submenu.open li a:hover, .dropdown-menu .dropdown-submenu.open li a:focus:hover {
                background-repeat: repeat-x;
    color: #010101;
    border-bottom-color: #d9d9d9;
    background-image: linear-gradient(to bottom, #fff 0, #e6e6e6 100%);
}

        .dropdown-menu .dropdown-submenu.open > a, .dropdown-menu .dropdown-submenu.open > a:focus, .dropdown-menu .dropdown-submenu.open > a:hover {
            color: #010101;
            border-bottom-color: #d9d9d9;
            background-repeat: repeat-x;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #fff 0, #e6e6e6 100%);
}

            .dropdown-menu .dropdown-submenu.open > a:before, .dropdown-menu .dropdown-submenu.open > a:focus:before, .dropdown-menu .dropdown-submenu.open > a:hover:before {
                content: "\f105";
                color: rgba(27,27,27,0.6);
                margin-left: 0;
            }

    .nav > .dropdown-right {
        position: relative;
    }

    .nav > .dropdown-full.open > a: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,0.15);
        position: absolute;
        top: -7px;
        left: 12px;
    }

    .nav > .dropdown-full.open > a: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 > .dropdown-full.open > a:before, .nav > .dropdown-full.open > a:after {
        top: auto;
        bottom: -2px;
    }

    .nav > .dropdown-full .dropdown-menu, .nav > .dropdown-full .mega-menu {
        right: 0;
        left: 0;
        max-width: 100%;
    }

        .nav > .dropdown-full .dropdown-menu:before, .nav > .dropdown-full .mega-menu:before, .nav > .dropdown-full .dropdown-menu:after, .nav > .dropdown-full .mega-menu:after {
            display: none;
        }

    .nav > .dropdown-pad .dropdown-menu, .nav > .dropdown-pad .mega-menu {
        padding: 1em;
    }

        .nav > .dropdown-pad .dropdown-menu li:first-child a, .nav > .dropdown-pad .mega-menu li:first-child a {
            border-top: 1px solid #e6e6e6;
        }
}

.timeline-list-reset {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .timeline-list-reset:before, .timeline-list-reset:after {
        content: " ";
        display: table;
    }

    .timeline-list-reset:after {
        clear: both;
    }

.timeline {
    list-style: none;
    list-style-type: none;
    margin: 0;
    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;
}

    .timeline:before, .timeline:after {
        content: " ";
        display: table;
    }

    .timeline:after {
        clear: both;
    }

@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:before, .timeline:after {
    content: " ";
    display: table;
}

.timeline:after {
    clear: both;
}

.timeline-breaker {
    background: #1b1b1b;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto 0 auto;
    text-align: center;
    padding: .6em;
    line-height: 1;
    display: block;
    position: relative;
    width: 100%;
    max-width: 15em;
    clear: both;
}

    .timeline-breaker:before, .timeline-breaker:after {
        content: " ";
        display: table;
    }

    .timeline-breaker:after {
        clear: both;
    }

    .timeline-breaker a {
        color: #eee;
    }

        .timeline-breaker a.active {
            color: #fff;
        }

    .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,0.01);
        border-width: 11px;
        left: 50%;
        margin-left: -11px;
    }

    .timeline-breaker.timeline-breaker-middle, .timeline-breaker.timeline-breaker-bottom {
        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,0.01);
        }

.timeline-item-default {
    float: none;
    left: auto;
    right: auto;
    width: 100%;
    padding: 15px;
    margin: 60px auto 0 auto;
    background: #f6f6f6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #f2f2f2;
    border-bottom: 3px solid #D56D28;
    text-align: left;
}

    .timeline-item-default:before, .timeline-item-default:after {
        content: " ";
        display: table;
    }

    .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: Font Awesome 7 Free;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0D8';
        color: #f6f6f6;
    }

    .timeline-item-default:after {
        font-family: Font Awesome 7 Free;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\f192';
        top: -39px;
        background: #fff;
    }

    .timeline-item-default.tag-featured:after, .timeline-item-default.marker-highlight:after, .timeline-item-default.highlight:after {
        color: #A85605;
    }

    .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 {
    float: none;
    left: auto;
    right: auto;
    width: 100%;
    padding: 15px;
    margin: 60px auto 0 auto;
    background: #f6f6f6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #f2f2f2;
    border-bottom: 3px solid #D56D28;
    text-align: left;
}

    .timeline-item:before, .timeline-item:after {
        content: " ";
        display: table;
    }

    .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: Font Awesome 7 Free;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0D8';
        color: #f6f6f6;
    }

    .timeline-item:after {
        font-family: Font Awesome 7 Free;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\f192';
        top: -39px;
        background: #fff;
    }

    .timeline-item.tag-featured:after, .timeline-item.marker-highlight:after, .timeline-item.highlight:after {
        color: #A85605;
    }

    .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: Font Awesome 7 Free;
    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-middle, .timeline-breaker.timeline-breaker-bottom {
        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: Font Awesome 7 Free;
            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.right:after, .timeline-item.even:before, .timeline-item.right:before {
                left: -20px;
                top: 10%;
            }

            .timeline-item.even:before, .timeline-item.right:before {
                font-family: Font Awesome 7 Free;
                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.timeline-stacked, .timeline-stacked {
        padding-left: 0;
        padding-right: 0;
    }

        .timeline.timeline-stacked .timeline-item, .timeline-stacked .timeline-item, .timeline.timeline-stacked .timeline-item.right, .timeline-stacked .timeline-item.right, .timeline.timeline-stacked .timeline-item.even, .timeline-stacked .timeline-item.even {
            float: none;
            left: auto;
            right: auto;
            width: 100%;
            padding: 15px;
            margin: 60px auto 0 auto;
            background: #f6f6f6;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            border-radius: 2px;
            position: relative;
            border: 1px solid #f2f2f2;
            border-bottom: 3px solid #D56D28;
            text-align: left;
            margin-top: 80px;
        }

            .timeline.timeline-stacked .timeline-item:before, .timeline-stacked .timeline-item:before, .timeline.timeline-stacked .timeline-item.right:before, .timeline-stacked .timeline-item.right:before, .timeline.timeline-stacked .timeline-item.even:before, .timeline-stacked .timeline-item.even:before, .timeline.timeline-stacked .timeline-item:after, .timeline-stacked .timeline-item:after, .timeline.timeline-stacked .timeline-item.right:after, .timeline-stacked .timeline-item.right:after, .timeline.timeline-stacked .timeline-item.even:after, .timeline-stacked .timeline-item.even:after {
                content: " ";
                display: table;
            }

            .timeline.timeline-stacked .timeline-item:after, .timeline-stacked .timeline-item:after, .timeline.timeline-stacked .timeline-item.right:after, .timeline-stacked .timeline-item.right:after, .timeline.timeline-stacked .timeline-item.even:after, .timeline-stacked .timeline-item.even:after {
                clear: both;
            }

            .timeline.timeline-stacked .timeline-item:after, .timeline-stacked .timeline-item:after, .timeline.timeline-stacked .timeline-item.right:after, .timeline-stacked .timeline-item.right:after, .timeline.timeline-stacked .timeline-item.even:after, .timeline-stacked .timeline-item.even:after, .timeline.timeline-stacked .timeline-item:before, .timeline-stacked .timeline-item:before, .timeline.timeline-stacked .timeline-item.right:before, .timeline-stacked .timeline-item.right:before, .timeline.timeline-stacked .timeline-item.even:before, .timeline-stacked .timeline-item.even: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.timeline-stacked .timeline-item:before, .timeline-stacked .timeline-item:before, .timeline.timeline-stacked .timeline-item.right:before, .timeline-stacked .timeline-item.right:before, .timeline.timeline-stacked .timeline-item.even:before, .timeline-stacked .timeline-item.even:before {
                font-family: Font Awesome 7 Free;
                font-style: normal;
                speak: none;
                display: inline-block;
                content: '\F0D8';
                color: #f6f6f6;
            }

            .timeline.timeline-stacked .timeline-item:after, .timeline-stacked .timeline-item:after, .timeline.timeline-stacked .timeline-item.right:after, .timeline-stacked .timeline-item.right:after, .timeline.timeline-stacked .timeline-item.even:after, .timeline-stacked .timeline-item.even:after {
                font-family: Font Awesome 7 Free;
                font-style: normal;
                speak: none;
                display: inline-block;
                content: '\f192';
                top: -39px;
                background: #fff;
            }

            .timeline.timeline-stacked .timeline-item.tag-featured:after, .timeline-stacked .timeline-item.tag-featured:after, .timeline.timeline-stacked .timeline-item.right.tag-featured:after, .timeline-stacked .timeline-item.right.tag-featured:after, .timeline.timeline-stacked .timeline-item.even.tag-featured:after, .timeline-stacked .timeline-item.even.tag-featured:after, .timeline.timeline-stacked .timeline-item.marker-highlight:after, .timeline-stacked .timeline-item.marker-highlight:after, .timeline.timeline-stacked .timeline-item.right.marker-highlight:after, .timeline-stacked .timeline-item.right.marker-highlight:after, .timeline.timeline-stacked .timeline-item.even.marker-highlight:after, .timeline-stacked .timeline-item.even.marker-highlight:after, .timeline.timeline-stacked .timeline-item.highlight:after, .timeline-stacked .timeline-item.highlight:after, .timeline.timeline-stacked .timeline-item.right.highlight:after, .timeline-stacked .timeline-item.right.highlight:after, .timeline.timeline-stacked .timeline-item.even.highlight:after, .timeline-stacked .timeline-item.even.highlight:after {
                color: #A85605;
            }

            .timeline.timeline-stacked .timeline-item.overlap-push-large, .timeline-stacked .timeline-item.overlap-push-large, .timeline.timeline-stacked .timeline-item.right.overlap-push-large, .timeline-stacked .timeline-item.right.overlap-push-large, .timeline.timeline-stacked .timeline-item.even.overlap-push-large, .timeline-stacked .timeline-item.even.overlap-push-large {
                margin-top: 120px;
            }

            .timeline.timeline-stacked .timeline-item.overlap-push-medium, .timeline-stacked .timeline-item.overlap-push-medium, .timeline.timeline-stacked .timeline-item.right.overlap-push-medium, .timeline-stacked .timeline-item.right.overlap-push-medium, .timeline.timeline-stacked .timeline-item.even.overlap-push-medium, .timeline-stacked .timeline-item.even.overlap-push-medium {
                margin-top: 60px;
            }

            .timeline.timeline-stacked .timeline-item.overlap-push-small, .timeline-stacked .timeline-item.overlap-push-small, .timeline.timeline-stacked .timeline-item.right.overlap-push-small, .timeline-stacked .timeline-item.right.overlap-push-small, .timeline.timeline-stacked .timeline-item.even.overlap-push-small, .timeline-stacked .timeline-item.even.overlap-push-small {
                margin-top: 30px;
            }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item:first-child, .timeline-stacked.timeline-stacked-down .timeline-item:first-child {
            margin-top: 40px;
        }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item:last-child, .timeline-stacked.timeline-stacked-down .timeline-item:last-child {
            margin-bottom: 60px;
        }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item:after, .timeline-stacked.timeline-stacked-down .timeline-item:after, .timeline.timeline-stacked.timeline-stacked-down .timeline-item:before, .timeline-stacked.timeline-stacked-down .timeline-item:before {
            bottom: -20px;
            top: auto;
        }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item:before, .timeline-stacked.timeline-stacked-down .timeline-item:before {
            font-family: Font Awesome 7 Free;
            font-style: normal;
            speak: none;
            display: inline-block;
            content: '\F0D7';
        }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item:after, .timeline-stacked.timeline-stacked-down .timeline-item:after {
            bottom: -40px;
            top: auto;
        }

        .timeline.timeline-stacked.timeline-stacked-down .timeline-item.last, .timeline-stacked.timeline-stacked-down .timeline-item.last, .timeline.timeline-stacked.timeline-stacked-down .timeline-item.right.last, .timeline-stacked.timeline-stacked-down .timeline-item.right.last, .timeline.timeline-stacked.timeline-stacked-down .timeline-item.even.last, .timeline-stacked.timeline-stacked-down .timeline-item.even.last {
            margin-bottom: 40px;
        }

        .timeline.timeline-stacked .timeline-breaker.timeline-breaker-middle, .timeline-stacked .timeline-breaker.timeline-breaker-middle, .timeline.timeline-stacked .timeline-breaker.timeline-breaker-bottom, .timeline-stacked .timeline-breaker.timeline-breaker-bottom {
            top: auto;
        }
}

.timeline.timeline-left, .timeline-left {
    background-position: left top;
    margin-left: 20px;
    padding-bottom: 0;
    text-align: left;
}

    .timeline.timeline-left .timeline-breaker, .timeline-left .timeline-breaker {
        margin-left: -20px;
    }

        .timeline.timeline-left .timeline-breaker:after, .timeline-left .timeline-breaker:after {
            left: 20px;
        }

        .timeline.timeline-left .timeline-breaker:before, .timeline-left .timeline-breaker:before {
            left: 20px;
        }

    .timeline.timeline-left .timeline-item, .timeline-left .timeline-item, .timeline.timeline-left .timeline-item.even, .timeline-left .timeline-item.even, .timeline.timeline-left .timeline-item.right, .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.timeline-left .timeline-item:after, .timeline-left .timeline-item:after, .timeline.timeline-left .timeline-item.even:after, .timeline-left .timeline-item.even:after, .timeline.timeline-left .timeline-item.right:after, .timeline-left .timeline-item.right:after, .timeline.timeline-left .timeline-item:before, .timeline-left .timeline-item:before, .timeline.timeline-left .timeline-item.even:before, .timeline-left .timeline-item.even:before, .timeline.timeline-left .timeline-item.right:before, .timeline-left .timeline-item.right:before {
            right: auto;
            left: -20px;
            margin-left: 0;
            top: 20px;
        }

        .timeline.timeline-left .timeline-item:before, .timeline-left .timeline-item:before, .timeline.timeline-left .timeline-item.even:before, .timeline-left .timeline-item.even:before, .timeline.timeline-left .timeline-item.right:before, .timeline-left .timeline-item.right:before {
            font-family: Font Awesome 7 Free;
            font-style: normal;
            speak: none;
            display: inline-block;
            content: '\F0D9';
        }

        .timeline.timeline-left .timeline-item:after, .timeline-left .timeline-item:after, .timeline.timeline-left .timeline-item.even:after, .timeline-left .timeline-item.even:after, .timeline.timeline-left .timeline-item.right:after, .timeline-left .timeline-item.right:after {
            left: -40px;
        }

    .timeline.timeline-left .pagination, .timeline-left .pagination {
        background: transparent;
        padding-left: 1em;
        padding-right: 1em;
    }

    .timeline.timeline-left .timeline-breaker.timeline-breaker-middle, .timeline-left .timeline-breaker.timeline-breaker-middle, .timeline.timeline-left .timeline-breaker.timeline-breaker-bottom, .timeline-left .timeline-breaker.timeline-breaker-bottom {
        top: auto;
        margin-bottom: 0;
    }

.timeline.timeline-right, .timeline-right {
    background-position: right top;
    margin-right: 20px;
    text-align: right;
}

    .timeline.timeline-right .timeline-breaker, .timeline-right .timeline-breaker {
        margin-left: 0;
        margin-right: -20px;
        float: right;
    }

        .timeline.timeline-right .timeline-breaker:after, .timeline-right .timeline-breaker:after {
            right: 12px;
            left: auto;
        }

        .timeline.timeline-right .timeline-breaker:before, .timeline-right .timeline-breaker:before {
            right: 12px;
            left: auto;
        }

    .timeline.timeline-right .timeline-item, .timeline-right .timeline-item, .timeline.timeline-right .timeline-item.even, .timeline-right .timeline-item.even, .timeline.timeline-right .timeline-item.right, .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.timeline-right .timeline-item:after, .timeline-right .timeline-item:after, .timeline.timeline-right .timeline-item.even:after, .timeline-right .timeline-item.even:after, .timeline.timeline-right .timeline-item.right:after, .timeline-right .timeline-item.right:after, .timeline.timeline-right .timeline-item:before, .timeline-right .timeline-item:before, .timeline.timeline-right .timeline-item.even:before, .timeline-right .timeline-item.even:before, .timeline.timeline-right .timeline-item.right:before, .timeline-right .timeline-item.right:before {
            left: auto;
            right: -20px;
            margin-right: 0;
            top: 20px;
        }

        .timeline.timeline-right .timeline-item:before, .timeline-right .timeline-item:before, .timeline.timeline-right .timeline-item.even:before, .timeline-right .timeline-item.even:before, .timeline.timeline-right .timeline-item.right:before, .timeline-right .timeline-item.right:before {
            font-family: Font Awesome 7 Free;
            font-style: normal;
            speak: none;
            display: inline-block;
            content: '\F0DA';
        }

        .timeline.timeline-right .timeline-item:after, .timeline-right .timeline-item:after, .timeline.timeline-right .timeline-item.even:after, .timeline-right .timeline-item.even:after, .timeline.timeline-right .timeline-item.right:after, .timeline-right .timeline-item.right:after {
            right: -40px;
            left: auto;
        }

    .timeline.timeline-right .pagination, .timeline-right .pagination {
        background: transparent;
        padding-left: 1em;
        padding-right: 1em;
    }

    .timeline.timeline-right .timeline-breaker.timeline-breaker-middle, .timeline-right .timeline-breaker.timeline-breaker-middle, .timeline.timeline-right .timeline-breaker.timeline-breaker-bottom, .timeline-right .timeline-breaker.timeline-breaker-bottom {
        top: auto;
        margin-bottom: 0;
    }

@media (min-width:768px) {
    .timeline.timeline-left .timeline-item, .timeline.timeline-right .timeline-item, .timeline.timeline-left .timeline-item.even, .timeline.timeline-right .timeline-item.even, .timeline.timeline-left .timeline-item.right, .timeline.timeline-right .timeline-item.right {
        width: 96%;
    }
}

.contact_form_label{padding: 0 !important;margin-top: 5px;}
.contact_submit_btn{text-align: right;}

#header-hidden-link a.show-hide > i:before {
    content: "\f078";
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-style: normal;
}

#header-hidden-link a.show-hide.open {
    text-decoration: none;
}

    #header-hidden-link a.show-hide.open > i:before {
        content: "\f077";
    }

.colour-switcher a {
    text-indent: -10000px;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #ccc;
    border: 3px solid rgba(255,255,255,0.5);
}

    .colour-switcher a:hover, .colour-switcher a.active {
        border: 3px solid #fff;
    }

.colour-switcher p {
    margin-top: 1em;
}

.colour-switcher .green {
    background: #D56D28;
}

.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,0.2);
}

    .colour-switcher.page a:hover, .colour-switcher.page a.active {
        border: 3px solid rgba(27,27,27,0.6);
    }

#header-hidden-link {
    position: absolute;
    right: 15px;
    top: -10px;
}

    #header-hidden-link a.show-hide, #header-hidden-link a.top-link {
        font-size: 0;
        line-height: 1;
        background: #D56D28;
        padding: 0 10px;
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
        height: 20px;
        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,0.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;
            }

.show-hide-open {
    height: auto !important;
    min-height: 40px;
    max-height: 40000px;
}

.show-hide-close {
    height: 0;
    overflow: hidden;
}

.navbar {
    color: #eee;
    color: rgba(255,255,255,0.7);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 0;
    border-bottom: 3px solid #323232;
    background-image: -webkit-linear-gradient(top, #202020 0, #1b1b1b 100%);
    background-image: linear-gradient(to bottom, #202020 0, #1b1b1b 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff202020', endColorstr='#ff1b1b1b', GradientType=0);
    background-image: url(../img/bg_noise-2.png);
    background-position: left top;
    background-repeat: repeat;
    -webkit-box-shadow: 1px 1px 10px rgba(27,27,27,0.4);
    box-shadow: 1px 1px 10px rgba(27,27,27,0.4);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    filter: none;
    padding: 0 8px;
    margin-bottom: 0;
    background-color: #D56D28;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
	/*added*/
	margin-top:15px;
}

#navigation {
    z-index: 10;
    position: relative;
    color: #eee;
    color: rgba(255,255,255,0.7);
}

    #navigation:before, #navigation:after {
        content: " ";
        display: table;
    }

    #navigation:after {
        clear: both;
    }

    #navigation .header-hidden {
        background: #D56D28;
        -webkit-transition: all .4s ease-out;
        transition: all .4s ease-out;
        height: 0;
        overflow: hidden;
    }

        #navigation .header-hidden.show-hide-open {
            padding: 15px 0;
        }

        #navigation .header-hidden a {
            color: #fff;
        }

        #navigation .header-hidden h1, #navigation .header-hidden h1, #navigation .header-hidden h3, #navigation .header-hidden h4, #navigation .header-hidden h5, #navigation .header-hidden h6 {
            font-weight: 600;
        }

    #navigation .header {
        padding: 10px 0 10px 0;
        background: transparent;
        border-top: 3px solid #D56D28;
        color: #1b1b1b;
        height: auto;
        text-align: center;
    }

        #navigation .header .header-inner {
            position: relative;
        }

        #navigation .header .social-media {
            margin: 16px 0 0 0;
        }

    #navigation .navbar-brand {
        font-weight: 400;
        font-family: "Rambla",Arial,serif;
        padding: 0;
        margin: 0 0 0 0;
        display: block;
        border: none;
        text-shadow: none;
        line-height: 1;
        color: #D56D28;
        max-width: none;
        text-align: center;
        float: none;
        height: auto;
    }

        #navigation .navbar-brand .rdc_logo {
            width:100px;
        }
        #navigation .navbar-brand h1 {
            font-size: 40px;
            font-weight: 400;
            margin: 0;
            padding: 0;
            line-height: 1;
            font-family: "Rambla",Arial,serif;
        }

            #navigation .navbar-brand h1 span {
                color: #464646;
                color: rgba(27,27,27,0.8);
                font-weight: 700;
            }

        #navigation .navbar-brand:hover {
            text-decoration: none;
            cursor: pointer;
        }

    #navigation .slogan {
        color: #888;
        font-size: 14px;
    }

    #navigation .user-menu {
        padding: 0;
    }

        #navigation .user-menu a.btn {
            text-transform: uppercase;
            font-size: 12px;
            padding: 0 0em;
            height: 34px;
            line-height: 34px;
            margin: 12px 0;
        }

    #navigation .js-clingify-placeholder {
        height: auto !important;
    }

    #navigation .js-clingify-locked {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        border: 0;
        border-bottom: 3px solid #323232;
        background-image: -webkit-linear-gradient(top, #202020 0, #1b1b1b 100%);
        background-image: linear-gradient(to bottom, #202020 0, #1b1b1b 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff202020', endColorstr='#ff1b1b1b', GradientType=0);
        background-image: url(../img/bg_noise-2.png);
        background-position: left top;
        background-repeat: repeat;
        background-color: #D56D28;
        -webkit-box-shadow: 1px 1px 10px rgba(27,27,27,0.4);
        box-shadow: 1px 1px 10px rgba(27,27,27,0.4);
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
        filter: none;
    }

        #navigation .js-clingify-locked .navbar {
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
            border: none;
            background: none;
            background-image: none;
            background-color: transparent;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
            -webkit-box-shadow: none;
            box-shadow: none;
        }

.social-media a {
    text-decoration: none;
    color: #eee;
    color: rgba(255,255,255,0.8);
    display: inline-block;
    line-height: 36px;
    width: 36px;
    height: 36px;
    background: #464646;
    background: rgba(27,27,27,0.8);
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    border-radius: 200px;
}

    .social-media a i {
        font-size: 20px;
        color: #fff;
        padding: 0;
        line-height: 36px;
        width: 36px;
        height: 36px;
        text-align: center;
        margin-right: .2em;
        display: inline-block;
    }

    .social-media a:hover {
        text-decoration: none;
        background: #D56D28;
    }

        .social-media a:hover i {
            -webkit-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;
        }

    .social-media a.last {
        padding-bottom: 0;
        border-bottom: 0;
    }

#signup-modal .form-group, #login-modal .form-group {
    margin-bottom: 10px;
}

@media (min-width:768px) {
    #navigation .header {
        height: 106px;
    }

    #navigation .navbar-brand, #navigation .slogan {
       /* float: left;
		updated*/
        width: 90%;
    }

    #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;
    }

    #navigation .social-media {
        float: right;
    }
}

@media screen and (min-width:768px) {
    #signup-modal .modal-dialog, #login-modal .modal-dialog {
        max-width: 350px;
    }

    #signup-modal .modal-dialog {
        max-width: 450px;
    }
}

#highlighted {
    background-repeat: repeat-x;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    color: #1b1b1b;
    background-image: linear-gradient(to bottom, #fff 0, #e6e6e6 100%);
    border-top-style: none;
    border-top-color: inherit;
    border-top-width: medium;
}

    #highlighted:before, #highlighted:after {
        content: " ";
        display: table;
    }

    #highlighted:after {
        clear: both;
    }

    #highlighted.no-bg {
        background: transparent;
        background-color: transparent;
    }

    #highlighted .inner {
        background: url(../img/bg_diamond.png) left bottom repeat-x;
    }

    #highlighted ul.nav-pills {
        margin: 0;
    }

#content {
    padding: 30px;
}

html.page-translucent, body.page-translucent {
    background: transparent;
    background-color: rgba(255,255,255,0.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 0;
    }

.sidebar {
    margin: 2em 0 1em 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,0.5);
        color: #999;
        font-weight: bold;
        font-size: 11px;
    }

    .section-menu ul.nav-list li a {
        color: #494949;
        color: rgba(27,27,27,0.7);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        font-weight: bold;
        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: #D56D28;
            }

        .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);
            transform: rotate(90deg);
        }

        .section-menu ul.nav-list li a small {
            display: block;
            font-weight: normal;
            color: rgba(27,27,27,0.5);
        }

    .section-menu ul.nav-list li.active > a, .section-menu ul.nav-list li.active > a:hover {
        border-left: 4px solid #D56D28;
        margin: 0 -1px 0 0;
        background: #fff;
        color: #D56D28;
    }

        .section-menu ul.nav-list li.active > a i, .section-menu ul.nav-list li.active > a:hover i {
            color: #D56D28;
        }

@media (min-width:992px) {
    .sidebar {
        margin: 0;
    }

        .sidebar.sidebar-right .inner, .sidebar.sidebar-right .divider {
            border-left: 1px solid #e6e6e6;
            padding-left: 20px;
        }

        .sidebar.sidebar-left .inner, .sidebar.sidebar-left .divider {
            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);
            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 {
    background: #333;
    min-height: 200px;
    padding: 30px 0;
    color: #a2a2a2;
    color: rgba(255,255,255,0.6);
    border-top: 2px solid #D56D28;
}

    #footer h3 {
        font-size: 1em;
        color: #ccc;
        color: rgba(255,255,255,0.8);
        line-height: 1;
    }

    #footer a {
        color: #ccc;
        color: rgba(255,255,255,0.8);
        font-size: 15px;
        text-decoration: none;
    }

    #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: #D56D28;
        }

    #footer .subfooter {
        border-top: 1px dotted #3e3e3e;
        border-top: 1px dotted rgba(255,255,255,0.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: 2px;
}

    .btn span.caret {
        display: inline-block;
    }

.btn-primary {
    color: #fff;
    background-color: #D56D28;
    border-color: #E0884D;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #EF7B2D;
        border-color: #B55B20;
    }

    .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #D56D28;
        border-color: #E0884D;
    }

    .btn-primary .badge {
        color: #D56D28;
        background-color: #fff;
    }

.btn-block {
    display: block;
}

.modal {
    z-index: 1040000;
}

.modal-dialog {
    z-index: 1040010;
}

.modal-content {
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,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: 50;
        filter: alpha(opacity=5000);
        opacity: .5;
        filter: alpha(opacity=50);
    }

.modal-header {
    padding: 15px;
    min-height: 16.428571429px;
}

.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,0.5);
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
}

.tabbable:before, .tabbable:after {
    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.open a, ul.nav-tabs li a:hover, ul.nav-tabs li.open a:hover, ul.nav-tabs li a:focus, ul.nav-tabs li.open a:focus, ul.nav-tabs li a:active, ul.nav-tabs li.open a:active {
            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:last-child, ul.nav-tabs li.open:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        ul.nav-tabs li.active a, ul.nav-tabs li.open.active a, ul.nav-tabs li.active a:hover, ul.nav-tabs li.open.active a:hover {
            color: #D56D28;
            border: 1px solid #e6e6e6;
            border-top: 4px solid #D56D28;
            border-radius: 0 !important;
        }

        ul.nav-tabs li.open a, ul.nav-tabs li.open a:hover, ul.nav-tabs li.open a:focus, ul.nav-tabs li.open a:active {
            background: #f7f7f7;
        }

        ul.nav-tabs li.open.active a, ul.nav-tabs li.open.active a:hover, ul.nav-tabs li.open.active a:focus, ul.nav-tabs li.open.active a:active {
            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: normal;
            }

            .vertical-tabs ul.nav-stacked li a:hover i {
                color: #D56D28;
            }

        .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 #D56D28;
        }

            .vertical-tabs ul.nav-stacked li.active a i, .vertical-tabs ul.nav-stacked li.active a:hover i {
                color: #D56D28;
            }

.vertical-tabs .tab-content {
    margin-left: -15px;
    margin-right: -15px;
}

.bold-tabs ul li a {
    font-weight: bold;
    font-size: 18px;
    color: rgba(27,27,27,0.8);
}

    .bold-tabs ul li a i {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .bold-tabs ul li a small {
        display: block;
        font-weight: normal;
    }

    .bold-tabs ul li a:hover i {
        color: #D56D28;
    }

@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.open a, ul.nav-tabs li a:focus, ul.nav-tabs li.open a:focus, ul.nav-tabs li a:hover, ul.nav-tabs li.open a:hover {
                border: none;
                border-top: 4px solid transparent;
            }

                ul.nav-tabs li a:last-child, ul.nav-tabs li.open a:last-child, ul.nav-tabs li a:focus:last-child, ul.nav-tabs li.open a:focus:last-child, ul.nav-tabs li a:hover:last-child, ul.nav-tabs li.open a:hover: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.open.active a, ul.nav-tabs li.active a:hover, ul.nav-tabs li.open.active a:hover {
                    border-top: 4px solid #D56D28;
                    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.open a, .vertical-tabs ul.nav-tabs li a:focus, .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.open a i, .vertical-tabs ul.nav-tabs li a:focus i, .vertical-tabs ul.nav-tabs li.open a:focus i {
                    -webkit-transform: rotate(0);
                    -ms-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.open.active a, .vertical-tabs ul.nav-tabs li.active a:hover, .vertical-tabs ul.nav-tabs li.open.active a:hover {
                    border-left: 4px solid #D56D28;
                    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 > li > a, .pagination > li > span {
    color: #D56D28;
}

    .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
        color: #44857b;
    }

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background: #D56D28;
    border-color: #D56D28;
}

.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,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,0.8);
                padding: 5px 8px !important;
            }

                .nav-tabs > li.dropdown .dropdown-menu li a:before {
                    font-family: Font Awesome 7 Free;
                    font-size: 10px;
                    color: rgba(27,27,27,0.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.open a, .nav-tabs > li.dropdown .dropdown-menu li.active a, .nav-tabs > li.dropdown .dropdown-menu li a:hover {
                    background: #f7f7f7;
                }

        .nav-tabs > li.dropdown .dropdown-menu .open > a, .nav-tabs > li.dropdown .dropdown-menu .open > a:hover, .nav-tabs > li.dropdown .dropdown-menu .open > a:focus {
            border-color: #e6e6e6;
        }

    .nav-tabs > li.dropdown.active .dropdown-menu li a {
        border: none !important;
    }

.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-footer + .panel-collapse .panel-body {
        border-bottom-color: #ddd;
    }

    .panel-default a {
        color: #333;
    }

        .panel-default a:hover {
            color: #666;
        }

.panel-primary {
    border-color: #D56D28;
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #87c2b8;
        border-color: #D56D28;
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #D56D28;
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #D56D28;
    }

    .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-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-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-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-footer + .panel-collapse .panel-body {
        border-bottom-color: #ebccd1;
    }

    .panel-danger a {
        color: #a94442;
    }

        .panel-danger a:hover {
            color: #843534;
        }

.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 {
        font-weight: 600;
        font-size: 14px;
    }

        .panel-group .panel-heading .panel-title a {
            display: block;
            padding: 15px;
        }

            .panel-group .panel-heading .panel-title a:after {
                font-family: Font Awesome 7 Free;
                font-style: normal;
                speak: none;
                display: inline-block;
                content: '\f107';
                float: right;
                font-size: 22px;
                line-height: 18px;
            }

            .panel-group .panel-heading .panel-title a.collapsed:after {
                font-family: Font Awesome 7 Free;
                font-style: normal;
                speak: none;
                display: inline-block;
                content: '\f105';
            }

            .panel-group .panel-heading .panel-title a:hover {
                text-decoration: none;
            }

.panel-group .panel-body {
    border: none !important;
    background: #fff;
}

.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;
}

.slider-appstrap-theme .tparrows, .flex-direction-nav a {
    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: none;
    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;
    transition: all .2s ease-out;
}

    .slider-appstrap-theme .tparrows:hover, .flex-direction-nav a:hover {
        opacity: 1;
        filter: alpha(opacity=100);
        opacity: .01;
        filter: alpha(opacity=1);
    }

    .slider-appstrap-theme .tparrows:before, .flex-direction-nav a:before {
        content: '\f105';
        font-family: 'Font Awesome 7 Free';
        font-size: 50px;
        font-weight: bold;
        color: #D56D28;
    }

    .slider-appstrap-theme .tparrows.tp-rightarrow, .flex-direction-nav a.tp-rightarrow, .slider-appstrap-theme .tparrows.flex-next, .flex-direction-nav a.flex-next {
        right: 0;
        text-align: center;
    }

        .slider-appstrap-theme .tparrows.tp-rightarrow:before, .flex-direction-nav a.tp-rightarrow:before, .slider-appstrap-theme .tparrows.flex-next:before, .flex-direction-nav a.flex-next:before {
            content: '\f105';
        }

    .slider-appstrap-theme .tparrows.tp-leftarrow, .flex-direction-nav a.tp-leftarrow, .slider-appstrap-theme .tparrows.flex-prev, .flex-direction-nav a.flex-prev {
        left: 0;
        right: auto;
    }

        .slider-appstrap-theme .tparrows.tp-leftarrow:before, .flex-direction-nav a.tp-leftarrow:before, .slider-appstrap-theme .tparrows.flex-prev:before, .flex-direction-nav a.flex-prev:before {
            content: '\f104';
        }

    .slider-appstrap-theme .tparrows:hover, .flex-direction-nav a:hover {
        text-decoration: none;
    }

.slider-appstrap-theme .slider-wrapper:hover .tparrows, .slider-wrapper:hover .flex-direction-nav a {
    opacity: 70;
    filter: alpha(opacity=7000);
    opacity: .7;
    filter: alpha(opacity=70);
}

    .slider-appstrap-theme .slider-wrapper:hover .tparrows:hover, .slider-wrapper:hover .flex-direction-nav a:hover {
        opacity: 100;
        filter: alpha(opacity=10000);
        opacity: 1;
        filter: alpha(opacity=100);
    }

.slider-appstrap-theme .tp-bullets, .slider-appstrap-theme .tp-bullets.round, .slider-appstrap-theme .tp-bullets.simplebullets.round, .flex-control-nav {
    position: absolute;
    bottom: 10px !important;
    right: 10px !important;
    left: auto !important;
    text-align: center;
    width: auto;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
}

    .slider-appstrap-theme .tp-bullets li a, .slider-appstrap-theme .tp-bullets.round li a, .slider-appstrap-theme .tp-bullets.simplebullets.round li a, .flex-control-nav li a, .slider-appstrap-theme .tp-bullets .bullet, .slider-appstrap-theme .tp-bullets.round .bullet, .slider-appstrap-theme .tp-bullets.simplebullets.round .bullet, .flex-control-nav .bullet {
        margin: 0 3px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        height: 15px;
        width: 15px;
        background: #bbb;
    }

        .slider-appstrap-theme .tp-bullets li a:hover, .slider-appstrap-theme .tp-bullets.round li a:hover, .slider-appstrap-theme .tp-bullets.simplebullets.round li a:hover, .flex-control-nav li a:hover, .slider-appstrap-theme .tp-bullets .bullet:hover, .slider-appstrap-theme .tp-bullets.round .bullet:hover, .slider-appstrap-theme .tp-bullets.simplebullets.round .bullet:hover, .flex-control-nav .bullet:hover, .slider-appstrap-theme .tp-bullets li a.flex-active, .slider-appstrap-theme .tp-bullets.round li a.flex-active, .slider-appstrap-theme .tp-bullets.simplebullets.round li a.flex-active, .flex-control-nav li a.flex-active, .slider-appstrap-theme .tp-bullets .bullet.flex-active, .slider-appstrap-theme .tp-bullets.round .bullet.flex-active, .slider-appstrap-theme .tp-bullets.simplebullets.round .bullet.flex-active, .flex-control-nav .bullet.flex-active, .slider-appstrap-theme .tp-bullets li a.selected, .slider-appstrap-theme .tp-bullets.round li a.selected, .slider-appstrap-theme .tp-bullets.simplebullets.round li a.selected, .flex-control-nav li a.selected, .slider-appstrap-theme .tp-bullets .bullet.selected, .slider-appstrap-theme .tp-bullets.round .bullet.selected, .slider-appstrap-theme .tp-bullets.simplebullets.round .bullet.selected, .flex-control-nav .bullet.selected {
            background: #D56D28;
        }

.slider-boxed #highlighted, .slider-full-width #highlighted, .slider-full-width-behind #highlighted {
    background: transparent;
    background-color: transparent;
}

.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 .slider-wrapper, .slider-boxed .flexslider-wrapper {
    border: 1px solid rgba(27,27,27,0.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,0.2);
    box-shadow: 1px 1px 10px rgba(27,27,27,0.2);
}

.slider-boxed .slide-content {
    padding-top: 20px;
}

.slider-full-width .slide-content {
    padding: 2em 0 0 0;
}

@media (min-width:992px) {
    .slider-full-width-behind #navigation {
        background: transparent !important;
    }

    .slider-full-width-behind #highlighted {
        top: -170px;
        position: relative;
        margin-bottom: -170px;
    }

    .slider-full-width-behind .slide-content {
        padding-top: 180px;
    }
}

.flexslider {
    background: transparent;
    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 .slides > .slide, .flexslider .items > .item {
        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,0.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: 1% 10px;
    }
}

.tp-banner {
    width: 100%;
    position: relative;
}

.slider-appstrap-theme .tp-caption a {
    color: #D56D28;
}

    .slider-appstrap-theme .tp-caption a:hover {
        color: #44857b;
    }

.slider-appstrap-theme .tp-bannertimer {
    background: #D56D28;
    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: transparent !important;
    }

    .slider-revolution-full-width-behind #highlighted {
        top: -170px;
        position: relative;
        margin-bottom: -170px;
    }

    .slider-revolution-full-width-behind .slide-content .tp-caption {
        margin-top: 170px !important;
    }
}

.quicksand-target {
    min-height: 300px;
    height: auto;
    width: auto !important;
    -webkit-transition: height .4s ease-out;
    transition: height .4s ease-out;
}

.bootstrap-switch {
    min-width: none;
}

    .bootstrap-switch > div > span, .bootstrap-switch > div > label {
        height: auto;
        line-height: 1;
        padding: 8px;
    }

        .bootstrap-switch > div > span.bootstrap-switch-primary {
            background: #D56D28;
        }

    .bootstrap-switch.bootstrap-switch-focused {
        border-color: #D56D28;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
    }

.has-backstretch .backstretch-overlay {
    background: transparent;
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -999998;
}

.features .title {
    margin-top: 10px;
}

.features .feature {
    margin-bottom: 2em;
}

    .features .feature:before, .features .feature:after {
        content: " ";
        display: table;
    }

    .features .feature:after {
        clear: both;
    }

    .features .feature img {
        background-repeat: repeat-x;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-image: linear-gradient(to bottom, #fafafa 0, #ebebeb 100%);
}

        .features .feature img:hover {
            background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #f5f5f5 0, #e0e0e0 100%);
}

@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 0;
        color: rgba(27,27,27,0.8);
        font-size: 22px;
        text-shadow: 1px 1px 1px rgba(231,231,231,0.8);
        text-align: center;
        font-weight: normal;
        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: #D56D28;
        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: bold;
        }

    .pricing-stack .well ul.points li {
        border-bottom: 1px dotted rgba(180,180,180,0.8);
        padding: .2em;
    }

    .pricing-stack .well .btn {
        display: block;
        width: auto;
        margin: 20px auto 0 auto;
    }

    .pricing-stack .well.active {
        border-color: #D56D28;
        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-position: 0% 0%;
    background-repeat: repeat-x;
    border-color: #D56D28;
    color: #fff;
    background-image: linear-gradient(to bottom, #D56D28 0, #A85605 100%);
    background-color: #D56D28;
    background-attachment: scroll;
}

        .pricing-stack .well.active .btn {
            margin-top: 40px;
        }

.pricing-stack-compressed {
    text-align: center;
}

    .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: bold;
    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:nth-child(odd), .pricing-table .pricing-table-features-list li.row-odd {
            background: #f3f3f3;
        }

        .pricing-table .pricing-table-features-list li:last-child, .pricing-table .pricing-table-features-list li.last {
            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;
        margin-bottom: 1em;
        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-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #fff 0, #ebebeb 100%);
}

        .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: bold;
        }

        .customers li.customer a .description {
            color: rgba(27,27,27,0.8);
        }

        .customers li.customer a:hover {
            text-decoration: none;
        }

            .customers li.customer a:hover .inner-wrapper {
                border-color: #a6a6a6;
            }

@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: #D56D28;
        background-image: -webkit-radial-gradient(circle, #D56D28, #44857b);
        background-image: radial-gradient(circle, #D56D28, #44857b);
        background-repeat: no-repeat;
        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: #D56D28;
            border-width: 5px;
            left: 50%;
            margin-left: -5px;
        }

        .stats .stat .well:before {
            border-top-color: rgba(0,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,0.8);
        margin: 10px 0 0 0;
        text-transform: uppercase;
    }

.team .media-heading {
    margin-top: 0;
    color: #000;
}

.team p {
    color: rgba(27,27,27,0.8);
}

    .team .role, .team p.role {
        color: rgba(27,27,27,0.8);
        font-size: 16px;
    }

.team .media-object {
    max-width: 75px;
}

@media (min-width:768px) {
    .team .media-object {
        max-width: 100px;
    }
}

.date-md {
    padding-right: 0;
    text-align: center;
    display: none;
}

.date-wrapper {
    background-repeat: repeat-x;
    border: 1px solid #c2c2c2;
    color: #1b1b1b;
    text-align: center;
    margin: 0 0 1em 0;
    padding: 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    min-width: 50px;
    background-image: linear-gradient(to bottom, #fff 0, #ebebeb 100%);
}

    .date-wrapper span {
        font-size: 16px;
        display: block;
    }

        .date-wrapper span.date-m {
            padding: 2px 4px;
            color: #fff;
            background: #44857b;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            border-radius: 2px;
            font-size: 12px;
            text-transform: uppercase;
        }

        .date-wrapper span.date-d {
            font-size: 22px;
            line-height: 1;
            padding: 5px 0 3px 0;
            color: #1b1b1b;
        }

.tags {
    font-size: 12px;
    text-transform: uppercase;
}

    .tags .tag {
        color: #D56D28;
    }

    .tags .type {
        color: #1b1b1b;
    }

.tag-cloud span {
    -webkit-border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    background: #e6e6e6;
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 0;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-roll .title, .blog-post .title {
    margin: 0 0 5px 0;
    line-height: 1;
}

.blog-roll .meta, .blog-post .meta {
    font-size: 12px;
    margin-bottom: 5px;
}

.blog-roll .media, .blog-post .media {
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.blog-roll .media-object, .blog-post .media-object {
    max-width: 100%;
    margin: .5em 0;
}

.blog-roll .pagination, .blog-post .pagination {
    display: block;
}

.blog-post .media-body .lead {
    margin: 1em 0;
    padding: 1em .5em;
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
    background: #f0f0f0;
}

.blog-post .comments .media-object {
    max-width: 40px;
    margin-top: 0;
}

.blog-post .comments .media-body {
    margin-top: 0;
}

    .blog-post .comments .media-body .meta {
        margin: 0 0 5px 0;
        display: block;
    }

.blog-post .comments .comment-form {
    margin-top: 2em;
}

@media (min-width:992px) {
    .date-md {
        display: block;
    }

    .blog-roll.blog-list, .blog-post.blog-list {
        padding-left: 15px;
        padding-right: 15px;
    }

        .blog-roll.blog-list .media-object, .blog-post.blog-list .media-object {
            float: right;
            max-width: 200px;
            margin: 0 0 0 1em;
        }

            .blog-roll.blog-list .media-object.media-object-full, .blog-post.blog-list .media-object.media-object-full {
                max-width: 100%;
                margin: .5em 0;
                float: none;
            }

    .blog-roll .comments .media-object, .blog-post .comments .media-object {
        max-width: 80px;
    }

    .blog-roll .meta, .blog-post .meta {
        display: none;
    }
}

.page-elements h3.title-divider {
    margin-top: 2em;
}

.error-code {
    margin: 0;
}

.error-message {
    margin: 0 0 1em 0;
}

.error-details {
    margin: 0 0 2em 0;
}

