@charset "UTF-8";
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%, 20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    10%, 20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
    }
    0%, 40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95)
    }
    80%, 100% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1)
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
    }
    0%, 40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95)
    }
    80%, 100% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1)
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0);
        transform: translateX(0%) skewX(0);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0);
        -ms-transform: translateX(0%) skewX(0);
        transform: translateX(0%) skewX(0);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0);
        transform: translateX(0%) skewX(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0);
        -ms-transform: translateX(0%) skewX(0);
        transform: translateX(0%) skewX(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: center center;
        transform-origin: center center
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: center center;
        transform-origin: center center
    }
    100% {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center
    }
    100% {
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom
    }
    100% {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    0%, 100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom
    }
    100% {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    0%, 20%, 60% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg)
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg)
    }
    40%, 80% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
    0%, 20%, 60% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg)
    }
    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg)
    }
    40%, 80% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}



/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.5.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul > li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before, .fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before, .fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}



@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello/fontello.eot?4089732');
    src: url('../fonts/fontello/fontello.eot?4089732#iefix') format('embedded-opentype'),
    url('../fonts/fontello/fontello.woff?4089732') format('woff'),
    url('../fonts/fontello/fontello.ttf?4089732') format('truetype'),
    url('../fonts/fontello/fontello.svg?4089732#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?4089732#fontello') format('svg');
  }
}
*/

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-search:before {
    content: '\e800';
}

/* '?' */
.icon-mail:before {
    content: '\e801';
}

/* '?' */
.icon-heart:before {
    content: '\e802';
}

/* '?' */
.icon-heart-empty:before {
    content: '\e803';
}

/* '?' */
.icon-star-empty:before {
    content: '\e804';
}

/* '?' */
.icon-star:before {
    content: '\e805';
}

/* '?' */
.icon-user:before {
    content: '\e806';
}

/* '?' */
.icon-users:before {
    content: '\e807';
}

/* '?' */
.icon-user-add:before {
    content: '\e808';
}

/* '?' */
.icon-picture:before {
    content: '\e809';
}

/* '?' */
.icon-camera:before {
    content: '\e80a';
}

/* '?' */
.icon-layout:before {
    content: '\e80b';
}

/* '?' */
.icon-menu:before {
    content: '\e80c';
}

/* '?' */
.icon-check:before {
    content: '\e80d';
}

/* '?' */
.icon-cancel:before {
    content: '\e80e';
}

/* '?' */
.icon-tag:before {
    content: '\e80f';
}

/* '?' */
.icon-eye:before {
    content: '\e810';
}

/* '?' */
.icon-lock-open:before {
    content: '\e811';
}

/* '?' */
.icon-lock:before {
    content: '\e812';
}

/* '?' */
.icon-attach:before {
    content: '\e813';
}

/* '?' */
.icon-link:before {
    content: '\e814';
}

/* '?' */
.icon-home:before {
    content: '\e815';
}

/* '?' */
.icon-info-circled:before {
    content: '\e816';
}

/* '?' */
.icon-help-circled:before {
    content: '\e817';
}

/* '?' */
.icon-help:before {
    content: '\e818';
}

/* '?' */
.icon-info:before {
    content: '\e819';
}

/* '?' */
.icon-bookmark:before {
    content: '\e81a';
}

/* '?' */
.icon-bookmarks:before {
    content: '\e81b';
}

/* '?' */
.icon-flag:before {
    content: '\e81c';
}

/* '?' */
.icon-thumbs-up:before {
    content: '\e81d';
}

/* '?' */
.icon-thumbs-down:before {
    content: '\e81e';
}

/* '?' */
.icon-quote:before {
    content: '\e81f';
}

/* '?' */
.icon-export:before {
    content: '\e820';
}

/* '?' */
.icon-pencil:before {
    content: '\e821';
}

/* '?' */
.icon-feather:before {
    content: '\e822';
}

/* '?' */
.icon-keyboard:before {
    content: '\e823';
}

/* '?' */
.icon-retweet:before {
    content: '\e824';
}

/* '?' */
.icon-comment:before {
    content: '\e825';
}

/* '?' */
.icon-book:before {
    content: '\e826';
}

/* '?' */
.icon-book-open:before {
    content: '\e827';
}

/* '?' */
.icon-newspaper:before {
    content: '\e828';
}

/* '?' */
.icon-doc-text-inv:before {
    content: '\e829';
}

/* '?' */
.icon-doc-text:before {
    content: '\e82a';
}

/* '?' */
.icon-doc-landscape:before {
    content: '\e82b';
}

/* '?' */
.icon-docs:before {
    content: '\e82c';
}

/* '?' */
.icon-doc:before {
    content: '\e82d';
}

/* '?' */
.icon-trash:before {
    content: '\e82e';
}

/* '?' */
.icon-cup:before {
    content: '\e82f';
}

/* '?' */
.icon-compass:before {
    content: '\e830';
}

/* '?' */
.icon-direction:before {
    content: '\e831';
}

/* '?' */
.icon-map:before {
    content: '\e832';
}

/* '?' */
.icon-location:before {
    content: '\e833';
}

/* '?' */
.icon-address:before {
    content: '\e834';
}

/* '?' */
.icon-vcard:before {
    content: '\e835';
}

/* '?' */
.icon-alert:before {
    content: '\e836';
}

/* '?' */
.icon-attention:before {
    content: '\e837';
}

/* '?' */
.icon-bell:before {
    content: '\e838';
}

/* '?' */
.icon-chat:before {
    content: '\e839';
}

/* '?' */
.icon-down-open-big:before {
    content: '\e83a';
}

/* '?' */
.icon-left-open-big:before {
    content: '\e83b';
}

/* '?' */
.icon-right-open-big:before {
    content: '\e83c';
}

/* '?' */
.icon-up-open-big:before {
    content: '\e83d';
}

/* '?' */
.icon-basket:before {
    content: '\e83e';
}

/* '?' */
.icon-bag:before {
    content: '\e83f';
}

/* '?' */
.icon-calendar:before {
    content: '\e840';
}

/* '?' */
.icon-login:before {
    content: '\e841';
}

/* '?' */
.icon-logout:before {
    content: '\e842';
}

/* '?' */
.icon-sound:before {
    content: '\e843';
}

/* '?' */
.icon-clock:before {
    content: '\e844';
}

/* '?' */
.icon-phone:before {
    content: '\e845';
}

/* '?' */
.icon-lamp:before {
    content: '\e846';
}

/* '?' */
.icon-ccw:before {
    content: '\e847';
}

/* '?' */
.icon-cw:before {
    content: '\e848';
}

/* '?' */
.icon-arrows-ccw:before {
    content: '\e849';
}

/* '?' */
.icon-level-down:before {
    content: '\e84a';
}

/* '?' */
.icon-level-up:before {
    content: '\e84b';
}

/* '?' */
.icon-shuffle:before {
    content: '\e84c';
}

/* '?' */
.icon-globe:before {
    content: '\e84d';
}

/* '?' */
.icon-network:before {
    content: '\e84e';
}

/* '?' */
.icon-trophy:before {
    content: '\e84f';
}

/* '?' */
.icon-air:before {
    content: '\e850';
}

/* '?' */
.icon-water:before {
    content: '\e851';
}

/* '?' */
.icon-droplet:before {
    content: '\e852';
}

/* '?' */
.icon-leaf:before {
    content: '\e853';
}

/* '?' */
.icon-paper-plane:before {
    content: '\e854';
}

/* '?' */
.icon-flight:before {
    content: '\e855';
}

/* '?' */
.icon-flash:before {
    content: '\e856';
}

/* '?' */
.icon-moon:before {
    content: '\e857';
}

/* '?' */
.icon-graduation-cap:before {
    content: '\e858';
}

/* '?' */
.icon-lifebuoy:before {
    content: '\e859';
}

/* '?' */
.icon-mouse:before {
    content: '\e85a';
}

/* '?' */
.icon-briefcase:before {
    content: '\e85b';
}

/* '?' */
.icon-suitcase:before {
    content: '\e85c';
}

/* '?' */
.icon-th-list:before {
    content: '\e85d';
}

/* '?' */
.icon-th:before {
    content: '\e85e';
}

/* '?' */
.icon-th-large:before {
    content: '\e85f';
}

/* '?' */
.icon-search-1:before {
    content: '\e860';
}

/* '?' */
.icon-signal:before {
    content: '\e861';
}

/* '?' */
.icon-arrows-cw:before {
    content: '\e862';
}

/* '?' */
.icon-lock-1:before {
    content: '\e863';
}

/* '?' */
.icon-attach-1:before {
    content: '\e864';
}

/* '?' */
.icon-music:before {
    content: '\e865';
}

/* '?' */
.icon-search-2:before {
    content: '\e866';
}

/* '?' */
.icon-mail-1:before {
    content: '\e867';
}

/* '?' */
.icon-heart-1:before {
    content: '\e868';
}

/* '?' */
.icon-star-1:before {
    content: '\e869';
}

/* '?' */
.icon-user-1:before {
    content: '\e86a';
}

/* '?' */
.icon-videocam:before {
    content: '\e86b';
}

/* '?' */
.icon-camera-1:before {
    content: '\e86c';
}

/* '?' */
.icon-photo:before {
    content: '\e86d';
}

/* '?' */
.icon-attach-2:before {
    content: '\e86e';
}

/* '?' */
.icon-eye-1:before {
    content: '\e86f';
}

/* '?' */
.icon-thumbs-up-1:before {
    content: '\e870';
}

/* '?' */
.icon-pencil-1:before {
    content: '\e871';
}

/* '?' */
.icon-location-1:before {
    content: '\e872';
}

/* '?' */
.icon-cup-1:before {
    content: '\e873';
}

/* '?' */
.icon-trash-1:before {
    content: '\e874';
}

/* '?' */
.icon-doc-1:before {
    content: '\e875';
}

/* '?' */
.icon-key:before {
    content: '\e876';
}

/* '?' */
.icon-database:before {
    content: '\e877';
}

/* '?' */
.icon-megaphone:before {
    content: '\e878';
}

/* '?' */
.icon-graduation-cap-1:before {
    content: '\e879';
}

/* '?' */
.icon-fire:before {
    content: '\e87a';
}

/* '?' */
.icon-paper-plane-1:before {
    content: '\e87b';
}

/* '?' */
.icon-cloud:before {
    content: '\e87c';
}

/* '?' */
.icon-globe-1:before {
    content: '\e87d';
}

/* '?' */
.icon-inbox:before {
    content: '\e87e';
}

/* '?' */
.icon-cd:before {
    content: '\e87f';
}

/* '?' */
.icon-mobile:before {
    content: '\e880';
}

/* '?' */
.icon-desktop:before {
    content: '\e881';
}

/* '?' */
.icon-tv:before {
    content: '\e882';
}

/* '?' */
.icon-lightbulb:before {
    content: '\e883';
}

/* '?' */
.icon-clock-1:before {
    content: '\e884';
}

/* '?' */
.icon-sound-1:before {
    content: '\e885';
}

/* '?' */
.icon-params:before {
    content: '\e886';
}

/* '?' */
.icon-calendar-1:before {
    content: '\e887';
}

/* '?' */
.icon-cog:before {
    content: '\e888';
}

/* '?' */
.icon-note:before {
    content: '\e889';
}

/* '?' */
.icon-beaker:before {
    content: '\e88a';
}

/* '?' */
.icon-truck:before {
    content: '\e88b';
}

/* '?' */
.icon-money:before {
    content: '\e88c';
}

/* '?' */
.icon-shop:before {
    content: '\e88d';
}

/* '?' */
.icon-diamond:before {
    content: '\e88e';
}

/* '?' */
.icon-t-shirt:before {
    content: '\e88f';
}

/* '?' */
.icon-wallet:before {
    content: '\e890';
}

/* '?' */
.icon-food:before {
    content: '\e891';
}

/* '?' */
.icon-certificate:before {
    content: '\e892';
}

/* '?' */
.icon-megaphone-1:before {
    content: '\e893';
}

/* '?' */
.icon-gift:before {
    content: '\e894';
}

/* '?' */
.icon-asl:before {
    content: '\e895';
}

/* '?' */
.icon-glasses:before {
    content: '\e896';
}

/* '?' */
.icon-adult:before {
    content: '\e897';
}

/* '?' */
.icon-child:before {
    content: '\e898';
}

/* '?' */
.icon-blind:before {
    content: '\e899';
}

/* '?' */
.icon-guidedog:before {
    content: '\e89a';
}

/* '?' */
.icon-accessibility:before {
    content: '\e89b';
}

/* '?' */
.icon-universal-access:before {
    content: '\e89c';
}

/* '?' */
.icon-hearing-impaired:before {
    content: '\e89d';
}

/* '?' */
.icon-iphone-home:before {
    content: '\e89e';
}

/* '?' */
.icon-fire-1:before {
    content: '\e89f';
}

/* '?' */
.icon-down-hand:before {
    content: '\e8a0';
}

/* '?' */
.icon-left-hand:before {
    content: '\e8a1';
}

/* '?' */
.icon-right-hand:before {
    content: '\e8a2';
}

/* '?' */
.icon-up-hand:before {
    content: '\e8a3';
}

/* '?' */
.icon-cw-1:before {
    content: '\e8a4';
}

/* '?' */
.icon-cw-circled:before {
    content: '\e8a5';
}

/* '?' */
.icon-arrows-cw-1:before {
    content: '\e8a6';
}

/* '?' */
.icon-shuffle-1:before {
    content: '\e8a7';
}

/* '?' */
.icon-play-circled:before {
    content: '\e8a8';
}

/* '?' */
.icon-play-circled2:before {
    content: '\e8a9';
}

/* '?' */
.icon-laptop:before {
    content: '\e8aa';
}

/* '?' */
.icon-desktop-circled:before {
    content: '\e8ab';
}

/* '?' */
.icon-desktop-1:before {
    content: '\e8ac';
}

/* '?' */
.icon-signal-1:before {
    content: '\e8ad';
}

/* '?' */
.icon-key-1:before {
    content: '\e8ae';
}

/* '?' */
.icon-flight-1:before {
    content: '\e8af';
}

/* '?' */
.icon-filter:before {
    content: '\e8b0';
}

/* '?' */
.icon-credit-card:before {
    content: '\e8b1';
}

/* '?' */
.icon-clipboard:before {
    content: '\e8b2';
}

/* '?' */
.icon-heart-empty-1:before {
    content: '\e8b3';
}

/* '?' */
.icon-star-2:before {
    content: '\e8b4';
}

/* '?' */
.icon-star-circled:before {
    content: '\e8b5';
}

/* '?' */
.icon-star-empty-1:before {
    content: '\e8b6';
}

/* '?' */
.icon-heart-circled:before {
    content: '\e8b7';
}

/* '?' */
.icon-heart-2:before {
    content: '\e8b8';
}

/* '?' */
.icon-mail-circled:before {
    content: '\e8b9';
}

/* '?' */
.icon-mail-2:before {
    content: '\e8ba';
}

/* '?' */
.icon-th-large-1:before {
    content: '\e8bb';
}

/* '?' */
.icon-th-1:before {
    content: '\e8bc';
}

/* '?' */
.icon-th-list-1:before {
    content: '\e8bd';
}

/* '?' */
.icon-ok-circled:before {
    content: '\e8be';
}

/* '?' */
.icon-ok-circled2:before {
    content: '\e8bf';
}

/* '?' */
.icon-ok:before {
    content: '\e8c0';
}

/* '?' */
.icon-pencil-2:before {
    content: '\e8c1';
}

/* '?' */
.icon-pencil-circled:before {
    content: '\e8c2';
}

/* '?' */
.icon-eye-2:before {
    content: '\e8c3';
}

/* '?' */
.icon-eye-off:before {
    content: '\e8c4';
}

/* '?' */
.icon-warning:before {
    content: '\e8c5';
}

/* '?' */
.icon-bell-1:before {
    content: '\e8c6';
}

/* '?' */
.icon-phone-circled:before {
    content: '\e8c7';
}

/* '?' */
.icon-phone-1:before {
    content: '\e8c8';
}

/* '?' */
.icon-folder-open:before {
    content: '\e8c9';
}

/* '?' */
.icon-folder-close:before {
    content: '\e8ca';
}

/* '?' */
.icon-folder:before {
    content: '\e8cb';
}

/* '?' */
.icon-folder-circled:before {
    content: '\e8cc';
}

/* '?' */
.icon-doc-new:before {
    content: '\e8cd';
}

/* '?' */
.icon-doc-new-circled:before {
    content: '\e8ce';
}

/* '?' */
.icon-doc-circled:before {
    content: '\e8cf';
}

/* '?' */
.icon-doc-2:before {
    content: '\e8d0';
}

/* '?' */
.icon-trash-circled:before {
    content: '\e8d1';
}

/* '?' */
.icon-trash-2:before {
    content: '\e8d2';
}

/* '?' */
.icon-location-circled:before {
    content: '\e8d3';
}

/* '?' */
.icon-location-2:before {
    content: '\e8d4';
}

/* '?' */
.icon-attach-3:before {
    content: '\e8d5';
}

/* '?' */
.icon-attach-circled:before {
    content: '\e8d6';
}

/* '?' */
.icon-lock-open-alt:before {
    content: '\e8d7';
}

/* '?' */
.icon-lock-open-1:before {
    content: '\e8d8';
}

/* '?' */
.icon-lock-circled:before {
    content: '\e8d9';
}

/* '?' */
.icon-lock-2:before {
    content: '\e8da';
}

/* '?' */
.icon-camera-2:before {
    content: '\e8db';
}

/* '?' */
.icon-facebook:before {
    content: '\e8dc';
}

/* '?' */
.icon-facebook-rect:before {
    content: '\e8dd';
}

/* '?' */
.icon-twitter:before {
    content: '\e8de';
}

/* '?' */
.icon-twitter-bird:before {
    content: '\e8df';
}

/* '?' */
.icon-vimeo:before {
    content: '\e8e0';
}

/* '?' */
.icon-vimeo-rect:before {
    content: '\e8e1';
}

/* '?' */
.icon-tumblr:before {
    content: '\e8e2';
}

/* '?' */
.icon-tumblr-rect:before {
    content: '\e8e3';
}

/* '?' */
.icon-googleplus-rect:before {
    content: '\e8e4';
}

/* '?' */
.icon-github-text:before {
    content: '\e8e5';
}

/* '?' */
.icon-github:before {
    content: '\e8e6';
}

/* '?' */
.icon-skype:before {
    content: '\e8e7';
}

/* '?' */
.icon-icq:before {
    content: '\e8e8';
}

/* '?' */
.icon-yandex:before {
    content: '\e8e9';
}

/* '?' */
.icon-yandex-rect:before {
    content: '\e8ea';
}

/* '?' */
.icon-vkontakte-rect:before {
    content: '\e8eb';
}

/* '?' */
.icon-odnoklassniki:before {
    content: '\e8ec';
}

/* '?' */
.icon-odnoklassniki-rect:before {
    content: '\e8ed';
}

/* '?' */
.icon-friendfeed:before {
    content: '\e8ee';
}

/* '?' */
.icon-friendfeed-rect:before {
    content: '\e8ef';
}

/* '?' */
.icon-discover:before {
    content: '\e8f0';
}

/* '?' */
.icon-amex:before {
    content: '\e8f1';
}

/* '?' */
.icon-win8:before {
    content: '\e8f2';
}

/* '?' */
.icon-youku:before {
    content: '\e8f3';
}

/* '?' */
.icon-tudou:before {
    content: '\e8f4';
}

/* '?' */
.icon-box-rect:before {
    content: '\e8f5';
}

/* '?' */
.icon-box:before {
    content: '\e8f6';
}

/* '?' */
.icon-diigo:before {
    content: '\e8f7';
}

/* '?' */
.icon-instagram-filled:before {
    content: '\e8f8';
}

/* '?' */
.icon-wordpress:before {
    content: '\e8f9';
}

/* '?' */
.icon-picasa:before {
    content: '\e8fa';
}

/* '?' */
.icon-linkedin-rect:before {
    content: '\e8fb';
}

/* '?' */
.icon-linkedin:before {
    content: '\e8fc';
}

/* '?' */
.icon-lastfm-rect:before {
    content: '\e8fd';
}

/* '?' */
.icon-lastfm:before {
    content: '\e8fe';
}

/* '?' */
.icon-jabber:before {
    content: '\e8ff';
}

/* '?' */
.icon-deviantart:before {
    content: '\e900';
}

/* '?' */
.icon-blogger-rect:before {
    content: '\e901';
}

/* '?' */
.icon-blogger:before {
    content: '\e902';
}

/* '?' */
.icon-visa:before {
    content: '\e903';
}

/* '?' */
.icon-mastercard:before {
    content: '\e904';
}

/* '?' */
.icon-houzz:before {
    content: '\e905';
}

/* '?' */
.icon-bandcamp:before {
    content: '\e906';
}

/* '?' */
.icon-codepen:before {
    content: '\e907';
}

/* '?' */
.icon-bicycle:before {
    content: '\e908';
}

/* '?' */
.icon-bus:before {
    content: '\e909';
}

/* '?' */
.icon-cafe:before {
    content: '\e90a';
}

/* '?' */
.icon-college:before {
    content: '\e90b';
}

/* '?' */
.icon-cinema:before {
    content: '\e90c';
}

/* '?' */
.icon-library:before {
    content: '\e90d';
}

/* '?' */
.icon-lodging:before {
    content: '\e90e';
}

/* '?' */
.icon-minefield:before {
    content: '\e90f';
}

/* '?' */
.icon-london-underground:before {
    content: '\e910';
}

/* '?' */
.icon-theatre:before {
    content: '\e911';
}

/* '?' */
.icon-tennis:before {
    content: '\e912';
}

/* '?' */
.icon-swimming:before {
    content: '\e913';
}

/* '?' */
.icon-soccer:before {
    content: '\e914';
}

/* '?' */
.icon-skiing:before {
    content: '\e915';
}

/* '?' */
.icon-shop-1:before {
    content: '\e916';
}

/* '?' */
.icon-school:before {
    content: '\e917';
}

/* '?' */
.icon-religious-islam:before {
    content: '\e918';
}

/* '?' */
.icon-religious-jewish:before {
    content: '\e919';
}

/* '?' */
.icon-religious-christian:before {
    content: '\e91a';
}

/* '?' */
.icon-rail:before {
    content: '\e91b';
}

/* '?' */
.icon-prison:before {
    content: '\e91c';
}

/* '?' */
.icon-post:before {
    content: '\e91d';
}

/* '?' */
.icon-pitch:before {
    content: '\e91e';
}

/* '?' */
.icon-police:before {
    content: '\e91f';
}

/* '?' */
.icon-tree-1:before {
    content: '\e920';
}

/* '?' */
.icon-tree-2:before {
    content: '\e921';
}

/* '?' */
.icon-warehouse:before {
    content: '\e922';
}

/* '?' */
.icon-fast-food:before {
    content: '\e923';
}

/* '?' */
.icon-ferry:before {
    content: '\e924';
}

/* '?' */
.icon-fire-station:before {
    content: '\e925';
}

/* '?' */
.icon-football:before {
    content: '\e926';
}

/* '?' */
.icon-fuel:before {
    content: '\e927';
}

/* '?' */
.icon-garden:before {
    content: '\e928';
}

/* '?' */
.icon-giraffe:before {
    content: '\e929';
}

/* '?' */
.icon-golf:before {
    content: '\e92a';
}

/* '?' */
.icon-grocery-store:before {
    content: '\e92b';
}

/* '?' */
.icon-harbor:before {
    content: '\e92c';
}

/* '?' */
.icon-belowground-rail:before {
    content: '\e92d';
}

/* '?' */
.icon-beer:before {
    content: '\e92e';
}

/* '?' */
.icon-basketball:before {
    content: '\e92f';
}

/* '?' */
.icon-baseball:before {
    content: '\e930';
}

/* '?' */
.icon-bar2:before {
    content: '\e931';
}

/* '?' */
.icon-art-gallery:before {
    content: '\e932';
}

/* '?' */
.icon-airport:before {
    content: '\e933';
}

/* '?' */
.icon-airfield:before {
    content: '\e934';
}

/* '?' */
.icon-aboveground-rail:before {
    content: '\e935';
}

/* '?' */
.icon-cemetery:before {
    content: '\e936';
}

/* '?' */
.icon-commerical-building:before {
    content: '\e937';
}

/* '?' */
.icon-credit-card-1:before {
    content: '\e938';
}

/* '?' */
.icon-cricket:before {
    content: '\e939';
}

/* '?' */
.icon-embassy:before {
    content: '\e93a';
}

/* '?' */
.icon-pharmacy:before {
    content: '\e93b';
}

/* '?' */
.icon-museum:before {
    content: '\e93c';
}

/* '?' */
.icon-monument:before {
    content: '\e93d';
}

/* '?' */
.icon-toilet:before {
    content: '\e93e';
}

/* '?' */
.icon-town-hall:before {
    content: '\e93f';
}

/* '?' */
.icon-trash-3:before {
    content: '\e940';
}

/* '?' */
.icon-heliport:before {
    content: '\e941';
}

/* '?' */
.icon-hospital:before {
    content: '\e942';
}

/* '?' */
.icon-industrial-building:before {
    content: '\e943';
}

/* '?' */
.icon-restaurant:before {
    content: '\e944';
}

/* '?' */
.icon-menu-1:before {
    content: '\e945';
}

/* '?' */
.icon-th-thumb:before {
    content: '\e946';
}

/* '?' */
.icon-th-list-2:before {
    content: '\e947';
}

/* '?' */
.icon-th-thumb-empty:before {
    content: '\e948';
}

/* '?' */
.icon-ok-1:before {
    content: '\e949';
}

/* '?' */
.icon-ok-circled-1:before {
    content: '\e94a';
}

/* '?' */
.icon-cancel-1:before {
    content: '\e94b';
}

/* '?' */
.icon-cancel-circled:before {
    content: '\e94c';
}

/* '?' */
.icon-plus:before {
    content: '\e94d';
}

/* '?' */
.icon-help-circled-1:before {
    content: '\e94e';
}

/* '?' */
.icon-help-circled-alt:before {
    content: '\e94f';
}

/* '?' */
.icon-user-2:before {
    content: '\e950';
}

/* '?' */
.icon-user-male:before {
    content: '\e951';
}

/* '?' */
.icon-user-female:before {
    content: '\e952';
}

/* '?' */
.icon-users-1:before {
    content: '\e953';
}

/* '?' */
.icon-camera-3:before {
    content: '\e954';
}

/* '?' */
.icon-eye-3:before {
    content: '\e955';
}

/* '?' */
.icon-lock-3:before {
    content: '\e956';
}

/* '?' */
.icon-lock-alt:before {
    content: '\e957';
}

/* '?' */
.icon-lock-open-2:before {
    content: '\e958';
}

/* '?' */
.icon-lock-open-alt-1:before {
    content: '\e959';
}

/* '?' */
.icon-attach-4:before {
    content: '\e95a';
}

/* '?' */
.icon-link-1:before {
    content: '\e95b';
}

/* '?' */
.icon-info-circled-alt:before {
    content: '\e95c';
}

/* '?' */
.icon-clock-2:before {
    content: '\e95d';
}

/* '?' */
.icon-stopwatch:before {
    content: '\e95e';
}

/* '?' */
.icon-hourglass:before {
    content: '\e95f';
}

/* '?' */
.icon-paper-plane-alt:before {
    content: '\e960';
}

/* '?' */
.icon-paper-plane-alt2:before {
    content: '\e961';
}

/* '?' */
.icon-location-3:before {
    content: '\e962';
}

/* '?' */
.icon-trash-4:before {
    content: '\e963';
}

/* '?' */
.icon-doc-3:before {
    content: '\e964';
}

/* '?' */
.icon-newspaper-1:before {
    content: '\e965';
}

/* '?' */
.icon-folder-open-1:before {
    content: '\e966';
}

/* '?' */
.icon-folder-empty:before {
    content: '\e967';
}

/* '?' */
.icon-folder-open-empty:before {
    content: '\e968';
}

/* '?' */
.icon-folder-1:before {
    content: '\e969';
}

/* '?' */
.icon-attention-alt:before {
    content: '\e96a';
}

/* '?' */
.icon-attention-1:before {
    content: '\e96b';
}

/* '?' */
.icon-bell-2:before {
    content: '\e96c';
}

/* '?' */
.icon-chat-1:before {
    content: '\e96d';
}

/* '?' */
.icon-comment-1:before {
    content: '\e96e';
}

/* '?' */
.icon-print:before {
    content: '\e96f';
}

/* '?' */
.icon-export-1:before {
    content: '\e970';
}

/* '?' */
.icon-reply:before {
    content: '\e971';
}

/* '?' */
.icon-pencil-3:before {
    content: '\e972';
}

/* '?' */
.icon-calendar-2:before {
    content: '\e973';
}

/* '?' */
.icon-globe-2:before {
    content: '\e974';
}

/* '?' */
.icon-globe-inv:before {
    content: '\e975';
}

/* '?' */
.icon-at:before {
    content: '\e976';
}

/* '?' */
.icon-play-circled-1:before {
    content: '\e977';
}

/* '?' */
.icon-play-circled2-1:before {
    content: '\e978';
}

/* '?' */
.icon-pause:before {
    content: '\e979';
}

/* '?' */
.icon-stop:before {
    content: '\e97a';
}

/* '?' */
.icon-trash-5:before {
    content: '\e97b';
}

/* '?' */
.icon-doc-4:before {
    content: '\e97c';
}

/* '?' */
.icon-docs-1:before {
    content: '\e97d';
}

/* '?' */
.icon-doc-text-1:before {
    content: '\e97e';
}

/* '?' */
.icon-user-md:before {
    content: '\e97f';
}

/* '?' */
.icon-stethoscope:before {
    content: '\e980';
}

/* '?' */
.icon-ambulance:before {
    content: '\e981';
}

/* '?' */
.icon-building-filled:before {
    content: '\e982';
}

/* '?' */
.icon-bank:before {
    content: '\e983';
}

/* '?' */
.icon-medkit:before {
    content: '\e984';
}

/* '?' */
.icon-coffee:before {
    content: '\e985';
}

/* '?' */
.icon-taxi:before {
    content: '\e986';
}

/* '?' */
.icon-truck-1:before {
    content: '\e987';
}

/* '?' */
.icon-food-1:before {
    content: '\e988';
}

/* '?' */
.icon-user-pair:before {
    content: '\e989';
}

/* '?' */
.icon-user-woman:before {
    content: '\e98a';
}

/* '?' */
.icon-home-1:before {
    content: '\e98b';
}

/* '?' */
.icon-basket-1:before {
    content: '\e98c';
}

/* '?' */
.icon-website:before {
    content: '\e98d';
}

/* '?' */
.icon-group:before {
    content: '\e98e';
}

/* '?' */
.icon-user-3:before {
    content: '\e98f';
}

/* '?' */
.icon-person:before {
    content: '\e990';
}

/* '?' */
.icon-group-circled:before {
    content: '\e991';
}

/* '?' */
.icon-female:before {
    content: '\e992';
}

/* '?' */
.icon-smiley:before {
    content: '\e993';
}

/* '?' */
.icon-smiley-circled:before {
    content: '\e994';
}

/* '?' */
.icon-bug:before {
    content: '\e995';
}

/* '?' */
.icon-certificate-1:before {
    content: '\e996';
}

/* '?' */
.icon-graduation-cap-2:before {
    content: '\e997';
}

/* '?' */
.icon-wheelchair:before {
    content: '\e998';
}

/* '?' */
.icon-extinguisher:before {
    content: '\e999';
}

/* '?' */
.icon-shield:before {
    content: '\e99a';
}

/* '?' */
.icon-hammer:before {
    content: '\e99b';
}

/* '?' */
.icon-cab:before {
    content: '\e99c';
}

/* '?' */



.shape {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 28px;
    height: 42px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 42px;
}

.ln-shadow-logo {
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 100%;
    height: 52px;
    line-height: 50px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 52px;
    margin-top: -8px;
}

.ln-shadow {
    background-color: rgb(22, 160, 133);
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 28px;
    height: 42px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 42px;
    text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);
    -webkit-text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);
    -moz-text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);

}

.shape-0 {
    text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);
    -moz-text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);

    -webkit-text-shadow: 1px 1px rgb(20, 144, 120), 2px 2px rgb(20, 144, 120), 3px 3px rgb(20, 144, 120), 4px 4px rgb(20, 144, 120), 5px 5px rgb(20, 144, 120), 6px 6px rgb(20, 144, 120), 7px 7px rgb(20, 144, 120), 8px 8px rgb(20, 144, 120), 9px 9px rgb(20, 144, 120), 10px 10px rgb(20, 144, 120), 11px 11px rgb(20, 144, 120), 12px 12px rgb(20, 144, 120), 13px 13px rgb(20, 145, 121), 14px 14px rgb(20, 146, 122), 15px 15px rgb(20, 147, 123), 16px 16px rgb(20, 148, 123), 17px 17px rgb(20, 149, 124), 18px 18px rgb(20, 150, 125), 19px 19px rgb(20, 151, 126), 20px 20px rgb(21, 152, 126), 21px 21px rgb(21, 153, 127), 22px 22px rgb(21, 154, 128), 23px 23px rgb(21, 155, 129), 24px 24px rgb(21, 156, 129), 25px 25px rgb(21, 157, 130), 26px 26px rgb(21, 158, 131), 27px 27px rgb(21, 159, 132), 28px 28px rgb(22, 160, 133);

    background-color: rgb(22, 160, 133);
}

.shape-1 {
    text-shadow: 1px 1px rgb(62, 158, 102), 2px 2px rgb(62, 159, 102), 3px 3px rgb(62, 159, 103), 4px 4px rgb(62, 160, 103), 5px 5px rgb(63, 160, 103), 6px 6px rgb(63, 161, 104), 7px 7px rgb(63, 162, 104), 8px 8px rgb(63, 162, 104), 9px 9px rgb(64, 163, 105), 10px 10px rgb(64, 163, 105), 11px 11px rgb(64, 164, 105), 12px 12px rgb(64, 164, 106), 13px 13px rgb(64, 165, 106), 14px 14px rgb(65, 166, 107), 15px 15px rgb(65, 166, 107), 16px 16px rgb(65, 167, 107), 17px 17px rgb(65, 167, 108), 18px 18px rgb(66, 168, 108), 19px 19px rgb(66, 168, 108), 20px 20px rgb(66, 169, 109), 21px 21px rgb(66, 170, 109), 22px 22px rgb(67, 170, 109), 23px 23px rgb(67, 171, 110), 24px 24px rgb(67, 171, 110), 25px 25px rgb(67, 172, 110), 26px 26px rgb(67, 172, 111), 27px 27px rgb(68, 173, 111), 28px 28px rgb(68, 174, 112), 29px 29px rgb(68, 174, 112), 30px 30px rgb(68, 175, 112), 31px 31px rgb(69, 175, 113), 32px 32px rgb(69, 176, 113), 33px 33px rgb(69, 176, 113), 34px 34px rgb(69, 177, 114), 35px 35px rgb(70, 178, 114), 36px 36px rgb(70, 178, 114), 37px 37px rgb(70, 179, 115), 38px 38px rgb(70, 179, 115), 39px 39px rgb(70, 180, 115), 40px 40px rgb(71, 180, 116), 41px 41px rgb(71, 181, 116), 42px 42px rgb(71, 182, 117), 43px 43px rgb(71, 182, 117), 44px 44px rgb(72, 183, 117), 45px 45px rgb(72, 183, 118), 46px 46px rgb(72, 184, 118), 47px 47px rgb(72, 184, 118), 48px 48px rgb(72, 185, 119), 49px 49px rgb(73, 186, 119), 50px 50px rgb(73, 186, 119), 51px 51px rgb(73, 187, 120), 52px 52px rgb(73, 187, 120), 53px 53px rgb(74, 188, 120), 54px 54px rgb(74, 188, 121), 55px 55px rgb(74, 189, 121), 56px 56px rgb(74, 190, 122), 57px 57px rgb(75, 190, 122), 58px 58px rgb(75, 191, 122), 59px 59px rgb(75, 191, 123), 60px 60px rgb(75, 192, 123), 61px 61px rgb(75, 192, 123), 62px 62px rgb(76, 193, 124), 63px 63px rgb(76, 194, 124), 64px 64px rgb(76, 194, 124), 65px 65px rgb(76, 195, 125), 66px 66px rgb(77, 195, 125), 67px 67px rgb(77, 196, 125), 68px 68px rgb(77, 196, 126), 69px 69px rgb(77, 197, 126), 70px 70px rgb(78, 198, 127);
    -webkit-text-shadow: 1px 1px rgb(62, 158, 102), 2px 2px rgb(62, 159, 102), 3px 3px rgb(62, 159, 103), 4px 4px rgb(62, 160, 103), 5px 5px rgb(63, 160, 103), 6px 6px rgb(63, 161, 104), 7px 7px rgb(63, 162, 104), 8px 8px rgb(63, 162, 104), 9px 9px rgb(64, 163, 105), 10px 10px rgb(64, 163, 105), 11px 11px rgb(64, 164, 105), 12px 12px rgb(64, 164, 106), 13px 13px rgb(64, 165, 106), 14px 14px rgb(65, 166, 107), 15px 15px rgb(65, 166, 107), 16px 16px rgb(65, 167, 107), 17px 17px rgb(65, 167, 108), 18px 18px rgb(66, 168, 108), 19px 19px rgb(66, 168, 108), 20px 20px rgb(66, 169, 109), 21px 21px rgb(66, 170, 109), 22px 22px rgb(67, 170, 109), 23px 23px rgb(67, 171, 110), 24px 24px rgb(67, 171, 110), 25px 25px rgb(67, 172, 110), 26px 26px rgb(67, 172, 111), 27px 27px rgb(68, 173, 111), 28px 28px rgb(68, 174, 112), 29px 29px rgb(68, 174, 112), 30px 30px rgb(68, 175, 112), 31px 31px rgb(69, 175, 113), 32px 32px rgb(69, 176, 113), 33px 33px rgb(69, 176, 113), 34px 34px rgb(69, 177, 114), 35px 35px rgb(70, 178, 114), 36px 36px rgb(70, 178, 114), 37px 37px rgb(70, 179, 115), 38px 38px rgb(70, 179, 115), 39px 39px rgb(70, 180, 115), 40px 40px rgb(71, 180, 116), 41px 41px rgb(71, 181, 116), 42px 42px rgb(71, 182, 117), 43px 43px rgb(71, 182, 117), 44px 44px rgb(72, 183, 117), 45px 45px rgb(72, 183, 118), 46px 46px rgb(72, 184, 118), 47px 47px rgb(72, 184, 118), 48px 48px rgb(72, 185, 119), 49px 49px rgb(73, 186, 119), 50px 50px rgb(73, 186, 119), 51px 51px rgb(73, 187, 120), 52px 52px rgb(73, 187, 120), 53px 53px rgb(74, 188, 120), 54px 54px rgb(74, 188, 121), 55px 55px rgb(74, 189, 121), 56px 56px rgb(74, 190, 122), 57px 57px rgb(75, 190, 122), 58px 58px rgb(75, 191, 122), 59px 59px rgb(75, 191, 123), 60px 60px rgb(75, 192, 123), 61px 61px rgb(75, 192, 123), 62px 62px rgb(76, 193, 124), 63px 63px rgb(76, 194, 124), 64px 64px rgb(76, 194, 124), 65px 65px rgb(76, 195, 125), 66px 66px rgb(77, 195, 125), 67px 67px rgb(77, 196, 125), 68px 68px rgb(77, 196, 126), 69px 69px rgb(77, 197, 126), 70px 70px rgb(78, 198, 127);

    -moz-text-shadow: 1px 1px rgb(62, 158, 102), 2px 2px rgb(62, 159, 102), 3px 3px rgb(62, 159, 103), 4px 4px rgb(62, 160, 103), 5px 5px rgb(63, 160, 103), 6px 6px rgb(63, 161, 104), 7px 7px rgb(63, 162, 104), 8px 8px rgb(63, 162, 104), 9px 9px rgb(64, 163, 105), 10px 10px rgb(64, 163, 105), 11px 11px rgb(64, 164, 105), 12px 12px rgb(64, 164, 106), 13px 13px rgb(64, 165, 106), 14px 14px rgb(65, 166, 107), 15px 15px rgb(65, 166, 107), 16px 16px rgb(65, 167, 107), 17px 17px rgb(65, 167, 108), 18px 18px rgb(66, 168, 108), 19px 19px rgb(66, 168, 108), 20px 20px rgb(66, 169, 109), 21px 21px rgb(66, 170, 109), 22px 22px rgb(67, 170, 109), 23px 23px rgb(67, 171, 110), 24px 24px rgb(67, 171, 110), 25px 25px rgb(67, 172, 110), 26px 26px rgb(67, 172, 111), 27px 27px rgb(68, 173, 111), 28px 28px rgb(68, 174, 112), 29px 29px rgb(68, 174, 112), 30px 30px rgb(68, 175, 112), 31px 31px rgb(69, 175, 113), 32px 32px rgb(69, 176, 113), 33px 33px rgb(69, 176, 113), 34px 34px rgb(69, 177, 114), 35px 35px rgb(70, 178, 114), 36px 36px rgb(70, 178, 114), 37px 37px rgb(70, 179, 115), 38px 38px rgb(70, 179, 115), 39px 39px rgb(70, 180, 115), 40px 40px rgb(71, 180, 116), 41px 41px rgb(71, 181, 116), 42px 42px rgb(71, 182, 117), 43px 43px rgb(71, 182, 117), 44px 44px rgb(72, 183, 117), 45px 45px rgb(72, 183, 118), 46px 46px rgb(72, 184, 118), 47px 47px rgb(72, 184, 118), 48px 48px rgb(72, 185, 119), 49px 49px rgb(73, 186, 119), 50px 50px rgb(73, 186, 119), 51px 51px rgb(73, 187, 120), 52px 52px rgb(73, 187, 120), 53px 53px rgb(74, 188, 120), 54px 54px rgb(74, 188, 121), 55px 55px rgb(74, 189, 121), 56px 56px rgb(74, 190, 122), 57px 57px rgb(75, 190, 122), 58px 58px rgb(75, 191, 122), 59px 59px rgb(75, 191, 123), 60px 60px rgb(75, 192, 123), 61px 61px rgb(75, 192, 123), 62px 62px rgb(76, 193, 124), 63px 63px rgb(76, 194, 124), 64px 64px rgb(76, 194, 124), 65px 65px rgb(76, 195, 125), 66px 66px rgb(77, 195, 125), 67px 67px rgb(77, 196, 125), 68px 68px rgb(77, 196, 126), 69px 69px rgb(77, 197, 126), 70px 70px rgb(78, 198, 127);

    background-color: rgb(78, 198, 127);
}

.shape-2 {
    text-shadow: 1px 1px rgb(47, 162, 119), 2px 2px rgb(47, 163, 119), 3px 3px rgb(47, 163, 120), 4px 4px rgb(47, 164, 120), 5px 5px rgb(47, 164, 121), 6px 6px rgb(48, 165, 121), 7px 7px rgb(48, 166, 122), 8px 8px rgb(48, 166, 122), 9px 9px rgb(48, 167, 122), 10px 10px rgb(48, 167, 123), 11px 11px rgb(48, 168, 123), 12px 12px rgb(49, 168, 124), 13px 13px rgb(49, 169, 124), 14px 14px rgb(49, 170, 125), 15px 15px rgb(49, 170, 125), 16px 16px rgb(49, 171, 125), 17px 17px rgb(49, 171, 126), 18px 18px rgb(50, 172, 126), 19px 19px rgb(50, 172, 127), 20px 20px rgb(50, 173, 127), 21px 21px rgb(50, 174, 128), 22px 22px rgb(50, 174, 128), 23px 23px rgb(50, 175, 128), 24px 24px rgb(51, 175, 129), 25px 25px rgb(51, 176, 129), 26px 26px rgb(51, 176, 130), 27px 27px rgb(51, 177, 130), 28px 28px rgb(51, 178, 131), 29px 29px rgb(51, 178, 131), 30px 30px rgb(52, 179, 131), 31px 31px rgb(52, 179, 132), 32px 32px rgb(52, 180, 132), 33px 33px rgb(52, 180, 133), 34px 34px rgb(52, 181, 133), 35px 35px rgb(53, 182, 134), 36px 36px rgb(53, 182, 134), 37px 37px rgb(53, 183, 134), 38px 38px rgb(53, 183, 135), 39px 39px rgb(53, 184, 135), 40px 40px rgb(53, 184, 136), 41px 41px rgb(54, 185, 136), 42px 42px rgb(54, 186, 137), 43px 43px rgb(54, 186, 137), 44px 44px rgb(54, 187, 137), 45px 45px rgb(54, 187, 138), 46px 46px rgb(54, 188, 138), 47px 47px rgb(55, 188, 139), 48px 48px rgb(55, 189, 139), 49px 49px rgb(55, 190, 140), 50px 50px rgb(55, 190, 140), 51px 51px rgb(55, 191, 140), 52px 52px rgb(55, 191, 141), 53px 53px rgb(56, 192, 141), 54px 54px rgb(56, 192, 142), 55px 55px rgb(56, 193, 142), 56px 56px rgb(56, 194, 143), 57px 57px rgb(56, 194, 143), 58px 58px rgb(56, 195, 143), 59px 59px rgb(57, 195, 144), 60px 60px rgb(57, 196, 144), 61px 61px rgb(57, 196, 145), 62px 62px rgb(57, 197, 145), 63px 63px rgb(57, 198, 146), 64px 64px rgb(57, 198, 146), 65px 65px rgb(58, 199, 146), 66px 66px rgb(58, 199, 147), 67px 67px rgb(58, 200, 147), 68px 68px rgb(58, 200, 148), 69px 69px rgb(58, 201, 148), 70px 70px rgb(59, 202, 149);
    -moz-text-shadow: 1px 1px rgb(47, 162, 119), 2px 2px rgb(47, 163, 119), 3px 3px rgb(47, 163, 120), 4px 4px rgb(47, 164, 120), 5px 5px rgb(47, 164, 121), 6px 6px rgb(48, 165, 121), 7px 7px rgb(48, 166, 122), 8px 8px rgb(48, 166, 122), 9px 9px rgb(48, 167, 122), 10px 10px rgb(48, 167, 123), 11px 11px rgb(48, 168, 123), 12px 12px rgb(49, 168, 124), 13px 13px rgb(49, 169, 124), 14px 14px rgb(49, 170, 125), 15px 15px rgb(49, 170, 125), 16px 16px rgb(49, 171, 125), 17px 17px rgb(49, 171, 126), 18px 18px rgb(50, 172, 126), 19px 19px rgb(50, 172, 127), 20px 20px rgb(50, 173, 127), 21px 21px rgb(50, 174, 128), 22px 22px rgb(50, 174, 128), 23px 23px rgb(50, 175, 128), 24px 24px rgb(51, 175, 129), 25px 25px rgb(51, 176, 129), 26px 26px rgb(51, 176, 130), 27px 27px rgb(51, 177, 130), 28px 28px rgb(51, 178, 131), 29px 29px rgb(51, 178, 131), 30px 30px rgb(52, 179, 131), 31px 31px rgb(52, 179, 132), 32px 32px rgb(52, 180, 132), 33px 33px rgb(52, 180, 133), 34px 34px rgb(52, 181, 133), 35px 35px rgb(53, 182, 134), 36px 36px rgb(53, 182, 134), 37px 37px rgb(53, 183, 134), 38px 38px rgb(53, 183, 135), 39px 39px rgb(53, 184, 135), 40px 40px rgb(53, 184, 136), 41px 41px rgb(54, 185, 136), 42px 42px rgb(54, 186, 137), 43px 43px rgb(54, 186, 137), 44px 44px rgb(54, 187, 137), 45px 45px rgb(54, 187, 138), 46px 46px rgb(54, 188, 138), 47px 47px rgb(55, 188, 139), 48px 48px rgb(55, 189, 139), 49px 49px rgb(55, 190, 140), 50px 50px rgb(55, 190, 140), 51px 51px rgb(55, 191, 140), 52px 52px rgb(55, 191, 141), 53px 53px rgb(56, 192, 141), 54px 54px rgb(56, 192, 142), 55px 55px rgb(56, 193, 142), 56px 56px rgb(56, 194, 143), 57px 57px rgb(56, 194, 143), 58px 58px rgb(56, 195, 143), 59px 59px rgb(57, 195, 144), 60px 60px rgb(57, 196, 144), 61px 61px rgb(57, 196, 145), 62px 62px rgb(57, 197, 145), 63px 63px rgb(57, 198, 146), 64px 64px rgb(57, 198, 146), 65px 65px rgb(58, 199, 146), 66px 66px rgb(58, 199, 147), 67px 67px rgb(58, 200, 147), 68px 68px rgb(58, 200, 148), 69px 69px rgb(58, 201, 148), 70px 70px rgb(59, 202, 149);

    -webkit-text-shadow: 1px 1px rgb(47, 162, 119), 2px 2px rgb(47, 163, 119), 3px 3px rgb(47, 163, 120), 4px 4px rgb(47, 164, 120), 5px 5px rgb(47, 164, 121), 6px 6px rgb(48, 165, 121), 7px 7px rgb(48, 166, 122), 8px 8px rgb(48, 166, 122), 9px 9px rgb(48, 167, 122), 10px 10px rgb(48, 167, 123), 11px 11px rgb(48, 168, 123), 12px 12px rgb(49, 168, 124), 13px 13px rgb(49, 169, 124), 14px 14px rgb(49, 170, 125), 15px 15px rgb(49, 170, 125), 16px 16px rgb(49, 171, 125), 17px 17px rgb(49, 171, 126), 18px 18px rgb(50, 172, 126), 19px 19px rgb(50, 172, 127), 20px 20px rgb(50, 173, 127), 21px 21px rgb(50, 174, 128), 22px 22px rgb(50, 174, 128), 23px 23px rgb(50, 175, 128), 24px 24px rgb(51, 175, 129), 25px 25px rgb(51, 176, 129), 26px 26px rgb(51, 176, 130), 27px 27px rgb(51, 177, 130), 28px 28px rgb(51, 178, 131), 29px 29px rgb(51, 178, 131), 30px 30px rgb(52, 179, 131), 31px 31px rgb(52, 179, 132), 32px 32px rgb(52, 180, 132), 33px 33px rgb(52, 180, 133), 34px 34px rgb(52, 181, 133), 35px 35px rgb(53, 182, 134), 36px 36px rgb(53, 182, 134), 37px 37px rgb(53, 183, 134), 38px 38px rgb(53, 183, 135), 39px 39px rgb(53, 184, 135), 40px 40px rgb(53, 184, 136), 41px 41px rgb(54, 185, 136), 42px 42px rgb(54, 186, 137), 43px 43px rgb(54, 186, 137), 44px 44px rgb(54, 187, 137), 45px 45px rgb(54, 187, 138), 46px 46px rgb(54, 188, 138), 47px 47px rgb(55, 188, 139), 48px 48px rgb(55, 189, 139), 49px 49px rgb(55, 190, 140), 50px 50px rgb(55, 190, 140), 51px 51px rgb(55, 191, 140), 52px 52px rgb(55, 191, 141), 53px 53px rgb(56, 192, 141), 54px 54px rgb(56, 192, 142), 55px 55px rgb(56, 193, 142), 56px 56px rgb(56, 194, 143), 57px 57px rgb(56, 194, 143), 58px 58px rgb(56, 195, 143), 59px 59px rgb(57, 195, 144), 60px 60px rgb(57, 196, 144), 61px 61px rgb(57, 196, 145), 62px 62px rgb(57, 197, 145), 63px 63px rgb(57, 198, 146), 64px 64px rgb(57, 198, 146), 65px 65px rgb(58, 199, 146), 66px 66px rgb(58, 199, 147), 67px 67px rgb(58, 200, 147), 68px 68px rgb(58, 200, 148), 69px 69px rgb(58, 201, 148), 70px 70px rgb(59, 202, 149);

    background-color: rgb(59, 202, 149);
}

.shape-3 {
    text-shadow: 1px 1px rgb(21, 150, 125), 2px 2px rgb(21, 151, 125), 3px 3px rgb(21, 151, 126), 4px 4px rgb(21, 152, 126), 5px 5px rgb(21, 152, 127), 6px 6px rgb(21, 153, 127), 7px 7px rgb(21, 153, 128), 8px 8px rgb(21, 154, 128), 9px 9px rgb(21, 154, 128), 10px 10px rgb(21, 155, 129), 11px 11px rgb(21, 155, 129), 12px 12px rgb(21, 156, 130), 13px 13px rgb(21, 157, 130), 14px 14px rgb(22, 157, 131), 15px 15px rgb(22, 158, 131), 16px 16px rgb(22, 158, 132), 17px 17px rgb(22, 159, 132), 18px 18px rgb(22, 159, 132), 19px 19px rgb(22, 160, 133), 20px 20px rgb(22, 160, 133), 21px 21px rgb(22, 161, 134), 22px 22px rgb(22, 161, 134), 23px 23px rgb(22, 162, 135), 24px 24px rgb(22, 163, 135), 25px 25px rgb(22, 163, 136), 26px 26px rgb(22, 164, 136), 27px 27px rgb(22, 164, 136), 28px 28px rgb(23, 165, 137), 29px 29px rgb(23, 165, 137), 30px 30px rgb(23, 166, 138), 31px 31px rgb(23, 166, 138), 32px 32px rgb(23, 167, 139), 33px 33px rgb(23, 167, 139), 34px 34px rgb(23, 168, 140), 35px 35px rgb(23, 169, 140), 36px 36px rgb(23, 169, 140), 37px 37px rgb(23, 170, 141), 38px 38px rgb(23, 170, 141), 39px 39px rgb(23, 171, 142), 40px 40px rgb(23, 171, 142), 41px 41px rgb(23, 172, 143), 42px 42px rgb(24, 172, 143), 43px 43px rgb(24, 173, 144), 44px 44px rgb(24, 173, 144), 45px 45px rgb(24, 174, 144), 46px 46px rgb(24, 174, 145), 47px 47px rgb(24, 175, 145), 48px 48px rgb(24, 176, 146), 49px 49px rgb(24, 176, 146), 50px 50px rgb(24, 177, 147), 51px 51px rgb(24, 177, 147), 52px 52px rgb(24, 178, 148), 53px 53px rgb(24, 178, 148), 54px 54px rgb(24, 179, 148), 55px 55px rgb(24, 179, 149), 56px 56px rgb(25, 180, 149), 57px 57px rgb(25, 180, 150), 58px 58px rgb(25, 181, 150), 59px 59px rgb(25, 182, 151), 60px 60px rgb(25, 182, 151), 61px 61px rgb(25, 183, 152), 62px 62px rgb(25, 183, 152), 63px 63px rgb(25, 184, 152), 64px 64px rgb(25, 184, 153), 65px 65px rgb(25, 185, 153), 66px 66px rgb(25, 185, 154), 67px 67px rgb(25, 186, 154), 68px 68px rgb(25, 186, 155), 69px 69px rgb(25, 187, 155), 70px 70px rgb(26, 188, 156);

    -moz-text-shadow: 1px 1px rgb(21, 150, 125), 2px 2px rgb(21, 151, 125), 3px 3px rgb(21, 151, 126), 4px 4px rgb(21, 152, 126), 5px 5px rgb(21, 152, 127), 6px 6px rgb(21, 153, 127), 7px 7px rgb(21, 153, 128), 8px 8px rgb(21, 154, 128), 9px 9px rgb(21, 154, 128), 10px 10px rgb(21, 155, 129), 11px 11px rgb(21, 155, 129), 12px 12px rgb(21, 156, 130), 13px 13px rgb(21, 157, 130), 14px 14px rgb(22, 157, 131), 15px 15px rgb(22, 158, 131), 16px 16px rgb(22, 158, 132), 17px 17px rgb(22, 159, 132), 18px 18px rgb(22, 159, 132), 19px 19px rgb(22, 160, 133), 20px 20px rgb(22, 160, 133), 21px 21px rgb(22, 161, 134), 22px 22px rgb(22, 161, 134), 23px 23px rgb(22, 162, 135), 24px 24px rgb(22, 163, 135), 25px 25px rgb(22, 163, 136), 26px 26px rgb(22, 164, 136), 27px 27px rgb(22, 164, 136), 28px 28px rgb(23, 165, 137), 29px 29px rgb(23, 165, 137), 30px 30px rgb(23, 166, 138), 31px 31px rgb(23, 166, 138), 32px 32px rgb(23, 167, 139), 33px 33px rgb(23, 167, 139), 34px 34px rgb(23, 168, 140), 35px 35px rgb(23, 169, 140), 36px 36px rgb(23, 169, 140), 37px 37px rgb(23, 170, 141), 38px 38px rgb(23, 170, 141), 39px 39px rgb(23, 171, 142), 40px 40px rgb(23, 171, 142), 41px 41px rgb(23, 172, 143), 42px 42px rgb(24, 172, 143), 43px 43px rgb(24, 173, 144), 44px 44px rgb(24, 173, 144), 45px 45px rgb(24, 174, 144), 46px 46px rgb(24, 174, 145), 47px 47px rgb(24, 175, 145), 48px 48px rgb(24, 176, 146), 49px 49px rgb(24, 176, 146), 50px 50px rgb(24, 177, 147), 51px 51px rgb(24, 177, 147), 52px 52px rgb(24, 178, 148), 53px 53px rgb(24, 178, 148), 54px 54px rgb(24, 179, 148), 55px 55px rgb(24, 179, 149), 56px 56px rgb(25, 180, 149), 57px 57px rgb(25, 180, 150), 58px 58px rgb(25, 181, 150), 59px 59px rgb(25, 182, 151), 60px 60px rgb(25, 182, 151), 61px 61px rgb(25, 183, 152), 62px 62px rgb(25, 183, 152), 63px 63px rgb(25, 184, 152), 64px 64px rgb(25, 184, 153), 65px 65px rgb(25, 185, 153), 66px 66px rgb(25, 185, 154), 67px 67px rgb(25, 186, 154), 68px 68px rgb(25, 186, 155), 69px 69px rgb(25, 187, 155), 70px 70px rgb(26, 188, 156);

    -webkit-text-shadow: 1px 1px rgb(21, 150, 125), 2px 2px rgb(21, 151, 125), 3px 3px rgb(21, 151, 126), 4px 4px rgb(21, 152, 126), 5px 5px rgb(21, 152, 127), 6px 6px rgb(21, 153, 127), 7px 7px rgb(21, 153, 128), 8px 8px rgb(21, 154, 128), 9px 9px rgb(21, 154, 128), 10px 10px rgb(21, 155, 129), 11px 11px rgb(21, 155, 129), 12px 12px rgb(21, 156, 130), 13px 13px rgb(21, 157, 130), 14px 14px rgb(22, 157, 131), 15px 15px rgb(22, 158, 131), 16px 16px rgb(22, 158, 132), 17px 17px rgb(22, 159, 132), 18px 18px rgb(22, 159, 132), 19px 19px rgb(22, 160, 133), 20px 20px rgb(22, 160, 133), 21px 21px rgb(22, 161, 134), 22px 22px rgb(22, 161, 134), 23px 23px rgb(22, 162, 135), 24px 24px rgb(22, 163, 135), 25px 25px rgb(22, 163, 136), 26px 26px rgb(22, 164, 136), 27px 27px rgb(22, 164, 136), 28px 28px rgb(23, 165, 137), 29px 29px rgb(23, 165, 137), 30px 30px rgb(23, 166, 138), 31px 31px rgb(23, 166, 138), 32px 32px rgb(23, 167, 139), 33px 33px rgb(23, 167, 139), 34px 34px rgb(23, 168, 140), 35px 35px rgb(23, 169, 140), 36px 36px rgb(23, 169, 140), 37px 37px rgb(23, 170, 141), 38px 38px rgb(23, 170, 141), 39px 39px rgb(23, 171, 142), 40px 40px rgb(23, 171, 142), 41px 41px rgb(23, 172, 143), 42px 42px rgb(24, 172, 143), 43px 43px rgb(24, 173, 144), 44px 44px rgb(24, 173, 144), 45px 45px rgb(24, 174, 144), 46px 46px rgb(24, 174, 145), 47px 47px rgb(24, 175, 145), 48px 48px rgb(24, 176, 146), 49px 49px rgb(24, 176, 146), 50px 50px rgb(24, 177, 147), 51px 51px rgb(24, 177, 147), 52px 52px rgb(24, 178, 148), 53px 53px rgb(24, 178, 148), 54px 54px rgb(24, 179, 148), 55px 55px rgb(24, 179, 149), 56px 56px rgb(25, 180, 149), 57px 57px rgb(25, 180, 150), 58px 58px rgb(25, 181, 150), 59px 59px rgb(25, 182, 151), 60px 60px rgb(25, 182, 151), 61px 61px rgb(25, 183, 152), 62px 62px rgb(25, 183, 152), 63px 63px rgb(25, 184, 152), 64px 64px rgb(25, 184, 153), 65px 65px rgb(25, 185, 153), 66px 66px rgb(25, 185, 154), 67px 67px rgb(25, 186, 154), 68px 68px rgb(25, 186, 155), 69px 69px rgb(25, 187, 155), 70px 70px rgb(26, 188, 156);

    background-color: rgb(26, 188, 156);
}

.shape-4 {
    text-shadow: 1px 1px rgb(42, 122, 175), 2px 2px rgb(42, 122, 176), 3px 3px rgb(42, 123, 176), 4px 4px rgb(42, 123, 177), 5px 5px rgb(42, 124, 178), 6px 6px rgb(42, 124, 178), 7px 7px rgb(43, 125, 179), 8px 8px rgb(43, 125, 180), 9px 9px rgb(43, 125, 180), 10px 10px rgb(43, 126, 181), 11px 11px rgb(43, 126, 181), 12px 12px rgb(43, 127, 182), 13px 13px rgb(43, 127, 183), 14px 14px rgb(44, 128, 183), 15px 15px rgb(44, 128, 184), 16px 16px rgb(44, 128, 185), 17px 17px rgb(44, 129, 185), 18px 18px rgb(44, 129, 186), 19px 19px rgb(44, 130, 186), 20px 20px rgb(44, 130, 187), 21px 21px rgb(45, 131, 188), 22px 22px rgb(45, 131, 188), 23px 23px rgb(45, 131, 189), 24px 24px rgb(45, 132, 190), 25px 25px rgb(45, 132, 190), 26px 26px rgb(45, 133, 191), 27px 27px rgb(45, 133, 191), 28px 28px rgb(46, 134, 192), 29px 29px rgb(46, 134, 193), 30px 30px rgb(46, 134, 193), 31px 31px rgb(46, 135, 194), 32px 32px rgb(46, 135, 195), 33px 33px rgb(46, 136, 195), 34px 34px rgb(46, 136, 196), 35px 35px rgb(47, 137, 197), 36px 36px rgb(47, 137, 197), 37px 37px rgb(47, 137, 198), 38px 38px rgb(47, 138, 198), 39px 39px rgb(47, 138, 199), 40px 40px rgb(47, 139, 200), 41px 41px rgb(47, 139, 200), 42px 42px rgb(48, 140, 201), 43px 43px rgb(48, 140, 202), 44px 44px rgb(48, 140, 202), 45px 45px rgb(48, 141, 203), 46px 46px rgb(48, 141, 203), 47px 47px rgb(48, 142, 204), 48px 48px rgb(48, 142, 205), 49px 49px rgb(49, 143, 205), 50px 50px rgb(49, 143, 206), 51px 51px rgb(49, 143, 207), 52px 52px rgb(49, 144, 207), 53px 53px rgb(49, 144, 208), 54px 54px rgb(49, 145, 208), 55px 55px rgb(49, 145, 209), 56px 56px rgb(50, 146, 210), 57px 57px rgb(50, 146, 210), 58px 58px rgb(50, 146, 211), 59px 59px rgb(50, 147, 212), 60px 60px rgb(50, 147, 212), 61px 61px rgb(50, 148, 213), 62px 62px rgb(50, 148, 213), 63px 63px rgb(51, 149, 214), 64px 64px rgb(51, 149, 215), 65px 65px rgb(51, 149, 215), 66px 66px rgb(51, 150, 216), 67px 67px rgb(51, 150, 217), 68px 68px rgb(51, 151, 217), 69px 69px rgb(51, 151, 218), 70px 70px rgb(52, 152, 219);

    -moz-text-shadow: 1px 1px rgb(42, 122, 175), 2px 2px rgb(42, 122, 176), 3px 3px rgb(42, 123, 176), 4px 4px rgb(42, 123, 177), 5px 5px rgb(42, 124, 178), 6px 6px rgb(42, 124, 178), 7px 7px rgb(43, 125, 179), 8px 8px rgb(43, 125, 180), 9px 9px rgb(43, 125, 180), 10px 10px rgb(43, 126, 181), 11px 11px rgb(43, 126, 181), 12px 12px rgb(43, 127, 182), 13px 13px rgb(43, 127, 183), 14px 14px rgb(44, 128, 183), 15px 15px rgb(44, 128, 184), 16px 16px rgb(44, 128, 185), 17px 17px rgb(44, 129, 185), 18px 18px rgb(44, 129, 186), 19px 19px rgb(44, 130, 186), 20px 20px rgb(44, 130, 187), 21px 21px rgb(45, 131, 188), 22px 22px rgb(45, 131, 188), 23px 23px rgb(45, 131, 189), 24px 24px rgb(45, 132, 190), 25px 25px rgb(45, 132, 190), 26px 26px rgb(45, 133, 191), 27px 27px rgb(45, 133, 191), 28px 28px rgb(46, 134, 192), 29px 29px rgb(46, 134, 193), 30px 30px rgb(46, 134, 193), 31px 31px rgb(46, 135, 194), 32px 32px rgb(46, 135, 195), 33px 33px rgb(46, 136, 195), 34px 34px rgb(46, 136, 196), 35px 35px rgb(47, 137, 197), 36px 36px rgb(47, 137, 197), 37px 37px rgb(47, 137, 198), 38px 38px rgb(47, 138, 198), 39px 39px rgb(47, 138, 199), 40px 40px rgb(47, 139, 200), 41px 41px rgb(47, 139, 200), 42px 42px rgb(48, 140, 201), 43px 43px rgb(48, 140, 202), 44px 44px rgb(48, 140, 202), 45px 45px rgb(48, 141, 203), 46px 46px rgb(48, 141, 203), 47px 47px rgb(48, 142, 204), 48px 48px rgb(48, 142, 205), 49px 49px rgb(49, 143, 205), 50px 50px rgb(49, 143, 206), 51px 51px rgb(49, 143, 207), 52px 52px rgb(49, 144, 207), 53px 53px rgb(49, 144, 208), 54px 54px rgb(49, 145, 208), 55px 55px rgb(49, 145, 209), 56px 56px rgb(50, 146, 210), 57px 57px rgb(50, 146, 210), 58px 58px rgb(50, 146, 211), 59px 59px rgb(50, 147, 212), 60px 60px rgb(50, 147, 212), 61px 61px rgb(50, 148, 213), 62px 62px rgb(50, 148, 213), 63px 63px rgb(51, 149, 214), 64px 64px rgb(51, 149, 215), 65px 65px rgb(51, 149, 215), 66px 66px rgb(51, 150, 216), 67px 67px rgb(51, 150, 217), 68px 68px rgb(51, 151, 217), 69px 69px rgb(51, 151, 218), 70px 70px rgb(52, 152, 219);

    -webkit-text-shadow: 1px 1px rgb(42, 122, 175), 2px 2px rgb(42, 122, 176), 3px 3px rgb(42, 123, 176), 4px 4px rgb(42, 123, 177), 5px 5px rgb(42, 124, 178), 6px 6px rgb(42, 124, 178), 7px 7px rgb(43, 125, 179), 8px 8px rgb(43, 125, 180), 9px 9px rgb(43, 125, 180), 10px 10px rgb(43, 126, 181), 11px 11px rgb(43, 126, 181), 12px 12px rgb(43, 127, 182), 13px 13px rgb(43, 127, 183), 14px 14px rgb(44, 128, 183), 15px 15px rgb(44, 128, 184), 16px 16px rgb(44, 128, 185), 17px 17px rgb(44, 129, 185), 18px 18px rgb(44, 129, 186), 19px 19px rgb(44, 130, 186), 20px 20px rgb(44, 130, 187), 21px 21px rgb(45, 131, 188), 22px 22px rgb(45, 131, 188), 23px 23px rgb(45, 131, 189), 24px 24px rgb(45, 132, 190), 25px 25px rgb(45, 132, 190), 26px 26px rgb(45, 133, 191), 27px 27px rgb(45, 133, 191), 28px 28px rgb(46, 134, 192), 29px 29px rgb(46, 134, 193), 30px 30px rgb(46, 134, 193), 31px 31px rgb(46, 135, 194), 32px 32px rgb(46, 135, 195), 33px 33px rgb(46, 136, 195), 34px 34px rgb(46, 136, 196), 35px 35px rgb(47, 137, 197), 36px 36px rgb(47, 137, 197), 37px 37px rgb(47, 137, 198), 38px 38px rgb(47, 138, 198), 39px 39px rgb(47, 138, 199), 40px 40px rgb(47, 139, 200), 41px 41px rgb(47, 139, 200), 42px 42px rgb(48, 140, 201), 43px 43px rgb(48, 140, 202), 44px 44px rgb(48, 140, 202), 45px 45px rgb(48, 141, 203), 46px 46px rgb(48, 141, 203), 47px 47px rgb(48, 142, 204), 48px 48px rgb(48, 142, 205), 49px 49px rgb(49, 143, 205), 50px 50px rgb(49, 143, 206), 51px 51px rgb(49, 143, 207), 52px 52px rgb(49, 144, 207), 53px 53px rgb(49, 144, 208), 54px 54px rgb(49, 145, 208), 55px 55px rgb(49, 145, 209), 56px 56px rgb(50, 146, 210), 57px 57px rgb(50, 146, 210), 58px 58px rgb(50, 146, 211), 59px 59px rgb(50, 147, 212), 60px 60px rgb(50, 147, 212), 61px 61px rgb(50, 148, 213), 62px 62px rgb(50, 148, 213), 63px 63px rgb(51, 149, 214), 64px 64px rgb(51, 149, 215), 65px 65px rgb(51, 149, 215), 66px 66px rgb(51, 150, 216), 67px 67px rgb(51, 150, 217), 68px 68px rgb(51, 151, 217), 69px 69px rgb(51, 151, 218), 70px 70px rgb(52, 152, 219);

    background-color: rgb(52, 152, 219);
}

.shape-5 {
    text-shadow: 1px 1px rgb(124, 71, 146), 2px 2px rgb(124, 71, 147), 3px 3px rgb(125, 71, 147), 4px 4px rgb(125, 72, 148), 5px 5px rgb(126, 72, 148), 6px 6px rgb(126, 72, 149), 7px 7px rgb(127, 72, 149), 8px 8px rgb(127, 73, 150), 9px 9px rgb(127, 73, 150), 10px 10px rgb(128, 73, 151), 11px 11px rgb(128, 73, 151), 12px 12px rgb(129, 74, 152), 13px 13px rgb(129, 74, 152), 14px 14px rgb(130, 74, 153), 15px 15px rgb(130, 74, 153), 16px 16px rgb(131, 75, 154), 17px 17px rgb(131, 75, 154), 18px 18px rgb(131, 75, 155), 19px 19px rgb(132, 75, 155), 20px 20px rgb(132, 76, 156), 21px 21px rgb(133, 76, 156), 22px 22px rgb(133, 76, 157), 23px 23px rgb(134, 76, 157), 24px 24px rgb(134, 77, 158), 25px 25px rgb(135, 77, 158), 26px 26px rgb(135, 77, 159), 27px 27px rgb(135, 77, 159), 28px 28px rgb(136, 78, 160), 29px 29px rgb(136, 78, 160), 30px 30px rgb(137, 78, 161), 31px 31px rgb(137, 78, 161), 32px 32px rgb(138, 79, 162), 33px 33px rgb(138, 79, 162), 34px 34px rgb(139, 79, 163), 35px 35px rgb(139, 80, 164), 36px 36px rgb(139, 80, 164), 37px 37px rgb(140, 80, 165), 38px 38px rgb(140, 80, 165), 39px 39px rgb(141, 81, 166), 40px 40px rgb(141, 81, 166), 41px 41px rgb(142, 81, 167), 42px 42px rgb(142, 81, 167), 43px 43px rgb(143, 82, 168), 44px 44px rgb(143, 82, 168), 45px 45px rgb(143, 82, 169), 46px 46px rgb(144, 82, 169), 47px 47px rgb(144, 83, 170), 48px 48px rgb(145, 83, 170), 49px 49px rgb(145, 83, 171), 50px 50px rgb(146, 83, 171), 51px 51px rgb(146, 84, 172), 52px 52px rgb(147, 84, 172), 53px 53px rgb(147, 84, 173), 54px 54px rgb(147, 84, 173), 55px 55px rgb(148, 85, 174), 56px 56px rgb(148, 85, 174), 57px 57px rgb(149, 85, 175), 58px 58px rgb(149, 85, 175), 59px 59px rgb(150, 86, 176), 60px 60px rgb(150, 86, 176), 61px 61px rgb(151, 86, 177), 62px 62px rgb(151, 86, 177), 63px 63px rgb(151, 87, 178), 64px 64px rgb(152, 87, 178), 65px 65px rgb(152, 87, 179), 66px 66px rgb(153, 87, 179), 67px 67px rgb(153, 88, 180), 68px 68px rgb(154, 88, 180), 69px 69px rgb(154, 88, 181), 70px 70px rgb(155, 89, 182);

    -moz-text-shadow: 1px 1px rgb(124, 71, 146), 2px 2px rgb(124, 71, 147), 3px 3px rgb(125, 71, 147), 4px 4px rgb(125, 72, 148), 5px 5px rgb(126, 72, 148), 6px 6px rgb(126, 72, 149), 7px 7px rgb(127, 72, 149), 8px 8px rgb(127, 73, 150), 9px 9px rgb(127, 73, 150), 10px 10px rgb(128, 73, 151), 11px 11px rgb(128, 73, 151), 12px 12px rgb(129, 74, 152), 13px 13px rgb(129, 74, 152), 14px 14px rgb(130, 74, 153), 15px 15px rgb(130, 74, 153), 16px 16px rgb(131, 75, 154), 17px 17px rgb(131, 75, 154), 18px 18px rgb(131, 75, 155), 19px 19px rgb(132, 75, 155), 20px 20px rgb(132, 76, 156), 21px 21px rgb(133, 76, 156), 22px 22px rgb(133, 76, 157), 23px 23px rgb(134, 76, 157), 24px 24px rgb(134, 77, 158), 25px 25px rgb(135, 77, 158), 26px 26px rgb(135, 77, 159), 27px 27px rgb(135, 77, 159), 28px 28px rgb(136, 78, 160), 29px 29px rgb(136, 78, 160), 30px 30px rgb(137, 78, 161), 31px 31px rgb(137, 78, 161), 32px 32px rgb(138, 79, 162), 33px 33px rgb(138, 79, 162), 34px 34px rgb(139, 79, 163), 35px 35px rgb(139, 80, 164), 36px 36px rgb(139, 80, 164), 37px 37px rgb(140, 80, 165), 38px 38px rgb(140, 80, 165), 39px 39px rgb(141, 81, 166), 40px 40px rgb(141, 81, 166), 41px 41px rgb(142, 81, 167), 42px 42px rgb(142, 81, 167), 43px 43px rgb(143, 82, 168), 44px 44px rgb(143, 82, 168), 45px 45px rgb(143, 82, 169), 46px 46px rgb(144, 82, 169), 47px 47px rgb(144, 83, 170), 48px 48px rgb(145, 83, 170), 49px 49px rgb(145, 83, 171), 50px 50px rgb(146, 83, 171), 51px 51px rgb(146, 84, 172), 52px 52px rgb(147, 84, 172), 53px 53px rgb(147, 84, 173), 54px 54px rgb(147, 84, 173), 55px 55px rgb(148, 85, 174), 56px 56px rgb(148, 85, 174), 57px 57px rgb(149, 85, 175), 58px 58px rgb(149, 85, 175), 59px 59px rgb(150, 86, 176), 60px 60px rgb(150, 86, 176), 61px 61px rgb(151, 86, 177), 62px 62px rgb(151, 86, 177), 63px 63px rgb(151, 87, 178), 64px 64px rgb(152, 87, 178), 65px 65px rgb(152, 87, 179), 66px 66px rgb(153, 87, 179), 67px 67px rgb(153, 88, 180), 68px 68px rgb(154, 88, 180), 69px 69px rgb(154, 88, 181), 70px 70px rgb(155, 89, 182);

    -webkit-text-shadow: 1px 1px rgb(124, 71, 146), 2px 2px rgb(124, 71, 147), 3px 3px rgb(125, 71, 147), 4px 4px rgb(125, 72, 148), 5px 5px rgb(126, 72, 148), 6px 6px rgb(126, 72, 149), 7px 7px rgb(127, 72, 149), 8px 8px rgb(127, 73, 150), 9px 9px rgb(127, 73, 150), 10px 10px rgb(128, 73, 151), 11px 11px rgb(128, 73, 151), 12px 12px rgb(129, 74, 152), 13px 13px rgb(129, 74, 152), 14px 14px rgb(130, 74, 153), 15px 15px rgb(130, 74, 153), 16px 16px rgb(131, 75, 154), 17px 17px rgb(131, 75, 154), 18px 18px rgb(131, 75, 155), 19px 19px rgb(132, 75, 155), 20px 20px rgb(132, 76, 156), 21px 21px rgb(133, 76, 156), 22px 22px rgb(133, 76, 157), 23px 23px rgb(134, 76, 157), 24px 24px rgb(134, 77, 158), 25px 25px rgb(135, 77, 158), 26px 26px rgb(135, 77, 159), 27px 27px rgb(135, 77, 159), 28px 28px rgb(136, 78, 160), 29px 29px rgb(136, 78, 160), 30px 30px rgb(137, 78, 161), 31px 31px rgb(137, 78, 161), 32px 32px rgb(138, 79, 162), 33px 33px rgb(138, 79, 162), 34px 34px rgb(139, 79, 163), 35px 35px rgb(139, 80, 164), 36px 36px rgb(139, 80, 164), 37px 37px rgb(140, 80, 165), 38px 38px rgb(140, 80, 165), 39px 39px rgb(141, 81, 166), 40px 40px rgb(141, 81, 166), 41px 41px rgb(142, 81, 167), 42px 42px rgb(142, 81, 167), 43px 43px rgb(143, 82, 168), 44px 44px rgb(143, 82, 168), 45px 45px rgb(143, 82, 169), 46px 46px rgb(144, 82, 169), 47px 47px rgb(144, 83, 170), 48px 48px rgb(145, 83, 170), 49px 49px rgb(145, 83, 171), 50px 50px rgb(146, 83, 171), 51px 51px rgb(146, 84, 172), 52px 52px rgb(147, 84, 172), 53px 53px rgb(147, 84, 173), 54px 54px rgb(147, 84, 173), 55px 55px rgb(148, 85, 174), 56px 56px rgb(148, 85, 174), 57px 57px rgb(149, 85, 175), 58px 58px rgb(149, 85, 175), 59px 59px rgb(150, 86, 176), 60px 60px rgb(150, 86, 176), 61px 61px rgb(151, 86, 177), 62px 62px rgb(151, 86, 177), 63px 63px rgb(151, 87, 178), 64px 64px rgb(152, 87, 178), 65px 65px rgb(152, 87, 179), 66px 66px rgb(153, 87, 179), 67px 67px rgb(153, 88, 180), 68px 68px rgb(154, 88, 180), 69px 69px rgb(154, 88, 181), 70px 70px rgb(155, 89, 182);

    background-color: rgb(155, 89, 182);
}

.shape-6 {
    text-shadow: 1px 1px rgb(185, 61, 48), 2px 2px rgb(186, 61, 48), 3px 3px rgb(186, 61, 48), 4px 4px rgb(187, 61, 48), 5px 5px rgb(188, 62, 48), 6px 6px rgb(188, 62, 49), 7px 7px rgb(189, 62, 49), 8px 8px rgb(190, 62, 49), 9px 9px rgb(190, 62, 49), 10px 10px rgb(191, 63, 49), 11px 11px rgb(192, 63, 49), 12px 12px rgb(192, 63, 50), 13px 13px rgb(193, 63, 50), 14px 14px rgb(194, 64, 50), 15px 15px rgb(194, 64, 50), 16px 16px rgb(195, 64, 50), 17px 17px rgb(196, 64, 50), 18px 18px rgb(196, 64, 51), 19px 19px rgb(197, 65, 51), 20px 20px rgb(198, 65, 51), 21px 21px rgb(198, 65, 51), 22px 22px rgb(199, 65, 51), 23px 23px rgb(200, 65, 51), 24px 24px rgb(200, 66, 52), 25px 25px rgb(201, 66, 52), 26px 26px rgb(202, 66, 52), 27px 27px rgb(202, 66, 52), 28px 28px rgb(203, 67, 52), 29px 29px rgb(204, 67, 52), 30px 30px rgb(204, 67, 53), 31px 31px rgb(205, 67, 53), 32px 32px rgb(206, 67, 53), 33px 33px rgb(206, 68, 53), 34px 34px rgb(207, 68, 53), 35px 35px rgb(208, 68, 54), 36px 36px rgb(208, 68, 54), 37px 37px rgb(209, 68, 54), 38px 38px rgb(209, 69, 54), 39px 39px rgb(210, 69, 54), 40px 40px rgb(211, 69, 54), 41px 41px rgb(211, 69, 55), 42px 42px rgb(212, 70, 55), 43px 43px rgb(213, 70, 55), 44px 44px rgb(213, 70, 55), 45px 45px rgb(214, 70, 55), 46px 46px rgb(215, 70, 55), 47px 47px rgb(215, 71, 56), 48px 48px rgb(216, 71, 56), 49px 49px rgb(217, 71, 56), 50px 50px rgb(217, 71, 56), 51px 51px rgb(218, 71, 56), 52px 52px rgb(219, 72, 56), 53px 53px rgb(219, 72, 57), 54px 54px rgb(220, 72, 57), 55px 55px rgb(221, 72, 57), 56px 56px rgb(221, 73, 57), 57px 57px rgb(222, 73, 57), 58px 58px rgb(223, 73, 57), 59px 59px rgb(223, 73, 58), 60px 60px rgb(224, 73, 58), 61px 61px rgb(225, 74, 58), 62px 62px rgb(225, 74, 58), 63px 63px rgb(226, 74, 58), 64px 64px rgb(227, 74, 58), 65px 65px rgb(227, 74, 59), 66px 66px rgb(228, 75, 59), 67px 67px rgb(229, 75, 59), 68px 68px rgb(229, 75, 59), 69px 69px rgb(230, 75, 59), 70px 70px rgb(231, 76, 60);

    -moz-text-shadow: 1px 1px rgb(185, 61, 48), 2px 2px rgb(186, 61, 48), 3px 3px rgb(186, 61, 48), 4px 4px rgb(187, 61, 48), 5px 5px rgb(188, 62, 48), 6px 6px rgb(188, 62, 49), 7px 7px rgb(189, 62, 49), 8px 8px rgb(190, 62, 49), 9px 9px rgb(190, 62, 49), 10px 10px rgb(191, 63, 49), 11px 11px rgb(192, 63, 49), 12px 12px rgb(192, 63, 50), 13px 13px rgb(193, 63, 50), 14px 14px rgb(194, 64, 50), 15px 15px rgb(194, 64, 50), 16px 16px rgb(195, 64, 50), 17px 17px rgb(196, 64, 50), 18px 18px rgb(196, 64, 51), 19px 19px rgb(197, 65, 51), 20px 20px rgb(198, 65, 51), 21px 21px rgb(198, 65, 51), 22px 22px rgb(199, 65, 51), 23px 23px rgb(200, 65, 51), 24px 24px rgb(200, 66, 52), 25px 25px rgb(201, 66, 52), 26px 26px rgb(202, 66, 52), 27px 27px rgb(202, 66, 52), 28px 28px rgb(203, 67, 52), 29px 29px rgb(204, 67, 52), 30px 30px rgb(204, 67, 53), 31px 31px rgb(205, 67, 53), 32px 32px rgb(206, 67, 53), 33px 33px rgb(206, 68, 53), 34px 34px rgb(207, 68, 53), 35px 35px rgb(208, 68, 54), 36px 36px rgb(208, 68, 54), 37px 37px rgb(209, 68, 54), 38px 38px rgb(209, 69, 54), 39px 39px rgb(210, 69, 54), 40px 40px rgb(211, 69, 54), 41px 41px rgb(211, 69, 55), 42px 42px rgb(212, 70, 55), 43px 43px rgb(213, 70, 55), 44px 44px rgb(213, 70, 55), 45px 45px rgb(214, 70, 55), 46px 46px rgb(215, 70, 55), 47px 47px rgb(215, 71, 56), 48px 48px rgb(216, 71, 56), 49px 49px rgb(217, 71, 56), 50px 50px rgb(217, 71, 56), 51px 51px rgb(218, 71, 56), 52px 52px rgb(219, 72, 56), 53px 53px rgb(219, 72, 57), 54px 54px rgb(220, 72, 57), 55px 55px rgb(221, 72, 57), 56px 56px rgb(221, 73, 57), 57px 57px rgb(222, 73, 57), 58px 58px rgb(223, 73, 57), 59px 59px rgb(223, 73, 58), 60px 60px rgb(224, 73, 58), 61px 61px rgb(225, 74, 58), 62px 62px rgb(225, 74, 58), 63px 63px rgb(226, 74, 58), 64px 64px rgb(227, 74, 58), 65px 65px rgb(227, 74, 59), 66px 66px rgb(228, 75, 59), 67px 67px rgb(229, 75, 59), 68px 68px rgb(229, 75, 59), 69px 69px rgb(230, 75, 59), 70px 70px rgb(231, 76, 60);

    -webkit-text-shadow: 1px 1px rgb(185, 61, 48), 2px 2px rgb(186, 61, 48), 3px 3px rgb(186, 61, 48), 4px 4px rgb(187, 61, 48), 5px 5px rgb(188, 62, 48), 6px 6px rgb(188, 62, 49), 7px 7px rgb(189, 62, 49), 8px 8px rgb(190, 62, 49), 9px 9px rgb(190, 62, 49), 10px 10px rgb(191, 63, 49), 11px 11px rgb(192, 63, 49), 12px 12px rgb(192, 63, 50), 13px 13px rgb(193, 63, 50), 14px 14px rgb(194, 64, 50), 15px 15px rgb(194, 64, 50), 16px 16px rgb(195, 64, 50), 17px 17px rgb(196, 64, 50), 18px 18px rgb(196, 64, 51), 19px 19px rgb(197, 65, 51), 20px 20px rgb(198, 65, 51), 21px 21px rgb(198, 65, 51), 22px 22px rgb(199, 65, 51), 23px 23px rgb(200, 65, 51), 24px 24px rgb(200, 66, 52), 25px 25px rgb(201, 66, 52), 26px 26px rgb(202, 66, 52), 27px 27px rgb(202, 66, 52), 28px 28px rgb(203, 67, 52), 29px 29px rgb(204, 67, 52), 30px 30px rgb(204, 67, 53), 31px 31px rgb(205, 67, 53), 32px 32px rgb(206, 67, 53), 33px 33px rgb(206, 68, 53), 34px 34px rgb(207, 68, 53), 35px 35px rgb(208, 68, 54), 36px 36px rgb(208, 68, 54), 37px 37px rgb(209, 68, 54), 38px 38px rgb(209, 69, 54), 39px 39px rgb(210, 69, 54), 40px 40px rgb(211, 69, 54), 41px 41px rgb(211, 69, 55), 42px 42px rgb(212, 70, 55), 43px 43px rgb(213, 70, 55), 44px 44px rgb(213, 70, 55), 45px 45px rgb(214, 70, 55), 46px 46px rgb(215, 70, 55), 47px 47px rgb(215, 71, 56), 48px 48px rgb(216, 71, 56), 49px 49px rgb(217, 71, 56), 50px 50px rgb(217, 71, 56), 51px 51px rgb(218, 71, 56), 52px 52px rgb(219, 72, 56), 53px 53px rgb(219, 72, 57), 54px 54px rgb(220, 72, 57), 55px 55px rgb(221, 72, 57), 56px 56px rgb(221, 73, 57), 57px 57px rgb(222, 73, 57), 58px 58px rgb(223, 73, 57), 59px 59px rgb(223, 73, 58), 60px 60px rgb(224, 73, 58), 61px 61px rgb(225, 74, 58), 62px 62px rgb(225, 74, 58), 63px 63px rgb(226, 74, 58), 64px 64px rgb(227, 74, 58), 65px 65px rgb(227, 74, 59), 66px 66px rgb(228, 75, 59), 67px 67px rgb(229, 75, 59), 68px 68px rgb(229, 75, 59), 69px 69px rgb(230, 75, 59), 70px 70px rgb(231, 76, 60);

    background-color: rgb(231, 76, 60);
}

.shape-7 {
    text-shadow: 1px 1px rgb(119, 132, 133), 2px 2px rgb(119, 132, 133), 3px 3px rgb(120, 133, 134), 4px 4px rgb(120, 133, 134), 5px 5px rgb(121, 134, 135), 6px 6px rgb(121, 134, 135), 7px 7px rgb(122, 135, 136), 8px 8px rgb(122, 135, 136), 9px 9px rgb(122, 136, 137), 10px 10px rgb(123, 136, 137), 11px 11px rgb(123, 137, 138), 12px 12px rgb(124, 137, 138), 13px 13px rgb(124, 138, 139), 14px 14px rgb(125, 138, 139), 15px 15px rgb(125, 139, 140), 16px 16px rgb(125, 139, 140), 17px 17px rgb(126, 140, 141), 18px 18px rgb(126, 140, 141), 19px 19px rgb(127, 140, 141), 20px 20px rgb(127, 141, 142), 21px 21px rgb(128, 141, 142), 22px 22px rgb(128, 142, 143), 23px 23px rgb(128, 142, 143), 24px 24px rgb(129, 143, 144), 25px 25px rgb(129, 143, 144), 26px 26px rgb(130, 144, 145), 27px 27px rgb(130, 144, 145), 28px 28px rgb(131, 145, 146), 29px 29px rgb(131, 145, 146), 30px 30px rgb(131, 146, 147), 31px 31px rgb(132, 146, 147), 32px 32px rgb(132, 147, 148), 33px 33px rgb(133, 147, 148), 34px 34px rgb(133, 148, 149), 35px 35px rgb(134, 148, 149), 36px 36px rgb(134, 148, 149), 37px 37px rgb(134, 149, 150), 38px 38px rgb(135, 149, 150), 39px 39px rgb(135, 150, 151), 40px 40px rgb(136, 150, 151), 41px 41px rgb(136, 151, 152), 42px 42px rgb(137, 151, 152), 43px 43px rgb(137, 152, 153), 44px 44px rgb(137, 152, 153), 45px 45px rgb(138, 153, 154), 46px 46px rgb(138, 153, 154), 47px 47px rgb(139, 154, 155), 48px 48px rgb(139, 154, 155), 49px 49px rgb(140, 155, 156), 50px 50px rgb(140, 155, 156), 51px 51px rgb(140, 156, 157), 52px 52px rgb(141, 156, 157), 53px 53px rgb(141, 156, 157), 54px 54px rgb(142, 157, 158), 55px 55px rgb(142, 157, 158), 56px 56px rgb(143, 158, 159), 57px 57px rgb(143, 158, 159), 58px 58px rgb(143, 159, 160), 59px 59px rgb(144, 159, 160), 60px 60px rgb(144, 160, 161), 61px 61px rgb(145, 160, 161), 62px 62px rgb(145, 161, 162), 63px 63px rgb(146, 161, 162), 64px 64px rgb(146, 162, 163), 65px 65px rgb(146, 162, 163), 66px 66px rgb(147, 163, 164), 67px 67px rgb(147, 163, 164), 68px 68px rgb(148, 164, 165), 69px 69px rgb(148, 164, 165), 70px 70px rgb(149, 165, 166);

    -moz-text-shadow: 1px 1px rgb(119, 132, 133), 2px 2px rgb(119, 132, 133), 3px 3px rgb(120, 133, 134), 4px 4px rgb(120, 133, 134), 5px 5px rgb(121, 134, 135), 6px 6px rgb(121, 134, 135), 7px 7px rgb(122, 135, 136), 8px 8px rgb(122, 135, 136), 9px 9px rgb(122, 136, 137), 10px 10px rgb(123, 136, 137), 11px 11px rgb(123, 137, 138), 12px 12px rgb(124, 137, 138), 13px 13px rgb(124, 138, 139), 14px 14px rgb(125, 138, 139), 15px 15px rgb(125, 139, 140), 16px 16px rgb(125, 139, 140), 17px 17px rgb(126, 140, 141), 18px 18px rgb(126, 140, 141), 19px 19px rgb(127, 140, 141), 20px 20px rgb(127, 141, 142), 21px 21px rgb(128, 141, 142), 22px 22px rgb(128, 142, 143), 23px 23px rgb(128, 142, 143), 24px 24px rgb(129, 143, 144), 25px 25px rgb(129, 143, 144), 26px 26px rgb(130, 144, 145), 27px 27px rgb(130, 144, 145), 28px 28px rgb(131, 145, 146), 29px 29px rgb(131, 145, 146), 30px 30px rgb(131, 146, 147), 31px 31px rgb(132, 146, 147), 32px 32px rgb(132, 147, 148), 33px 33px rgb(133, 147, 148), 34px 34px rgb(133, 148, 149), 35px 35px rgb(134, 148, 149), 36px 36px rgb(134, 148, 149), 37px 37px rgb(134, 149, 150), 38px 38px rgb(135, 149, 150), 39px 39px rgb(135, 150, 151), 40px 40px rgb(136, 150, 151), 41px 41px rgb(136, 151, 152), 42px 42px rgb(137, 151, 152), 43px 43px rgb(137, 152, 153), 44px 44px rgb(137, 152, 153), 45px 45px rgb(138, 153, 154), 46px 46px rgb(138, 153, 154), 47px 47px rgb(139, 154, 155), 48px 48px rgb(139, 154, 155), 49px 49px rgb(140, 155, 156), 50px 50px rgb(140, 155, 156), 51px 51px rgb(140, 156, 157), 52px 52px rgb(141, 156, 157), 53px 53px rgb(141, 156, 157), 54px 54px rgb(142, 157, 158), 55px 55px rgb(142, 157, 158), 56px 56px rgb(143, 158, 159), 57px 57px rgb(143, 158, 159), 58px 58px rgb(143, 159, 160), 59px 59px rgb(144, 159, 160), 60px 60px rgb(144, 160, 161), 61px 61px rgb(145, 160, 161), 62px 62px rgb(145, 161, 162), 63px 63px rgb(146, 161, 162), 64px 64px rgb(146, 162, 163), 65px 65px rgb(146, 162, 163), 66px 66px rgb(147, 163, 164), 67px 67px rgb(147, 163, 164), 68px 68px rgb(148, 164, 165), 69px 69px rgb(148, 164, 165), 70px 70px rgb(149, 165, 166);

    -webkit-text-shadow: 1px 1px rgb(119, 132, 133), 2px 2px rgb(119, 132, 133), 3px 3px rgb(120, 133, 134), 4px 4px rgb(120, 133, 134), 5px 5px rgb(121, 134, 135), 6px 6px rgb(121, 134, 135), 7px 7px rgb(122, 135, 136), 8px 8px rgb(122, 135, 136), 9px 9px rgb(122, 136, 137), 10px 10px rgb(123, 136, 137), 11px 11px rgb(123, 137, 138), 12px 12px rgb(124, 137, 138), 13px 13px rgb(124, 138, 139), 14px 14px rgb(125, 138, 139), 15px 15px rgb(125, 139, 140), 16px 16px rgb(125, 139, 140), 17px 17px rgb(126, 140, 141), 18px 18px rgb(126, 140, 141), 19px 19px rgb(127, 140, 141), 20px 20px rgb(127, 141, 142), 21px 21px rgb(128, 141, 142), 22px 22px rgb(128, 142, 143), 23px 23px rgb(128, 142, 143), 24px 24px rgb(129, 143, 144), 25px 25px rgb(129, 143, 144), 26px 26px rgb(130, 144, 145), 27px 27px rgb(130, 144, 145), 28px 28px rgb(131, 145, 146), 29px 29px rgb(131, 145, 146), 30px 30px rgb(131, 146, 147), 31px 31px rgb(132, 146, 147), 32px 32px rgb(132, 147, 148), 33px 33px rgb(133, 147, 148), 34px 34px rgb(133, 148, 149), 35px 35px rgb(134, 148, 149), 36px 36px rgb(134, 148, 149), 37px 37px rgb(134, 149, 150), 38px 38px rgb(135, 149, 150), 39px 39px rgb(135, 150, 151), 40px 40px rgb(136, 150, 151), 41px 41px rgb(136, 151, 152), 42px 42px rgb(137, 151, 152), 43px 43px rgb(137, 152, 153), 44px 44px rgb(137, 152, 153), 45px 45px rgb(138, 153, 154), 46px 46px rgb(138, 153, 154), 47px 47px rgb(139, 154, 155), 48px 48px rgb(139, 154, 155), 49px 49px rgb(140, 155, 156), 50px 50px rgb(140, 155, 156), 51px 51px rgb(140, 156, 157), 52px 52px rgb(141, 156, 157), 53px 53px rgb(141, 156, 157), 54px 54px rgb(142, 157, 158), 55px 55px rgb(142, 157, 158), 56px 56px rgb(143, 158, 159), 57px 57px rgb(143, 158, 159), 58px 58px rgb(143, 159, 160), 59px 59px rgb(144, 159, 160), 60px 60px rgb(144, 160, 161), 61px 61px rgb(145, 160, 161), 62px 62px rgb(145, 161, 162), 63px 63px rgb(146, 161, 162), 64px 64px rgb(146, 162, 163), 65px 65px rgb(146, 162, 163), 66px 66px rgb(147, 163, 164), 67px 67px rgb(147, 163, 164), 68px 68px rgb(148, 164, 165), 69px 69px rgb(148, 164, 165), 70px 70px rgb(149, 165, 166);

    background-color: rgb(149, 165, 166);
}

.shape-8 {
    text-shadow: 1px 1px rgb(198, 145, 33), 2px 2px rgb(199, 146, 33), 3px 3px rgb(200, 146, 33), 4px 4px rgb(200, 147, 33), 5px 5px rgb(201, 147, 33), 6px 6px rgb(202, 148, 33), 7px 7px rgb(202, 148, 33), 8px 8px rgb(203, 149, 33), 9px 9px rgb(204, 149, 34), 10px 10px rgb(205, 150, 34), 11px 11px rgb(205, 150, 34), 12px 12px rgb(206, 151, 34), 13px 13px rgb(207, 151, 34), 14px 14px rgb(207, 152, 34), 15px 15px rgb(208, 152, 34), 16px 16px rgb(209, 153, 34), 17px 17px rgb(209, 153, 34), 18px 18px rgb(210, 154, 35), 19px 19px rgb(211, 154, 35), 20px 20px rgb(212, 155, 35), 21px 21px rgb(212, 155, 35), 22px 22px rgb(213, 156, 35), 23px 23px rgb(214, 156, 35), 24px 24px rgb(214, 157, 35), 25px 25px rgb(215, 157, 35), 26px 26px rgb(216, 158, 35), 27px 27px rgb(216, 158, 36), 28px 28px rgb(217, 159, 36), 29px 29px rgb(218, 159, 36), 30px 30px rgb(219, 160, 36), 31px 31px rgb(219, 160, 36), 32px 32px rgb(220, 161, 36), 33px 33px rgb(221, 161, 36), 34px 34px rgb(221, 162, 36), 35px 35px rgb(222, 163, 37), 36px 36px rgb(223, 163, 37), 37px 37px rgb(223, 164, 37), 38px 38px rgb(224, 164, 37), 39px 39px rgb(225, 165, 37), 40px 40px rgb(226, 165, 37), 41px 41px rgb(226, 166, 37), 42px 42px rgb(227, 166, 37), 43px 43px rgb(228, 167, 37), 44px 44px rgb(228, 167, 38), 45px 45px rgb(229, 168, 38), 46px 46px rgb(230, 168, 38), 47px 47px rgb(230, 169, 38), 48px 48px rgb(231, 169, 38), 49px 49px rgb(232, 170, 38), 50px 50px rgb(233, 170, 38), 51px 51px rgb(233, 171, 38), 52px 52px rgb(234, 171, 38), 53px 53px rgb(235, 172, 39), 54px 54px rgb(235, 172, 39), 55px 55px rgb(236, 173, 39), 56px 56px rgb(237, 173, 39), 57px 57px rgb(237, 174, 39), 58px 58px rgb(238, 174, 39), 59px 59px rgb(239, 175, 39), 60px 60px rgb(240, 175, 39), 61px 61px rgb(240, 176, 39), 62px 62px rgb(241, 176, 40), 63px 63px rgb(242, 177, 40), 64px 64px rgb(242, 177, 40), 65px 65px rgb(243, 178, 40), 66px 66px rgb(244, 178, 40), 67px 67px rgb(244, 179, 40), 68px 68px rgb(245, 179, 40), 69px 69px rgb(246, 180, 40), 70px 70px rgb(247, 181, 41);

    -moz-text-shadow: 1px 1px rgb(198, 145, 33), 2px 2px rgb(199, 146, 33), 3px 3px rgb(200, 146, 33), 4px 4px rgb(200, 147, 33), 5px 5px rgb(201, 147, 33), 6px 6px rgb(202, 148, 33), 7px 7px rgb(202, 148, 33), 8px 8px rgb(203, 149, 33), 9px 9px rgb(204, 149, 34), 10px 10px rgb(205, 150, 34), 11px 11px rgb(205, 150, 34), 12px 12px rgb(206, 151, 34), 13px 13px rgb(207, 151, 34), 14px 14px rgb(207, 152, 34), 15px 15px rgb(208, 152, 34), 16px 16px rgb(209, 153, 34), 17px 17px rgb(209, 153, 34), 18px 18px rgb(210, 154, 35), 19px 19px rgb(211, 154, 35), 20px 20px rgb(212, 155, 35), 21px 21px rgb(212, 155, 35), 22px 22px rgb(213, 156, 35), 23px 23px rgb(214, 156, 35), 24px 24px rgb(214, 157, 35), 25px 25px rgb(215, 157, 35), 26px 26px rgb(216, 158, 35), 27px 27px rgb(216, 158, 36), 28px 28px rgb(217, 159, 36), 29px 29px rgb(218, 159, 36), 30px 30px rgb(219, 160, 36), 31px 31px rgb(219, 160, 36), 32px 32px rgb(220, 161, 36), 33px 33px rgb(221, 161, 36), 34px 34px rgb(221, 162, 36), 35px 35px rgb(222, 163, 37), 36px 36px rgb(223, 163, 37), 37px 37px rgb(223, 164, 37), 38px 38px rgb(224, 164, 37), 39px 39px rgb(225, 165, 37), 40px 40px rgb(226, 165, 37), 41px 41px rgb(226, 166, 37), 42px 42px rgb(227, 166, 37), 43px 43px rgb(228, 167, 37), 44px 44px rgb(228, 167, 38), 45px 45px rgb(229, 168, 38), 46px 46px rgb(230, 168, 38), 47px 47px rgb(230, 169, 38), 48px 48px rgb(231, 169, 38), 49px 49px rgb(232, 170, 38), 50px 50px rgb(233, 170, 38), 51px 51px rgb(233, 171, 38), 52px 52px rgb(234, 171, 38), 53px 53px rgb(235, 172, 39), 54px 54px rgb(235, 172, 39), 55px 55px rgb(236, 173, 39), 56px 56px rgb(237, 173, 39), 57px 57px rgb(237, 174, 39), 58px 58px rgb(238, 174, 39), 59px 59px rgb(239, 175, 39), 60px 60px rgb(240, 175, 39), 61px 61px rgb(240, 176, 39), 62px 62px rgb(241, 176, 40), 63px 63px rgb(242, 177, 40), 64px 64px rgb(242, 177, 40), 65px 65px rgb(243, 178, 40), 66px 66px rgb(244, 178, 40), 67px 67px rgb(244, 179, 40), 68px 68px rgb(245, 179, 40), 69px 69px rgb(246, 180, 40), 70px 70px rgb(247, 181, 41);

    -webkit-text-shadow: 1px 1px rgb(198, 145, 33), 2px 2px rgb(199, 146, 33), 3px 3px rgb(200, 146, 33), 4px 4px rgb(200, 147, 33), 5px 5px rgb(201, 147, 33), 6px 6px rgb(202, 148, 33), 7px 7px rgb(202, 148, 33), 8px 8px rgb(203, 149, 33), 9px 9px rgb(204, 149, 34), 10px 10px rgb(205, 150, 34), 11px 11px rgb(205, 150, 34), 12px 12px rgb(206, 151, 34), 13px 13px rgb(207, 151, 34), 14px 14px rgb(207, 152, 34), 15px 15px rgb(208, 152, 34), 16px 16px rgb(209, 153, 34), 17px 17px rgb(209, 153, 34), 18px 18px rgb(210, 154, 35), 19px 19px rgb(211, 154, 35), 20px 20px rgb(212, 155, 35), 21px 21px rgb(212, 155, 35), 22px 22px rgb(213, 156, 35), 23px 23px rgb(214, 156, 35), 24px 24px rgb(214, 157, 35), 25px 25px rgb(215, 157, 35), 26px 26px rgb(216, 158, 35), 27px 27px rgb(216, 158, 36), 28px 28px rgb(217, 159, 36), 29px 29px rgb(218, 159, 36), 30px 30px rgb(219, 160, 36), 31px 31px rgb(219, 160, 36), 32px 32px rgb(220, 161, 36), 33px 33px rgb(221, 161, 36), 34px 34px rgb(221, 162, 36), 35px 35px rgb(222, 163, 37), 36px 36px rgb(223, 163, 37), 37px 37px rgb(223, 164, 37), 38px 38px rgb(224, 164, 37), 39px 39px rgb(225, 165, 37), 40px 40px rgb(226, 165, 37), 41px 41px rgb(226, 166, 37), 42px 42px rgb(227, 166, 37), 43px 43px rgb(228, 167, 37), 44px 44px rgb(228, 167, 38), 45px 45px rgb(229, 168, 38), 46px 46px rgb(230, 168, 38), 47px 47px rgb(230, 169, 38), 48px 48px rgb(231, 169, 38), 49px 49px rgb(232, 170, 38), 50px 50px rgb(233, 170, 38), 51px 51px rgb(233, 171, 38), 52px 52px rgb(234, 171, 38), 53px 53px rgb(235, 172, 39), 54px 54px rgb(235, 172, 39), 55px 55px rgb(236, 173, 39), 56px 56px rgb(237, 173, 39), 57px 57px rgb(237, 174, 39), 58px 58px rgb(238, 174, 39), 59px 59px rgb(239, 175, 39), 60px 60px rgb(240, 175, 39), 61px 61px rgb(240, 176, 39), 62px 62px rgb(241, 176, 40), 63px 63px rgb(242, 177, 40), 64px 64px rgb(242, 177, 40), 65px 65px rgb(243, 178, 40), 66px 66px rgb(244, 178, 40), 67px 67px rgb(244, 179, 40), 68px 68px rgb(245, 179, 40), 69px 69px rgb(246, 180, 40), 70px 70px rgb(247, 181, 41);

    background-color: rgb(247, 181, 41);
}

.shape-9 {
    text-shadow: 1px 1px rgb(193, 92, 90), 2px 2px rgb(194, 92, 90), 3px 3px rgb(195, 92, 90), 4px 4px rgb(195, 93, 91), 5px 5px rgb(196, 93, 91), 6px 6px rgb(197, 93, 91), 7px 7px rgb(197, 94, 92), 8px 8px rgb(198, 94, 92), 9px 9px rgb(199, 94, 92), 10px 10px rgb(199, 95, 93), 11px 11px rgb(200, 95, 93), 12px 12px rgb(201, 95, 93), 13px 13px rgb(201, 96, 94), 14px 14px rgb(202, 96, 94), 15px 15px rgb(203, 96, 94), 16px 16px rgb(203, 97, 95), 17px 17px rgb(204, 97, 95), 18px 18px rgb(205, 97, 95), 19px 19px rgb(206, 98, 95), 20px 20px rgb(206, 98, 96), 21px 21px rgb(207, 98, 96), 22px 22px rgb(208, 99, 96), 23px 23px rgb(208, 99, 97), 24px 24px rgb(209, 99, 97), 25px 25px rgb(210, 100, 97), 26px 26px rgb(210, 100, 98), 27px 27px rgb(211, 100, 98), 28px 28px rgb(212, 101, 98), 29px 29px rgb(212, 101, 99), 30px 30px rgb(213, 101, 99), 31px 31px rgb(214, 102, 99), 32px 32px rgb(214, 102, 100), 33px 33px rgb(215, 102, 100), 34px 34px rgb(216, 103, 100), 35px 35px rgb(217, 103, 101), 36px 36px rgb(217, 103, 101), 37px 37px rgb(218, 104, 101), 38px 38px rgb(219, 104, 101), 39px 39px rgb(219, 104, 102), 40px 40px rgb(220, 105, 102), 41px 41px rgb(221, 105, 102), 42px 42px rgb(221, 105, 103), 43px 43px rgb(222, 106, 103), 44px 44px rgb(223, 106, 103), 45px 45px rgb(223, 106, 104), 46px 46px rgb(224, 107, 104), 47px 47px rgb(225, 107, 104), 48px 48px rgb(225, 107, 105), 49px 49px rgb(226, 108, 105), 50px 50px rgb(227, 108, 105), 51px 51px rgb(227, 108, 106), 52px 52px rgb(228, 109, 106), 53px 53px rgb(229, 109, 106), 54px 54px rgb(230, 109, 106), 55px 55px rgb(230, 110, 107), 56px 56px rgb(231, 110, 107), 57px 57px rgb(232, 110, 107), 58px 58px rgb(232, 111, 108), 59px 59px rgb(233, 111, 108), 60px 60px rgb(234, 111, 108), 61px 61px rgb(234, 112, 109), 62px 62px rgb(235, 112, 109), 63px 63px rgb(236, 112, 109), 64px 64px rgb(236, 113, 110), 65px 65px rgb(237, 113, 110), 66px 66px rgb(238, 113, 110), 67px 67px rgb(238, 114, 111), 68px 68px rgb(239, 114, 111), 69px 69px rgb(240, 114, 111), 70px 70px rgb(241, 115, 112);

    -moz-text-shadow: 1px 1px rgb(193, 92, 90), 2px 2px rgb(194, 92, 90), 3px 3px rgb(195, 92, 90), 4px 4px rgb(195, 93, 91), 5px 5px rgb(196, 93, 91), 6px 6px rgb(197, 93, 91), 7px 7px rgb(197, 94, 92), 8px 8px rgb(198, 94, 92), 9px 9px rgb(199, 94, 92), 10px 10px rgb(199, 95, 93), 11px 11px rgb(200, 95, 93), 12px 12px rgb(201, 95, 93), 13px 13px rgb(201, 96, 94), 14px 14px rgb(202, 96, 94), 15px 15px rgb(203, 96, 94), 16px 16px rgb(203, 97, 95), 17px 17px rgb(204, 97, 95), 18px 18px rgb(205, 97, 95), 19px 19px rgb(206, 98, 95), 20px 20px rgb(206, 98, 96), 21px 21px rgb(207, 98, 96), 22px 22px rgb(208, 99, 96), 23px 23px rgb(208, 99, 97), 24px 24px rgb(209, 99, 97), 25px 25px rgb(210, 100, 97), 26px 26px rgb(210, 100, 98), 27px 27px rgb(211, 100, 98), 28px 28px rgb(212, 101, 98), 29px 29px rgb(212, 101, 99), 30px 30px rgb(213, 101, 99), 31px 31px rgb(214, 102, 99), 32px 32px rgb(214, 102, 100), 33px 33px rgb(215, 102, 100), 34px 34px rgb(216, 103, 100), 35px 35px rgb(217, 103, 101), 36px 36px rgb(217, 103, 101), 37px 37px rgb(218, 104, 101), 38px 38px rgb(219, 104, 101), 39px 39px rgb(219, 104, 102), 40px 40px rgb(220, 105, 102), 41px 41px rgb(221, 105, 102), 42px 42px rgb(221, 105, 103), 43px 43px rgb(222, 106, 103), 44px 44px rgb(223, 106, 103), 45px 45px rgb(223, 106, 104), 46px 46px rgb(224, 107, 104), 47px 47px rgb(225, 107, 104), 48px 48px rgb(225, 107, 105), 49px 49px rgb(226, 108, 105), 50px 50px rgb(227, 108, 105), 51px 51px rgb(227, 108, 106), 52px 52px rgb(228, 109, 106), 53px 53px rgb(229, 109, 106), 54px 54px rgb(230, 109, 106), 55px 55px rgb(230, 110, 107), 56px 56px rgb(231, 110, 107), 57px 57px rgb(232, 110, 107), 58px 58px rgb(232, 111, 108), 59px 59px rgb(233, 111, 108), 60px 60px rgb(234, 111, 108), 61px 61px rgb(234, 112, 109), 62px 62px rgb(235, 112, 109), 63px 63px rgb(236, 112, 109), 64px 64px rgb(236, 113, 110), 65px 65px rgb(237, 113, 110), 66px 66px rgb(238, 113, 110), 67px 67px rgb(238, 114, 111), 68px 68px rgb(239, 114, 111), 69px 69px rgb(240, 114, 111), 70px 70px rgb(241, 115, 112);

    -webkit-text-shadow: 1px 1px rgb(193, 92, 90), 2px 2px rgb(194, 92, 90), 3px 3px rgb(195, 92, 90), 4px 4px rgb(195, 93, 91), 5px 5px rgb(196, 93, 91), 6px 6px rgb(197, 93, 91), 7px 7px rgb(197, 94, 92), 8px 8px rgb(198, 94, 92), 9px 9px rgb(199, 94, 92), 10px 10px rgb(199, 95, 93), 11px 11px rgb(200, 95, 93), 12px 12px rgb(201, 95, 93), 13px 13px rgb(201, 96, 94), 14px 14px rgb(202, 96, 94), 15px 15px rgb(203, 96, 94), 16px 16px rgb(203, 97, 95), 17px 17px rgb(204, 97, 95), 18px 18px rgb(205, 97, 95), 19px 19px rgb(206, 98, 95), 20px 20px rgb(206, 98, 96), 21px 21px rgb(207, 98, 96), 22px 22px rgb(208, 99, 96), 23px 23px rgb(208, 99, 97), 24px 24px rgb(209, 99, 97), 25px 25px rgb(210, 100, 97), 26px 26px rgb(210, 100, 98), 27px 27px rgb(211, 100, 98), 28px 28px rgb(212, 101, 98), 29px 29px rgb(212, 101, 99), 30px 30px rgb(213, 101, 99), 31px 31px rgb(214, 102, 99), 32px 32px rgb(214, 102, 100), 33px 33px rgb(215, 102, 100), 34px 34px rgb(216, 103, 100), 35px 35px rgb(217, 103, 101), 36px 36px rgb(217, 103, 101), 37px 37px rgb(218, 104, 101), 38px 38px rgb(219, 104, 101), 39px 39px rgb(219, 104, 102), 40px 40px rgb(220, 105, 102), 41px 41px rgb(221, 105, 102), 42px 42px rgb(221, 105, 103), 43px 43px rgb(222, 106, 103), 44px 44px rgb(223, 106, 103), 45px 45px rgb(223, 106, 104), 46px 46px rgb(224, 107, 104), 47px 47px rgb(225, 107, 104), 48px 48px rgb(225, 107, 105), 49px 49px rgb(226, 108, 105), 50px 50px rgb(227, 108, 105), 51px 51px rgb(227, 108, 106), 52px 52px rgb(228, 109, 106), 53px 53px rgb(229, 109, 106), 54px 54px rgb(230, 109, 106), 55px 55px rgb(230, 110, 107), 56px 56px rgb(231, 110, 107), 57px 57px rgb(232, 110, 107), 58px 58px rgb(232, 111, 108), 59px 59px rgb(233, 111, 108), 60px 60px rgb(234, 111, 108), 61px 61px rgb(234, 112, 109), 62px 62px rgb(235, 112, 109), 63px 63px rgb(236, 112, 109), 64px 64px rgb(236, 113, 110), 65px 65px rgb(237, 113, 110), 66px 66px rgb(238, 113, 110), 67px 67px rgb(238, 114, 111), 68px 68px rgb(239, 114, 111), 69px 69px rgb(240, 114, 111), 70px 70px rgb(241, 115, 112);

    background-color: rgb(241, 115, 112);
}

.shape-10 {
    text-shadow: 1px 1px rgb(178, 57, 50), 2px 2px rgb(179, 57, 50), 3px 3px rgb(179, 57, 50), 4px 4px rgb(180, 57, 50), 5px 5px rgb(181, 58, 50), 6px 6px rgb(181, 58, 51), 7px 7px rgb(182, 58, 51), 8px 8px rgb(183, 58, 51), 9px 9px rgb(183, 58, 51), 10px 10px rgb(184, 59, 51), 11px 11px rgb(184, 59, 51), 12px 12px rgb(185, 59, 52), 13px 13px rgb(186, 59, 52), 14px 14px rgb(186, 59, 52), 15px 15px rgb(187, 60, 52), 16px 16px rgb(188, 60, 52), 17px 17px rgb(188, 60, 52), 18px 18px rgb(189, 60, 53), 19px 19px rgb(189, 60, 53), 20px 20px rgb(190, 61, 53), 21px 21px rgb(191, 61, 53), 22px 22px rgb(191, 61, 53), 23px 23px rgb(192, 61, 53), 24px 24px rgb(193, 61, 54), 25px 25px rgb(193, 62, 54), 26px 26px rgb(194, 62, 54), 27px 27px rgb(194, 62, 54), 28px 28px rgb(195, 62, 54), 29px 29px rgb(196, 62, 54), 30px 30px rgb(196, 63, 55), 31px 31px rgb(197, 63, 55), 32px 32px rgb(198, 63, 55), 33px 33px rgb(198, 63, 55), 34px 34px rgb(199, 63, 55), 35px 35px rgb(200, 64, 56), 36px 36px rgb(200, 64, 56), 37px 37px rgb(201, 64, 56), 38px 38px rgb(201, 64, 56), 39px 39px rgb(202, 64, 56), 40px 40px rgb(203, 65, 56), 41px 41px rgb(203, 65, 57), 42px 42px rgb(204, 65, 57), 43px 43px rgb(205, 65, 57), 44px 44px rgb(205, 65, 57), 45px 45px rgb(206, 66, 57), 46px 46px rgb(206, 66, 57), 47px 47px rgb(207, 66, 58), 48px 48px rgb(208, 66, 58), 49px 49px rgb(208, 66, 58), 50px 50px rgb(209, 67, 58), 51px 51px rgb(210, 67, 58), 52px 52px rgb(210, 67, 58), 53px 53px rgb(211, 67, 59), 54px 54px rgb(211, 67, 59), 55px 55px rgb(212, 68, 59), 56px 56px rgb(213, 68, 59), 57px 57px rgb(213, 68, 59), 58px 58px rgb(214, 68, 59), 59px 59px rgb(215, 68, 60), 60px 60px rgb(215, 69, 60), 61px 61px rgb(216, 69, 60), 62px 62px rgb(216, 69, 60), 63px 63px rgb(217, 69, 60), 64px 64px rgb(218, 69, 60), 65px 65px rgb(218, 70, 61), 66px 66px rgb(219, 70, 61), 67px 67px rgb(220, 70, 61), 68px 68px rgb(220, 70, 61), 69px 69px rgb(221, 70, 61), 70px 70px rgb(222, 71, 62);

    -moz-text-shadow: 1px 1px rgb(178, 57, 50), 2px 2px rgb(179, 57, 50), 3px 3px rgb(179, 57, 50), 4px 4px rgb(180, 57, 50), 5px 5px rgb(181, 58, 50), 6px 6px rgb(181, 58, 51), 7px 7px rgb(182, 58, 51), 8px 8px rgb(183, 58, 51), 9px 9px rgb(183, 58, 51), 10px 10px rgb(184, 59, 51), 11px 11px rgb(184, 59, 51), 12px 12px rgb(185, 59, 52), 13px 13px rgb(186, 59, 52), 14px 14px rgb(186, 59, 52), 15px 15px rgb(187, 60, 52), 16px 16px rgb(188, 60, 52), 17px 17px rgb(188, 60, 52), 18px 18px rgb(189, 60, 53), 19px 19px rgb(189, 60, 53), 20px 20px rgb(190, 61, 53), 21px 21px rgb(191, 61, 53), 22px 22px rgb(191, 61, 53), 23px 23px rgb(192, 61, 53), 24px 24px rgb(193, 61, 54), 25px 25px rgb(193, 62, 54), 26px 26px rgb(194, 62, 54), 27px 27px rgb(194, 62, 54), 28px 28px rgb(195, 62, 54), 29px 29px rgb(196, 62, 54), 30px 30px rgb(196, 63, 55), 31px 31px rgb(197, 63, 55), 32px 32px rgb(198, 63, 55), 33px 33px rgb(198, 63, 55), 34px 34px rgb(199, 63, 55), 35px 35px rgb(200, 64, 56), 36px 36px rgb(200, 64, 56), 37px 37px rgb(201, 64, 56), 38px 38px rgb(201, 64, 56), 39px 39px rgb(202, 64, 56), 40px 40px rgb(203, 65, 56), 41px 41px rgb(203, 65, 57), 42px 42px rgb(204, 65, 57), 43px 43px rgb(205, 65, 57), 44px 44px rgb(205, 65, 57), 45px 45px rgb(206, 66, 57), 46px 46px rgb(206, 66, 57), 47px 47px rgb(207, 66, 58), 48px 48px rgb(208, 66, 58), 49px 49px rgb(208, 66, 58), 50px 50px rgb(209, 67, 58), 51px 51px rgb(210, 67, 58), 52px 52px rgb(210, 67, 58), 53px 53px rgb(211, 67, 59), 54px 54px rgb(211, 67, 59), 55px 55px rgb(212, 68, 59), 56px 56px rgb(213, 68, 59), 57px 57px rgb(213, 68, 59), 58px 58px rgb(214, 68, 59), 59px 59px rgb(215, 68, 60), 60px 60px rgb(215, 69, 60), 61px 61px rgb(216, 69, 60), 62px 62px rgb(216, 69, 60), 63px 63px rgb(217, 69, 60), 64px 64px rgb(218, 69, 60), 65px 65px rgb(218, 70, 61), 66px 66px rgb(219, 70, 61), 67px 67px rgb(220, 70, 61), 68px 68px rgb(220, 70, 61), 69px 69px rgb(221, 70, 61), 70px 70px rgb(222, 71, 62);

    -webkit-text-shadow: 1px 1px rgb(178, 57, 50), 2px 2px rgb(179, 57, 50), 3px 3px rgb(179, 57, 50), 4px 4px rgb(180, 57, 50), 5px 5px rgb(181, 58, 50), 6px 6px rgb(181, 58, 51), 7px 7px rgb(182, 58, 51), 8px 8px rgb(183, 58, 51), 9px 9px rgb(183, 58, 51), 10px 10px rgb(184, 59, 51), 11px 11px rgb(184, 59, 51), 12px 12px rgb(185, 59, 52), 13px 13px rgb(186, 59, 52), 14px 14px rgb(186, 59, 52), 15px 15px rgb(187, 60, 52), 16px 16px rgb(188, 60, 52), 17px 17px rgb(188, 60, 52), 18px 18px rgb(189, 60, 53), 19px 19px rgb(189, 60, 53), 20px 20px rgb(190, 61, 53), 21px 21px rgb(191, 61, 53), 22px 22px rgb(191, 61, 53), 23px 23px rgb(192, 61, 53), 24px 24px rgb(193, 61, 54), 25px 25px rgb(193, 62, 54), 26px 26px rgb(194, 62, 54), 27px 27px rgb(194, 62, 54), 28px 28px rgb(195, 62, 54), 29px 29px rgb(196, 62, 54), 30px 30px rgb(196, 63, 55), 31px 31px rgb(197, 63, 55), 32px 32px rgb(198, 63, 55), 33px 33px rgb(198, 63, 55), 34px 34px rgb(199, 63, 55), 35px 35px rgb(200, 64, 56), 36px 36px rgb(200, 64, 56), 37px 37px rgb(201, 64, 56), 38px 38px rgb(201, 64, 56), 39px 39px rgb(202, 64, 56), 40px 40px rgb(203, 65, 56), 41px 41px rgb(203, 65, 57), 42px 42px rgb(204, 65, 57), 43px 43px rgb(205, 65, 57), 44px 44px rgb(205, 65, 57), 45px 45px rgb(206, 66, 57), 46px 46px rgb(206, 66, 57), 47px 47px rgb(207, 66, 58), 48px 48px rgb(208, 66, 58), 49px 49px rgb(208, 66, 58), 50px 50px rgb(209, 67, 58), 51px 51px rgb(210, 67, 58), 52px 52px rgb(210, 67, 58), 53px 53px rgb(211, 67, 59), 54px 54px rgb(211, 67, 59), 55px 55px rgb(212, 68, 59), 56px 56px rgb(213, 68, 59), 57px 57px rgb(213, 68, 59), 58px 58px rgb(214, 68, 59), 59px 59px rgb(215, 68, 60), 60px 60px rgb(215, 69, 60), 61px 61px rgb(216, 69, 60), 62px 62px rgb(216, 69, 60), 63px 63px rgb(217, 69, 60), 64px 64px rgb(218, 69, 60), 65px 65px rgb(218, 70, 61), 66px 66px rgb(219, 70, 61), 67px 67px rgb(220, 70, 61), 68px 68px rgb(220, 70, 61), 69px 69px rgb(221, 70, 61), 70px 70px rgb(222, 71, 62);

    background-color: rgb(222, 71, 62);
}

.shape-11 {
    background-color: rgb(212, 114, 161);
    text-shadow: 1px 1px rgb(187, 100, 142), 2px 2px rgb(187, 100, 142), 3px 3px rgb(187, 100, 142), 4px 4px rgb(187, 100, 142), 5px 5px rgb(187, 100, 142), 6px 6px rgb(187, 100, 142), 7px 7px rgb(187, 100, 142), 8px 8px rgb(187, 100, 142), 9px 9px rgb(187, 100, 142), 10px 10px rgb(187, 100, 142), 11px 11px rgb(187, 100, 142), 12px 12px rgb(187, 100, 142), 13px 13px rgb(187, 100, 142), 14px 14px rgb(187, 100, 142), 15px 15px rgb(187, 100, 142), 16px 16px rgb(187, 100, 142), 17px 17px rgb(187, 100, 142), 18px 18px rgb(187, 100, 142), 19px 19px rgb(187, 100, 142), 20px 20px rgb(187, 100, 142), 21px 21px rgb(187, 100, 142), 22px 22px rgb(187, 100, 142), 23px 23px rgb(187, 100, 142), 24px 24px rgb(187, 100, 142), 25px 25px rgb(187, 100, 142), 26px 26px rgb(187, 100, 142), 27px 27px rgb(187, 100, 142), 28px 28px rgb(187, 100, 142), 29px 29px rgb(187, 100, 142), 30px 30px rgb(187, 100, 142), 31px 31px rgb(187, 100, 142), 32px 32px rgb(187, 100, 142), 33px 33px rgb(187, 100, 142), 34px 34px rgb(187, 100, 142), 35px 35px rgb(187, 100, 142), 36px 36px rgb(187, 100, 142), 37px 37px rgb(187, 100, 142), 38px 38px rgb(187, 100, 142), 39px 39px rgb(187, 100, 142), 40px 40px rgb(187, 100, 142), 41px 41px rgb(187, 100, 142), 42px 42px rgb(187, 100, 142), 43px 43px rgb(187, 100, 142), 44px 44px rgb(187, 100, 142), 45px 45px rgb(187, 100, 142), 46px 46px rgb(187, 100, 142), 47px 47px rgb(187, 100, 142), 48px 48px rgb(187, 100, 142), 49px 49px rgb(187, 100, 142), 50px 50px rgb(187, 100, 142), 51px 51px rgb(187, 100, 142), 52px 52px rgb(187, 100, 142), 53px 53px rgb(187, 100, 142), 54px 54px rgb(187, 100, 142), 55px 55px rgb(187, 100, 142), 56px 56px rgb(187, 100, 142), 57px 57px rgb(187, 100, 142), 58px 58px rgb(187, 100, 142), 59px 59px rgb(188, 100, 142), 60px 60px rgb(188, 100, 143), 61px 61px rgb(188, 101, 143), 62px 62px rgb(189, 101, 143), 63px 63px rgb(189, 101, 143), 64px 64px rgb(189, 101, 144), 65px 65px rgb(189, 101, 144), 66px 66px rgb(190, 101, 144), 67px 67px rgb(190, 102, 144), 68px 68px rgb(190, 102, 144), 69px 69px rgb(191, 102, 145), 70px 70px rgb(191, 102, 145), 71px 71px rgb(191, 102, 145), 72px 72px rgb(192, 102, 145), 73px 73px rgb(192, 103, 146), 74px 74px rgb(192, 103, 146), 75px 75px rgb(192, 103, 146), 76px 76px rgb(193, 103, 146), 77px 77px rgb(193, 103, 146), 78px 78px rgb(193, 103, 147), 79px 79px rgb(194, 104, 147), 80px 80px rgb(194, 104, 147), 81px 81px rgb(194, 104, 147), 82px 82px rgb(195, 104, 148), 83px 83px rgb(195, 104, 148), 84px 84px rgb(195, 104, 148), 85px 85px rgb(195, 105, 148), 86px 86px rgb(196, 105, 149), 87px 87px rgb(196, 105, 149), 88px 88px rgb(196, 105, 149), 89px 89px rgb(197, 105, 149), 90px 90px rgb(197, 105, 149), 91px 91px rgb(197, 106, 150), 92px 92px rgb(198, 106, 150), 93px 93px rgb(198, 106, 150), 94px 94px rgb(198, 106, 150), 95px 95px rgb(198, 106, 151), 96px 96px rgb(199, 106, 151), 97px 97px rgb(199, 107, 151), 98px 98px rgb(199, 107, 151), 99px 99px rgb(200, 107, 151), 100px 100px rgb(200, 107, 152), 101px 101px rgb(200, 107, 152), 102px 102px rgb(200, 107, 152), 103px 103px rgb(201, 108, 152), 104px 104px rgb(201, 108, 153), 105px 105px rgb(201, 108, 153), 106px 106px rgb(202, 108, 153), 107px 107px rgb(202, 108, 153), 108px 108px rgb(202, 108, 153), 109px 109px rgb(203, 109, 154), 110px 110px rgb(203, 109, 154), 111px 111px rgb(203, 109, 154), 112px 112px rgb(203, 109, 154), 113px 113px rgb(204, 109, 155), 114px 114px rgb(204, 109, 155), 115px 115px rgb(204, 110, 155), 116px 116px rgb(205, 110, 155), 117px 117px rgb(205, 110, 156), 118px 118px rgb(205, 110, 156), 119px 119px rgb(206, 110, 156), 120px 120px rgb(206, 110, 156), 121px 121px rgb(206, 111, 156), 122px 122px rgb(206, 111, 157), 123px 123px rgb(207, 111, 157), 124px 124px rgb(207, 111, 157), 125px 125px rgb(207, 111, 157), 126px 126px rgb(208, 111, 158), 127px 127px rgb(208, 112, 158), 128px 128px rgb(208, 112, 158), 129px 129px rgb(209, 112, 158), 130px 130px rgb(209, 112, 158), 131px 131px rgb(209, 112, 159), 132px 132px rgb(209, 112, 159), 133px 133px rgb(210, 113, 159), 134px 134px rgb(210, 113, 159), 135px 135px rgb(210, 113, 160), 136px 136px rgb(211, 113, 160), 137px 137px rgb(211, 113, 160), 138px 138px rgb(211, 113, 160), 139px 139px rgb(212, 114, 161);
}
