.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -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%,
    100%,
    20%,
    50%,
    80% {
        -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%,
    100%,
    50% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,
    100%,
    50% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes pulse {
    0%,
    100% {
        -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)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }
    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }
}

@keyframes rubberBand {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        -ms-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }
    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        -ms-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        -ms-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-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%,
    100% {
        -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)
    }
}

@keyframes wobble {
    0%,
    100% {
        -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)
    }
}

.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% {
        opacity: 1;
        -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% {
        opacity: 1;
        -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);
        -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);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    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);
        -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);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@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);
        -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);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    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);
        -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);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.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
}

.flipInY,
.flipOutX {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important
}

@-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 {
    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;
    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-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -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-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -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-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -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-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -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-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -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-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -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-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -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-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -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-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -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-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -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 slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    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)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes slideOutDown {
    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)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -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);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -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);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        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);
        -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);
        -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
    }
    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -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);
        -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;
        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
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        -ms-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-48px);
        -ms-transform: scale(.475) translateX(-48px);
        transform: scale(.475) translateX(-48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
    100% {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(-60px);
        -ms-transform: scale(.475) translateY(-60px);
        transform: scale(.475) translateY(-60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(2000px);
        -ms-transform: scale(.1) translateY(2000px);
        transform: scale(.1) translateY(2000px);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(42px);
        -ms-transform: scale(.475) translateX(42px);
        transform: scale(.475) translateX(42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(-42px);
        -ms-transform: scale(.475) translateX(-42px);
        transform: scale(.475) translateX(-42px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(2000px);
        -ms-transform: scale(.1) translateX(2000px);
        transform: scale(.1) translateX(2000px);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        transform-origin: center top
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom: 1;
}

.bx-wrapper img {
    max-width: 100%;
    display: block;
}

.bx-wrapper .bx-viewport {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    border: 5px solid #fff;
    left: -5px;
    background: #fff;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -30px;
    width: 100%;
}

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #000;
}

.bx-wrapper .bx-prev {
    left: 10px;
    background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
    right: 10px;
    background: url(images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
    background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
    background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

.bx-wrapper .bx-controls-auto {
    text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -11px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -44px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
    background-position: -86px -33px;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px;
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #6669;
    background: rgba(80, 80, 80, 0.75);
    width: 100%;
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px;
}

.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel .owl-item {
    float: left
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.grabbing {
    cursor: url(grabbing.png) 8 8, move
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

@font-face {
    font-family: 'Conv_LUZHPORO';
    src: url('font/LUZHPORO.eot');
    src: local('☺'), url('font/LUZHPORO.woff') format('woff'), url('font/LUZHPORO.ttf') format('truetype'), url('font/LUZHPORO.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansitalic';
    src: url('font/opensans-italic.woff2') format('woff2'), url('font/opensans-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('font/opensans-regular.woff2') format('woff2'), url('font/opensans-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('font/opensans-semibold.woff2') format('woff2'), url('font/opensans-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Conv_Sqr721c';
    src: url('font/Sqr721c.eot');
    src: local('☺'), url('font/Sqr721c.woff') format('woff'), url('font/Sqr721c.ttf') format('truetype'), url('font/Sqr721c.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Conv_Sqr721e';
    src: url('font/Sqr721e.eot');
    src: local('☺'), url('font/Sqr721e.woff') format('woff'), url('font/Sqr721e.ttf') format('truetype'), url('font/Sqr721e.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Conv_PTS75F';
    src: url('fonts/PTS75F.eot');
    src: local('☺'), url('font/PTS75F.woff') format('woff'), url('font/PTS75F.ttf') format('truetype'), url('font/PTS75F.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Conv_TrajanPro-Bold';
    src: url('font/TrajanPro-Bold.eot');
    src: local('☺'), url('font/TrajanPro-Bold.woff') format('woff'), url('font/TrajanPro-Bold.ttf') format('truetype'), url('font/TrajanPro-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ShelleyLTStd-Script';
    src: url('font/ShelleyLTStd-Script.eot?') format('eot'), url('font/ShelleyLTStd-Script.otf') format('opentype'), url('font/ShelleyLTStd-Script.woff') format('woff'), url('font/ShelleyLTStd-Script.ttf') format('truetype'), url('font/ShelleyLTStd-Script.svg#ShelleyLTStd-Script') format('svg');
}

@font-face {
    c font-family: 'bebas_neueregular';
    src: url('font/bebasneue-webfont.eot');
    src: url('font/bebasneue-webfont.eot?#iefix') format('embedded-opentype'), url('font/bebasneue-webfont.woff') format('woff'), url('font/bebasneue-webfont.ttf') format('truetype'), url('font/bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubunturegular';
    src: url('font/ubuntu-r-webfont.eot');
    src: url('font/ubuntu-r-webfont.eot?#iefix') format('embedded-opentype'), url('font/ubuntu-r-webfont.woff') format('woff'), url('font/ubuntu-r-webfont.ttf') format('truetype'), url('font/ubuntu-r-webfont.svg#ubunturegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntulight';
    src: url('font/ubuntu-l-webfont.eot');
    src: url('font/ubuntu-l-webfont.eot?#iefix') format('embedded-opentype'), url('font/ubuntu-l-webfont.woff') format('woff'), url('font/ubuntu-l-webfont.ttf') format('truetype'), url('font/ubuntu-l-webfont.svg#ubuntulight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntubold';
    src: url('font/ubuntu-b-webfont.eot');
    src: url('font/ubuntu-b-webfont.eot?#iefix') format('embedded-opentype'), url('font/ubuntu-b-webfont.woff') format('woff'), url('font/ubuntu-b-webfont.ttf') format('truetype'), url('font/ubuntu-b-webfont.svg#ubuntubold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntumedium';
    src: url('font/ubuntu-m-webfont.eot');
    src: url('font/ubuntu-m-webfont.eot?#iefix') format('embedded-opentype'), url('font/ubuntu-m-webfont.woff') format('woff'), url('font/ubuntu-m-webfont.ttf') format('truetype'), url('font/ubuntu-m-webfont.svg#ubuntumedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

html {
    font-family: 'ubuntulight';
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

a {
    background: transparent;
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

mark {
    background: #ff0;
    color: #000;
}

code,
kbd,
pre,
samp {
    xfont-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
}

q {
    quotes: "201C" "201D" "2018" "2019";
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        xmax-width: 100% !important;
    }
    @page {
        margin: 2cm .5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    select {
        background: #fff !important;
    }
    .navbar {
        display: none;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000 !important;
    }
    .label {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.navbar-brand {
    float: left;
    width: 100%
}

.navbar-brand img {
    float: left;
    max-width: 100%
}

.menu-item a {
    xclear: both
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    xfont-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

iframe {
    max-width: 100% !important;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #428bca;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #2a6496;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    xpadding: 4px;
    line-height: 1.428571429;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    xfont-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #999999;
}

h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
    font-size: 65%;
}

h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
    font-size: 75%;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    color: #005CB9;
    xfont-family: 'bebas_neueregular';
    font-size: 39px;
    xtext-transform: uppercase;
}

h3,
.h3 {
    color: #555555;
    font-family: 'open_sanssemibold';
    font-size: 20px;
}

h3.cap {
    font-size: 15px;
    text-align: center;
}

h4,
.h4 {
    font-size: 17px;
    font-family: 'open_sanssemibold';
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    color: #555555;
    font-family: 'open_sansregular';
    font-size: 14px;
    margin: 0 0 10px;
}

ul.li-btm li {
    margin-bottom: 10px;
    font-size: 15px;
}

#archives-3 ul,
#categories-3 ul {
    margin: 0;
    padding: 0;
}

#archives-3 ul li,
#categories-3 ul li {
    cursor: pointer;
    position: relative;
    list-style: none;
}

#archives-3 ul li a,
#categories-3 ul li a {
    border-left: 2px solid #FFFFFF;
    color: #5A5A5A;
    display: block;
    margin: 5px 0;
    padding: 3px 0;
    text-decoration: none;
    font-size: 17px;
}

#archives-3 ul li a:hover,
#categories-3 ul li a:hover,
#archives-3 ul li.current_page_item a,
#categories-3 ul li.current_page_item a,
#archives-3 ul li.current-cat a,
#categories-3 ul li.current-cat a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-left: 2px solid #0D6CB5;
    color: #1F9F49;
    text-indent: 10px;
    transition: all 0.3s ease 0s;
}

.news-cont h3 {
    font-size: 22px;
}

.news-cont p.lead {
    color: #555555;
    font-family: ubuntulight;
    font-size: 15px;
    margin: 0 0 10px;
}

.right-top1 p {
    xfont-size: 16px;
    line-height: 32px !important;
}

.main-h {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    font-size: 25px;
}

.team h3 {
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.sub-h {
    font-size: 15px;
}

#main {
    xmin-height: 700px;
}

.left-text-whole {
    float: left;
    width: 100%;
}

.left-text-whole1 {
    float: left;
    width: 100%;
}

.left-top {
    float: left;
    width: 100%;
}

.left-lft {
    float: left;
    margin-left: 1px;
}

.left-lft span.brk {
    color: #005cb9;
    font-family: 'bebas_neueregular';
    font-size: 49px;
    line-height: 49px;
}

.left-rgt {
    float: left;
    font-size: 80px;
    color: #ff8300;
    font-family: 'bebas_neueregular';
    float: left;
    line-height: 80px;
}

.left-bottom {
    float: left;
    width: 100%;
    margin-left: 1px;
}

.left-bottom p {
    float: left;
    color: #999999;
    font-size: 36px;
    float: left;
    line-height: 36px;
    font-family: 'Ubuntubold';
    margin: 15px 0 27px 0;
}

.right-top {
    float: left;
    width: 100%;
}

.right-top p {
    color: #555555;
    font-size: 31px;
    font-family: 'Ubuntulight';
    text-align: right;
    line-height: 40px;
}

.right-top1 {
    float: left;
    width: 100%;
}

.right-top1 h3 {
    color: #ff8300;
    font-size: 40px;
    font-family: 'bebas_neueregular';
}

.item h3 {
    margin-top: 0;
}

.right-bottom {
    float: right;
    width: 100%;
}

.right-bottom1 {
    float: left;
    width: 100%;
}

.right-bottom1 .btn-orange {
    float: left;
}

.pad0 {
    padding: 0 !important;
}

.mrglft20 {
    text-align: left !important;
    padding-left: 20px !important;
}

.mrgc {
    margin: 55px 0;
}

.fade1 {
    height: 150px;
}

.fnt21 {
    font-size: 20px !important;
    margin-top: 0px;
}

.mm-s h2 {
    font-size: 25px;
    font-weight: normal;
    color: #1a1a1a;
    font-family: 'Ubuntulight';
}

.mm-s {
    margin-bottom: 50px;
    float: left;
    width: 100%;
}

.mrg30p {
    margin-top: 10px;
}

.menm a {
    font-size: 15px;
}

.ul-ss ul {
    display: block;
    margin: 0;
    padding: 0;
}

.ul-ss ul li {
    list-style: none;
}

.ul-ss ul li a {
    font-size: 14px;
    color: #333;
}

.ul-ss1 ul {
    display: block;
    margin: 0;
    padding: 0;
    margin-left: 10px;
}

.ul-ss1 ul li {
    list-style: none;
}

.ul-ss1 ul li a {
    font-size: 14px;
    color: #333;
}

.pad-left {
    padding-left: 0 !important
}

a {
    outline: none !important;
}

.home .breadcrumbs {
    display: none
}

.img-cen {
    float: left;
    width: 100%;
    text-align: center;
}

.img-cen img {
    float: none !important
}

#customfield3~label {
    display: none;
}

#customfield3+label {
    display: block
}

.absp_checkval label[for="customfield80"]:after {
    content: "*";
    color: #f00;
}

#main.mrgtpp {
    margin-top: 111px !important
}

.cb_cf_lft {
    float: left;
    margin-right: 4%;
    width: 17%;
}

.cb_cf_rgt {
    float: right;
    width: 79%;
}

.awp_contactform_maindiv_community_Edition input[type="text"],
.awp_contactform_maindiv_community_Edition textarea,
select {
    margin: 2px 0!important
}

.awp_contactform_maindiv_community_Edition input[type="text"],
.awp_contactform_maindiv_community_Edition textarea,
select {
    width: 100% !important
}

.awp_contactform_maindiv_community_Edition input[type="checkbox"] {
    margin: 5px 15px 0 0 !important
}

.stext {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

.scheckbox {
    float: left;
    width: 100%;
}

.btn-d {
    float: left;
}

.btn-d a {
    background: #1f9f49 none repeat scroll 0 0;
    border: 1px solid #16883b;
    float: left;
}

.down-txt {
    color: #fff;
    float: left;
    font-size: 18px;
    padding: 8px 17px 0;
}

.down-txt img {
    float: left;
    margin-right: 10px;
}

.sm-txt {
    clear: both;
    color: #fff;
    float: right;
    font-size: 11px;
    padding: 0 5px 5px;
}

.page-header h1.page-title {
    xdisplay: none;
    padding-bottom: 10px;
}

.box-whole {
    border: 1px solid #ccc;
    padding: 0 !important;
    float: left;
    width: 300px;
}

.box-img {
    float: left;
}

.box-whole1 {
    border: 1px solid #ccc;
    padding: 0 !important;
    float: left;
    width: 325px;
}

.bl {
    margin-right: 10px;
}

.box-btn {
    float: left;
    width: 66%;
    padding: 5px 0px;
    border-left: 1px solid #ccc;
}

.mrgtp30px {
    margin-top: 30px;
}

.hyper-cont h3 {
    margin-top: 15px;
    font-family: 'ubunturegular';
    font-size: 18px;
}

.hyp-cont .title-section {
    padding: 25px 0
}

.hyper-cont .msp h2 {
    margin-bottom: 5px;
}

.hyper-cont p.lead {
    margin-top: 5px;
}

.box-btn p,
.box-btn1 p {
    margin-bottom: 0
}

.box-whole button {
    background-color: #005cb9;
    color: #ffffff;
    border-radius: 0px !important;
    font-size: 14px;
    width: 91%;
    height: 29px;
    padding: 2px 10px;
    margin: 0 10px;
}

.bg-color1 {
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
}

.box-whole button:hover {
    color: #ffffff;
}

.box-btn1 {
    float: left;
    width: 193px;
    padding: 5px 0px;
    border-left: 1px solid #ccc;
}

.box-whole1 button {
    background-color: #005cb9;
    color: #ffffff;
    border-radius: 0px !important;
    font-size: 14px;
    width: 91%;
    height: 29px;
    padding: 2px 10px;
    margin: 0 10px;
}

.bg-color1 {
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
}

.box-whole1 button:hover {
    color: #ffffff;
}

blockquote p {
    color: green
}

blockquote {
    border-right: 5px solid #eeeeee !important;
    color: green !important;
    border-left: none !important
}

#main article img.sandisk {
    margin-top: 30px;
}

.dt img {
    position: absolute;
    left: 0;
    z-index: 9999;
}

.ddt {
    background: #193557 none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff;
    font-size: 20px;
    left: 20px;
    padding: 3px 10px 3px 40px;
    position: relative;
    width: 90%;
}

.col-xs-4.dt1 {
    padding: 0px 10px 0px 10px;
    margin-top: -10px;
}

h3.tsdsk {
    font-family: 'ubuntulight';
    color: #007e9e;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0;
}

ul.ul-app {
    display: block;
    margin: 10px 0 0 5px;
    padding: 0;
    background-color: #f1f1f1;
    font-size: 19px;
    color: #282828;
    font-family: 'ubunturegular';
    float: left;
    width: 100%;
}

ul.ul-app li {
    float: left;
    list-style: outside none none;
    padding: 4px 10px;
    text-align: center;
    width: 17%;
}

ul.ul-app li a {
    color: #282828;
    text-decoration: none;
}

ul.ul-app li.a-1000 {
    background-color: #bbbbbb;
}

ul.ul-app li.a-500 {
    background-color: #c9c9c9;
}

ul.ul-app li.a-100 {
    background-color: #d6d6d6;
}

ul.ul-app li.a-50 {
    background-color: #e4e4e4;
}

ul.ul-app li.a-10 {
    background-color: #f1f1f1;
}

.wddata {
    width: 86%;
}

.spandt {
    font-size: 17px;
    font-family: 'ubunturegular';
    margin-top: 50px;
}

.spandt span.dt {
    color: #2a497a;
    font-size: 22px;
    font-family: 'ubunturegular';
}

.spandt span.blgbg {
    background-color: #000;
    float: left;
    color: #fff;
    padding: 6px 10px;
    width: 100%;
    -webkit-border-top-left-radius: 3px;
    margin-top: 0px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.bx-viewport {
    overflow: hidden;
}

.top-p p.lead {
    font-size: 15px !important;
}

.bx2 {
    background-color: #3a77b4 !important
}

.bx2 h2 {
    background-color: #335f8e !important
}

.bx3 {
    background-color: #557493 !important
}

.bx3 h2 {
    background-color: #485d74 !important
}

.bx4 {
    background-color: #535d68 !important
}

.bx4 h2 {
    background-color: #474b52 !important
}

.bx5 {
    background-color: #3b6998 !important
}

.bx5 h2 {
    background-color: #345478 !important
}

.cnt-ssecc h4 {
    font-family: 'ubuntulight';
    line-height: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    margin: 5px !important
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background-image: url('/wp-content/uploads/2015/10/bullet1.png');
    background-color: transparent;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    border: none;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-image: url('/wp-content/uploads/2015/10/bullet-hover1.png');
    background-color: transparent;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    border: none;
}

.bx-wrapper .bx-pager {
    display: table-cell;
    height: 50px;
    position: absolute;
    right: 0px !important;
    top: 30%;
    vertical-align: middle;
    width: 20px;
}

.whol-appl-cont {
    display: inline-block;
}

.mrg50ppq {
    margin-top: 50px;
}

.tableline {
    font-size: 13px;
}

.cnt-ssecc h4 {
    margin: 0 !important
}

.bx-wrapper {
    margin-bottom: 0 !important
}

.bx-wrapper .bx-pager {
    position: absolute;
    right: 30px;
}

.bx-wrapper .bx-viewport {
    background: none !important;
    border: none !important;
    box-shadow: none !important
}

.head {
    color: white;
}

.newban-bg {
    background-color: #f2f2f2;
}

.cnt-ssecc {
    padding: 20px 10px 20px 40px;
    float: left;
    width: 100%;
}

.cnt-ssecc .subhead p.lead {
    font-size: 14px;
    color: #fff;
    font-family: 'ubuntubold';
}

.banner-bx {
    background-color: #3e4c5b;
    color: #fbfcfc;
    float: left;
    width: 92%;
    padding-top: 20px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
}

.spandt span.blgbg a {
    color: #fff;
    text-decoration: none !important
}

.banner-bx h2 {
    margin-top: 20px;
    font-family: UbuntuLight;
    font-size: 30px;
    background-color: #373e48;
    padding: 15px 15px 15px 40px;
    float: left;
    font-weight: normal !important;
    color: #fff;
    width: 100%;
}

.heading h4 {
    font-family: Ubuntu Light;
    font-size: 20px;
}

.tableline {
    font-family: UbuntuLight;
}

.cnt-ssecc .subhead {
    margin: 30px 0;
}

.slider {
    list-style: none;
}

.top-p h2.appli {
    margin-top: 0;
    color: #064380;
    display: inline-block
}

.top-p h3.appli1 {
    color: #05306b;
    font-size: 25px;
}

.vmworld {
    margin: -15px;
    padding-bottom: 20px;
}

.vmworld1 {
    padding-bottom: 20px;
}

.vmworld2 {
    margin: -15px;
    padding-bottom: 20px;
}

.vmworld2 h4 {
    margin-left: 15px;
}

.vmworld3 {
    top: 10px;
}

.vmworld4 {
    top: -15px;
}

a.world {
    color: white;
    text-decoration: none;
}

.orange a span {
    color: black;
}

.menu-ss .menu-item-3757 a:hover {
    background color: rgb(29, 94, 128);
}

img.arrow {
    background-color: #fff;
    padding: 10px 2px;
    width: auto !important;
}

.showdiv-panel button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0px 10px !important;
}

.showdiv:after,
.showdiv:before {
    bottom: 100%;
    left: 150px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.showdiv:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #eee;
    border-width: 14px;
    margin-left: -16px;
}

.showdiv {
    background-color: #eee;
    padding: 15px 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.showdiv-panel {
    position: absolute;
    z-index: 9999;
    width: 300px;
    left: -60px;
    top: 35px;
}

.showdiv-panel img {
    width: 220px;
    padding-bottom: 10px;
}

.showdiv-panel p {
    font-size: 12px;
}

.showdiv-panel button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 7px 19px;
}

.showdiv-panel {
    position: absolute;
    z-index: 9999;
}

.showdiv {
    display: none;
    background-color: #eee;
}

.showdiv img {
    position: relative;
    z-index: 9999;
}

.showdiv-panel {
    display: block;
}

.page-template-page-custom-fullwidth-notitle-php #main {
    margin-top: 65px !important
}

.mini .nav-justified>li {
    width: 20%;
}

.pro .tick-table1,
.pro1 .tick-table1 {
    margin-top: 10px
}

.pro img,
.pro1 img {
    width: 100%;
}

p.pro2ds {
    font-size: 11px;
}

p.pro2 {
    padding-top: 10px;
}

td.subhd {
    font-size: 16px !important;
}

.nav-justified .pro,
.nav-justified .pro1 {
    padding: 10px !important
}

.pro,
.pro1 {
    padding: 0 !important
}

.pro .title {
    background-color: #14852b;
    padding: 5px 10px;
}

.pro .title p,
.pro1 .title p {
    font-size: 17px;
    font-family: 'ubuntumedium';
    color: #fff;
    margin: 3px 0 !important;
    line-height: 15px !important
}

.tabb1 table tr td {
    border: 1px dashed #b1d6b7;
    border-top: none;
    border-bottom: none !important;
}

.tabb2 table tr td {
    border: 1px dashed #a4c2e4;
    border-top: none;
    border-bottom: none !important;
}

.tabb1 table tbody,
.tabb2 table tbody {
    border-bottom: 1px dashed #a4c2e4;
}

.pro .title span,
.pro1 .title span {
    font-size: 12px;
    color: #fff;
    font-family: 'ubuntulight';
    display: inline-block;
    width: 100%;
}

.pro .pro-content {
    padding: 10px;
    background-color: #f6fdf6;
    min-height: 150px;
}

.pro-content ul {
    display: block;
    margin: 0 0 0 15px;
    padding: 0;
}

.pro-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 12px;
}

.pro-bottom {
    background-color: #14852b;
    padding: 10px;
    color: white;
    font-size: 15px;
}

.pro h2,
.pro1 h2 {
    font-size: 14px;
    font-weight: bold;
    color: black;
    text-align: center;
}

.pro1 .title {
    background-color: #2963a3;
    padding: 5px 10px;
    color: white;
    font-size: 17px;
    font-family: 'ubuntumedium';
}

.pro1 .pro-content {
    padding: 10px;
    background-color: #ebf4fd;
    min-height: 150px;
}

.pro1 .pro-bottom {
    background-color: #2963a3;
    padding: 10px;
    color: white;
    font-size: 15px;
}

.page-header h1.page-title {
    margin-top: 15px;
}

.hel img {
    max-width: 100%;
}

.mrrg {
    margin-top: 5px;
    margin-bottom: 10px
}

.rgtis {
    margin-top: 17px;
}

.ish {
    font-size: 59px;
    color: #3d8dc7;
    font-family: "ubuntulight";
    line-height: 60px;
    margin-right: 10px;
    float: left;
}

.rgtis p.hel-sec {
    color: #525252;
    font-family: "ubuntulight";
    font-size: 15px;
    line-height: 18px !important;
}

.hel p.hel-sec span {
    color: #2c9a40;
}

.hel p.hel {
    line-height: 37px !important;
    color: #555;
    font-size: 37px;
}

.hel h3 {
    color: #c13339;
    font-family: "ubuntulight";
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 0;
}

.p20px {
    padding: 9px !important;
}

.p20px img {
    margin-right: 10px;
}

.bggr {
    background-color: #c7c5c5;
    float: left;
    width: 100%;
}

.bggr a {
    text-decoration: none;
    color: #3c3c3c;
}

.awp_contactform_maindiv_Community_Edition_Trial input[type="submit"] {
    background: none repeat scroll 0 0 #1F9F49 !important
}

.awp_contactform_maindiv_Community_Edition_Trial input[type="checkbox"] {
    width: 13px !important;
    margin: 5px 10px 0 5px !important
}

.awp_contactform_maindiv_Community_Edition_Trial input,
select {
    width: 100% !important;
    margin: 0 !important
}

.awp_contactform_maindiv_Community_Edition_Trial input#awp_contactform_submit_Community_Edition_Trial {
    width: auto !important;
}

.ques-sec {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.ques-sec h2 {
    font-size: 21px;
    font-family: 'ubunturegular';
    margin: 0 0 10px 0;
}

.ques-sec ul {
    display: block;
    margin: 0 0 0 30px;
    padding: 0;
}

.ques-sec ul.socl {
    margin: 0px;
}

.ques-sec ul.socl li {
    list-style: none;
    display: inline;
    margin-right: 10px;
}

.ques-sec ul.socl li i {
    color: #fff;
    font-size: 14px;
    padding: 8px 11px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.ques-sec ul.socl li i.fa-facebook {
    background-color: #3b5998;
}

.ques-sec ul.socl li i.fa-google {
    background-color: #dd4b39;
}

.ques-sec ul.socl li i.fa-twitter {
    background-color: #5ea9dd;
    padding: 8px 9px;
}

.ques-sec ul.socl li i.fa-linkedin {
    background-color: #0177b5;
    padding: 8px 9px;
}

.ques-sec ul.socl li i.fa-envelope {
    background: #2da889;
    padding: 8px 8px;
}

.ques-sec ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.lfp11 img {
    max-height: 380px !important;
}

.mrg20px {
    margin: 20px 0;
}

h3.compp {
    font-size: 16px;
    color: #404041;
    font-family: 'ubuntumedium';
    margin: 0;
}

h2.comm {
    font-size: 60px;
    font-family: 'Ubuntulight';
    margin: 0;
    color: #404041
}

.ul-sss ul {
    margin: 0 0 0 10px;
    padding: 0;
    display: block;
}

.ul-sss ul.socl {
    margin-left: 0;
}

.ul-sss ul li {
    display: inline;
    margin-right: 20px;
}

.ul-sss ul li a i {
    font-size: 10px;
    margin-right: 5px;
}

.ul-sss ul li a {
    text-decoration: none;
    font-size: 11px;
    font-family: 'ubuntubold';
    text-transform: uppercase;
}

.ul-sss ul li.org a {
    color: #e48d39;
}

.ul-sss ul li.blu a {
    color: #3d8dc7;
}

.ul-sss ul li.grn a {
    color: #3b9846;
}

.ul-sss ul li.red a {
    color: #c13339;
}

.new-ques h2 {
    color: #333;
    font-size: 19px;
    font-family: 'Ubuntulight';
}

.new-ques p {
    color: #666;
    font-size: 14px;
    font-family: 'ubunturegular';
}

.new-ques h3 {
    color: #0d6cb5;
    font-size: 15px;
    font-family: 'ubunturegular';
    margin-top: 25px;
}

.newbg {
    background-color: #ccd6c4;
    float: left;
    width: 100%;
}

.lfp1 img {
    margin: 50px 0;
}

.rrp1 {
    margin-top: 105px;
}

.rrp1 h2 {
    color: #04518c;
    font-family: 'ubunturegular';
    font-size: 37px;
    text-align: center;
}

.rrp1 h2 span {
    font-weight: bold;
    font-size: 47px;
    font-family: 'ubuntubold';
}

.rrp1 h2 span.thrd {
    color: #04518c;
    font-family: 'ubunturegular';
    font-size: 31px;
    text-align: center;
    font-weight: normal;
    float: left;
    width: 100%;
    margin-top: -3px;
}

.cb_cf_lft {
    width: 36% !important
}

.cb_cf_rgt {
    width: 60% !important
}

.awp_contactform_maindiv_TalktoCEO .cb_cf_rgt {
    float: left;
    width: 73%;
}

.awp_contactform_maindiv_TalktoCEO .stext input[type="text"] {
    width: 100%;
    margin: 0;
}

.awp_contactform_maindiv_TalktoCEO .stextarea textarea {
    float: left;
    width: 100%;
    margin: 0;
}

.awp_contactform_maindiv_TalktoCEO label.error {
    margin: 0 !important;
}

.awp_contactform_maindiv_TalktoCEO input[type="submit"] {
    background: none repeat scroll 0 0 #1f9f49 !important;
    padding: 15px 35px !important;
    background-image: none !important;
    border: 1px solid #16883b !important;
    color: #ffffff !important;
    cursor: pointer;
    display: block !important;
    font-size: 18px !important;
    padding: 15px !important;
    position: relative !important;
    width: 30% !important;
    float: left;
    margin-top: 20px;
}

.ceo .modal-body {
    background: none repeat scroll 0 0 #d6d6d6;
    float: left;
    padding: 20px;
    position: relative;
    width: 100%;
}

.ceo .modal-header {
    background-color: #5eb447;
    color: #fff;
}

.tpban {
    position: relative;
    left: 0;
}

.im-st {
    position: relative;
    left: 0;
}

.ban-tx-sec {
    position: absolute;
    left: 15%;
    top: 30%;
}

.f-bg {
    background-color: rgba(30, 100, 50, 0.4);
    padding: 15px 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
}

.s-bg {
    background-color: rgba(37, 147, 72, 0.7);
    padding: 15px 40px 15px 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.mgb20 {
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.qutoe {
    float: left;
}

.fea .quote {
    float: left;
    margin-bottom: 25px;
}

.fea .qut-txt {
    float: left;
    margin-left: 20px;
    background-color: #5eb447;
    padding: 3px 15px;
}

.s-bg h2 {
    font-family: 'ubunturegular';
    color: #fff;
    font-size: 40px;
    margin-top: 0;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
}

.post_content .s-bg p.lead {
    font-family: 'ubunturegular';
    color: #fff !important;
    font-size: 16px;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    margin-left: 26px;
}

.fea .qut-txt p {
    font-family: 'ubunturegular';
    color: #333;
    font-size: 12px;
    margin-bottom: 2px;
    line-height: normal !important;
}

.fea .qut-txt p.hd {
    font-family: 'ubunturegular';
    color: #fff !important;
    font-size: 17px;
    margin-bottom: 0;
}

.mrg20 {
    margin-top: 20px;
}

.tech-sec {
    width: 30%;
}

.page-id-2736 .post_content p.lead {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.post_content p.lead {
    color: #333333 !important;
    font-family: 'open_sansregular';
    margin-top: 0px;
}

.page-id-2736 h1.page-title {
    color: #3b3c3d;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.page-id-2776 h1.page-title,
.page-id-2790 h1,
.page-id-3706 h1,
#post-3706 h1 {
    display: none;
}

.tech-sec {
    float: left;
    margin: 20px 15px;
}

.guide {
    float: left;
    margin: 0px 13px;
}

.soln-brf {
    float: left;
    margin: 0 13px;
    padding-bottom: 10px;
}

.bottomfont {
    font-size: 12px;
    color: #0d6cb5;
    font-family: 'Ubuntulight';
    float: left;
    width: 100%;
    margin-top: 10px;
}

.bottomfont a {
    text-decoration: none;
    float: left;
}

.bottomfont img {
    margin-right: 10px;
}

table.tt img {
    max-width: none !important;
}

.awp_contactform_maindiv_cloudphysics {
    float: left;
    margin-top: 20px;
}

p.bld-fnt {
    font-size: 19px;
    font-family: 'ubuntumedium';
    color: #333333;
    margin-bottom: 0 !important
}

.new-slide img {
    margin-top: 40px;
}

.new-slide-rgt p.scndtop {
    font-size: 45px !important;
    color: #333333;
}

.new-slide-rgt p.secp {
    margin: 0 !important;
}

.new-rgtbtm {
    margin-top: 10px;
    float: left;
}

.btn-sect {
    visibility: hidden;
}

.msp h2 {
    color: #3d3c3d;
    font-size: 24px;
    font-weight: normal;
    font-family: 'Ubuntulight';
}

.msp:hover>.btn-sect {
    visibility: Visible;
}

.btn-sect {
    min-height: 50px;
}

.btn-sect .btn-bluebor {
    border: 1px solid #0d6cb5;
    padding: 2px 10px;
    font-size: 12px;
    color: #0d6cb5;
    font-family: 'Ubuntulight';
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    margin-right: 10px;
    float: left;
    border-radius: 0px;
}

.btn-sect .btn-bluebor:hover,
.btn-sect .btn-bluebor:active {
    color: #0d6cb5;
}

.nh2 h2 {
    font-size: 24px;
    color: #3b3c3d;
    font-weight: normal;
    font-family: 'Ubuntulight';
}

.mrgbtm50p {
    margin-bottom: 50px !important;
}

.logg img {
    max-width: 100%;
    height: auto;
}

.vmsuccessmsg {
    margin: 20px 0;
    color: green;
    font-weight: bold;
}

#main {
    margin-top: 123px;
}

.mrgbtm50p {
    margin-bottom: 50px !important;
}

.logg img {
    max-width: 100%;
    height: auto;
}

.vmsuccessmsg {
    margin: 20px 0;
    color: green;
    font-weight: bold;
}

.awp_contactform_maindiv_vmworld2014 label.error,
.awp_contactform_maindiv_cloudphysics label.error {
    color: red;
}

.mrgb label.error {
    display: none !important;
}

.bg-p {
    background: #f0f0f0;
    padding: 15px;
    font-size: 14px;
    color: #353535;
    font-family: 'Ubuntulight';
}

.bg-p span {
    color: #bf4325;
}

ul.ul-w {
    display: block;
    margin: 30px 20px;
    padding: 0;
}

ul.ul-w li {
    list-style: disc;
    font-size: 18px;
    color: #353535;
    font-family: 'Ubuntulight';
    margin-bottom: 10px;
}

.lft-s h2 {
    color: #3c6d8f;
    font-size: 32px;
    font-family: 'Ubuntulight';
    margin: 20px 0 10px;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 370px;
    margin-top: 20px;
}

.banbg {
    color: #fff !important;
    display: inline-block;
    background: #2c9a40;
    background: -moz-linear-gradient(left, #2c9a40 0%, #005cb8 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2c9a40), color-stop(100%, #005cb8));
    background: -webkit-linear-gradient(left, #2c9a40 0%, #005cb8 100%);
    background: -o-linear-gradient(left, #2c9a40 0%, #005cb8 100%);
    background: -ms-linear-gradient(left, #2c9a40 0%, #005cb8 100%);
    background: linear-gradient(to right, #2c9a40 0%, #005cb8 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#2c9a40', endColorstr='#005cb8', GradientType=1);
    padding: 5px 10px;
}

.cnn h2 {
    color: #0d6bb5;
    font-family: 'Ubuntulight';
    font-size: 25px;
    font-weight: normal;
}

.cnn p {
    color: #666666;
    font-family: 'Ubuntulight';
    font-size: 15px;
}

.lat-bg {
    border: 1px solid #c2c2c2;
    padding: 10px;
}

.award p {
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
    xmargin-top: 7px;
    text-transform: uppercase;
}

.award p a {
    color: #eaae02;
    font-size: 12px;
}

.bg-blue {
    background-color: #faf9f7;
    padding: 0px;
}

.bg-blue1 {
    background-color: #0063a8;
    padding: 6px 0;
    margin-top: 35px;
}

.bg-color {
    background-color: #0d6cb5;
}

.pad05 .btn-orange,
.pad05 .btn-orange:hover {
    margin-left: 0 !important;
}

.pad05 {
    padding: 0 70px !important;
}

.mmtg {
    margin-top: 15px !important;
}

h3.ht {
    font-size: 30px;
    color: #3b3c3d;
    font-family: 'Ubuntulight';
}

.search,
.menu-ss {
    margin-right: 15px;
    position: relative;
}

.menu-ss ul {
    dispaly: block.margin: 0;
    padding: 0;
    margin-bottom: 0;
    margin-top: -5px;
}

.menu-ss li {
    list-style: none;
    display: inline;
}

.menu-ss a,
.menu-ss a:hover {
    color: #fff;
    padding: 0 10px;
    border-left: 1px solid #fff;
    text-decoration: none;
    display: inline-block
}

.menu-ss li:first-child a,
.menu-ss li:first-child a:hover {
    padding: 10px 14px;
    border: none;
}

.top-social ul {
    dispaly: block.margin: 0;
    padding: 0;
    margin-bottom: 0;
    margin-top: 3px;
}

.top-social li {
    list-style: none;
    display: inline;
}

.top-social a {
    float: left;
    margin-left: 5px;
    text-decoration: none;
}

.search-bg {
    background-color: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #898989
}

.search-bg input {
    background: none;
    border: none;
    width: 80px;
    padding: 2px;
}

.search-bg img {}

.search {
    margin-top: 4px;
}

.bg-g {
    background-color: #000;
    color: #fff;
    padding: 0px 0 0 0 !important;
    width: 100%;
}

.includ-foot {
    display: none;
}

.right-bottom1 .btn-orange {
    margin-left: 0 !important;
}

.nav-pills>li:last-child>.log-pt h2 {
    margin-top: 8px;
}

.pst h4.ser {
    color: #696868;
    font-size: 26px;
    font-weight: normal;
    font-family: 'Ubuntulight';
    margin-top: 0;
}

.pst p {
    color: #878787;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Ubuntulight';
    margin-bottom: 0
}

.pst .dtt {
    color: #191919;
    font-size: 13px;
    font-weight: normal;
    font-family: 'Ubuntulight';
}

.mrg5g {
    margin: 50px 0;
}

.mrg12 {
    margin-top: 12px;
}

.padtp5 {
    padding-top: 5px;
}

.bgwht {
    background: #fff;
}

.scrllpadd {
    line-height: 45px !important;
    transition: all 0.4s linear 0s;
}

.mrg00 h2 {
    margin-top: 8px;
}

.mrg00 {
    margin-top: 0 !important;
}

.mrg10p {
    margin-top: 10px;
}

.log-pt {
    xwidth: 20%;
    padding: 10px;
    text-align: center;
}

.log-pt1 {
    padding: 10px;
    text-align: center;
}

.log-pt1 h2 {
    color: #3b3c3d;
    font-size: 22px;
    font-family: 'Ubuntulight';
    margin-bottom: 5px;
}

.log-pt h2 {
    color: #3b3c3d;
    font-size: 23px;
    font-family: 'Ubuntulight';
}

.log-pt p {
    font-size: 14px;
    color: #3b3c3d;
    font-family: 'Ubuntulight';
}

.log-pt1 p {
    font-size: 16px;
    color: #3b3c3c;
    font-family: 'Ubuntulight';
}

.logg img {
    margin-top: 20px;
}

.txcn {
    width: auto;
    text-align: center;
}

.img-lo img {
    max-width: 100%;
}

.img-lo img:last-chjild {
    margin-right: 0;
}

.mrgg {
    margin: 30px 0;
}

.top-log {
    position: relative;
}

.ln {
    height: 2px;
    background: #f7f7f7;
    positionrelative;
}

.lo-title {
    position: relative;
    width: 100%;
    text-align: center;
    color: #5a595a;
    font-size: 18px;
    font-family: 'Ubuntulight';
    top: -13px;
}

.lo-title span {
    background: #fff;
    padding: 0 10px;
}

.ath {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    font-family: 'Ubuntulight';
    font-style: italic;
}

.tt-sect h2.fp {
    color: #fff;
    font-size: 26px;
    font-weight: normal;
    font-family: 'Ubuntulight';
    margin-bottom: 15px;
    margin-top: 30px;
    font-style: italic;
}

.tt-sect h2 {
    color: #fff;
    font-size: 29px;
    font-weight: normal;
    font-family: 'Ubuntulight';
    margin-bottom: 15px;
    margin-top: 30px;
}

.tt-sect p {
    color: #5a595a;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 0 !important
}

.pad35tp {
    padding-top: 25px !important;
}

.note {
    font-size: 14px;
    color: #9e0b0f;
    font-family: 'Ubuntulight';
}

.products-overview .post_content p,
.products-overview .post_content p.lead {
    color: #3b3c3d;
}

.products-overview h2.sub {
    font-size: 25px;
    color: #282828;
    font-family: 'Ubuntulight';
    font-weight: bold;
}

.products-overview h2.sub1 {
    font-size: 25px;
    color: #14852b;
    font-family: 'Ubuntulight';
    font-weight: bold;
}

.products-overview h2.sub2 {
    font-size: 25px;
    color: #2963a3;
    font-family: 'Ubuntulight';
    font-weight: bold;
}

.elasistor-app-section .fln p,
.elasistor-app-section .fln p.lead {
    line-height: 22px;
    margin-bottom: 30px;
}

.fltnnn {
    float: left
}

.mrgtb {
    padding: 50px 0 !important;
}

.pad00 {
    padding: 0;
}

.wd-nw {
    max-width: 1600px;
    margin: 0 auto;
}

.fln {
    float: left;
    width: 45%;
    margin-left: 5%;
}

.fln1 {
    float: left;
    width: 45%;
}

.pic-sec {
    text-align: center;
}

.left-text-whole1 img {
    max-height: 360px;
}

.navbar-default .navbar-nav>li>a {
    text-transform: uppercase;
    font-family: 'Ubuntulight';
}

.mrg25 {
    margin-top: 30px;
}

.frst-slidermrg {
    margin-top: 28px;
}

.mrglt {
    margin-left: 60px;
}

.mrgt {
    margin-top: 25px;
}

.third-slidermrg {
    margin: 21px 0 20px 0;
}

.wd100 {
    width: auto;
}

.page-id-2460 h1.page-title,
.page-id-2695 h1.page-title {
    display: none;
}

.page-id-162 h1.page-title,
.page-id-2231 h1.page-title,
.page-id-18 h1.page-title,
.page-id-83 h1.page-title,
.page-id-134 h1.page-title {
    display: none;
}

.elasistor-app-section {
    padding: 50px 0;
    background-color: #ebebeb;
    float: left;
}

.elasistor-app-section .btn-orange,
.elasistor-app-section .btn-orange:hover {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #A1A1A1;
    color: #3B3C3D !important;
    font-family: 'ubuntulight';
    font-size: 16px;
    margin-left: 0px;
    padding: 5px 10px;
    text-transform: capitalize;
}

.rgt-im img {
    margin-bottom: 10px;
}

.elasistor-app-section h2 {
    margin: 0px 0 10px 0;
    font-size: 30px;
    color: #282828;
    font-family: 'ubuntulight';
    text-transform: capitalize;
}

.elasistor-app-section p {
    font-size: 15px;
    color: #3b3c3d;
    line-height: 22px;
}

.elasistor-os-section {
    padding: 50px 0;
    background-color: #fff;
}

.elasistor-os-section .btn-orange,
.elasistor-os-section .btn-orange:hover {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #A1A1A1;
    color: #3B3C3D !important;
    font-family: 'ubuntulight';
    font-size: 16px;
    margin-left: 0px !important;
    padding: 5px 10px;
    text-transform: capitalize;
}

.elasistor-os-section .btn-orange span {
    margin-top: 0;
}

.elasistor-os-section .btn-orange img {
    margin-bottom: 5px;
}

.elasistor-os-section h2 {
    margin: 0px 0 20px 0;
    font-size: 30px;
    color: #282828;
    font-family: 'ubuntulight';
}

.elasistor-os-section p {
    font-size: 15px;
    color: #3b3c3d;
}

.banbg1 {
    color: #fff !important;
    display: inline-block;
    padding: 2px 5px;
    background-color: #c94d51;
    margin-bottom: 25px;
}

.top-p {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.top-p h2 {
    color: #3b3c3d;
    font-size: 30px;
    font-family: 'ubuntulight';
}

.top-p1 h2 {
    color: #3b3c3d;
    font-size: 24px;
    font-family: 'ubuntulight';
    text-align: left;
    text-transform: capitalize;
}

.top-p1 h2.hhdd {
    font-size: 26px;
}

.top-p h2.h {
    font-size: 50px;
}

.im-sect {
    margin: 50px 0;
}

.im-sect a img {
    margin-top: -100px;
}

.top-p h3 {
    color: #3b3c3d;
    font-size: 23px;
    font-family: 'ubuntulight';
    line-height: 35px;
}

.npad {
    padding: 0 !important;
}

.navbar-default .navbar-nav>li>a {
    line-height: 65px;
}

.right-top1 h3.tphead {
    font-family: 'ubuntulight';
    color: #007e9e;
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 0;
}

.right-top1 p.scndtop {
    font-size: 37px;
    color: #242021;
    line-height: 40px
}

.right-top1 p.scndtop1 {
    font-size: 35px;
    color: #242021;
    line-height: 40px !important
}

.right-top1 p.secp {
    color: #3b3c3d;
    font-size: 19px;
    font-family: 'open_sansregular';
    margin: 20px 0;
    line-height: 27px !important;
}

.right-top1 p.secp1 {
    color: #3b3c3d;
    font-size: 25px;
    font-family: 'ubuntulight';
    margin: 10px 0;
}

p.secps {
    font-size: 31px;
    font-family: 'ubuntulight';
    margin: 120px 0 20px 0;
}

.right-top1 p.secp i {
    font-family: 'ubuntumedium';
}

.rgt-newbtn .btn-orange,
.rgt-newbtn .btn-orange:hover {
    background: none;
    border: 1px solid #a1a1a1;
    color: #3b3c3d !important;
    font-family: 'ubuntulight';
    font-size: 14px;
    margin-left: 35px;
    padding: 8px 10px;
    text-transform: none;
}

.sp table tr td {
    font-size: 15px;
}

#bus-loginform p label {
    font-size: 14px;
    color: #444;
    width: 100%;
    line-height: 18px;
}

#bus-loginform p input {
    border-width: 1px;
    border-color: rgb(215, 215, 215);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    box-shadow: 3.5px 4.33px 0px 0px rgb(159, 159, 159);
    width: 324px;
    padding: 10px 20px;
    display: block;
    margin: 8px 0 26px;
    color: #3c3c3c;
}

.bus-loginform-error {
    color: red;
}

#bus-loginform input[type="submit"] {
    background-color: rgb(13, 108, 181);
    box-shadow: 3.5px 4.33px 0px 0px rgb(5, 88, 152);
    width: 131px;
    height: 37px;
    border: none;
    color: #fff;
}

.tab-pane p.hd {
    font-size: 18px;
    margin: 20px 0;
    color: #4a4d4b;
}

.mmgg a img {
    margin-right: 10px;
}

.mmgg a {
    color: #575757;
}

.mmgg {
    color: #575757;
    margin: 10px 0;
}

.eap-content p.hh {
    font-size: 25px;
    text-align: center;
    margin-bottom: 50px;
}

.dwn-btn {
    display: block;
    text-decoration: none;
    margin: 0 auto;
    border: 1px solid #064d83;
    background: url(http://www.cloudbyte.com/wp-content/themes/cloudbyte-main/images/bg-button.png) repeat-x #0d6cb5;
    background-size: contain;
    position: relative;
}

.dwn-btn:hover {
    background: url(http://www.cloudbyte.com/wp-content/themes/cloudbyte-main/images/bg-button.png) repeat-x #1174c1;
    background-size: contain;
}

.dwn-btn:active {
    top: -1px;
}

.dwn-btn span {
    font-size: 33px;
    font-family: 'ubuntulight';
    color: #fff;
    padding: 39px 26px 39px 133px;
    display: block;
    background: url(http://www.cloudbyte.com/wp-content/themes/cloudbyte-main/images/ico-iso.png) 29px 21px no-repeat;
}

.summary-iso {
    margin: 10px auto;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 15px;
}

.summary-iso li {
    font-size: 12px;
    font-family: 'ubunturegular';
    color: #3c3c3c;
    display: inline;
    margin-left: 5px;
}

.useful-links {
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.useful-links ul {
    margin-bottom: 30px;
    position: absolute;
}

.useful-links ul li {
    float: left;
    display: inline;
}

.useful-links ul li a {
    display: block;
    text-align: center;
    width: 310px;
    font-size: 14px;
    font-family: 'ubunturegular';
    color: #3c3c3c;
    text-decoration: none;
}

.useful-links ul li a img {
    position: relative;
    top: 6px;
    padding: 0 5px;
}

.post_content p.lead {
    color: #555555;
}

.ccc h3.gt {
    font-size: 18px;
    margin: 0;
}

.ccc p.lead {
    font-size: 14px;
    margin: 0;
}

.cloud-title h1 {
    color: #3C3C3C;
    font-family: "ubuntulight";
    font-size: 30px;
    font-weight: normal;
    line-height: 27px;
    margin: 30px 0 10px;
}

.cloud-title a span img {
    border: 0 none;
    margin: 0 7px 0 0;
    position: relative;
    top: 3px;
    width: 17px;
    vertical-align: top;
}

#main article .openstack img {
    max-height: 430px;
}

#opnstckenv p {
    font-size: 16px !important
}

ul.Lst {
    margin-top: 25px;
    padding-left: 20px;
}

ul.Lst li {
    font-size: 16px;
    line-height: 30px;
    list-style: outside url("http://www.cloudbyte.com/wp-content/uploads/2015/07/bullet-green.gif") disc;
}

.cloud-title a {
    background: linear-gradient(to bottom, #ED8F15 0%, #D96C0D 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #A85003;
    color: #FFFFFF;
    font-family: "ubunturegular";
    font-size: 14px;
    padding: 6px 10px 4px;
    text-decoration: none;
    transition: all 0.4s linear 0s;
}

.cloud-title a:hover {
    background: none repeat scroll 0 0 #C17F00;
}

.txcen {
    text-align: center;
}

a.cnnt-s {
    color: #FFC627;
}

.mrgt20px {
    margin-top: 20px;
}

.form_rgt_part input,
.form_rgt_part textarea {
    margin: 0 !important;
}

.mrgbtm20px {
    margin-bottom: 20px;
}

.inner-main article,
.inner-main {
    margin-top: 20px;
}

.mrgt20px img {
    margin-right: 10px;
}

.tabbable .nav {
    background: none !important;
}

.tabbable .nav>li>a {
    padding: 3px 10px !important;
}

.pro .tick-table1 table tr th {
    color: #fff;
    font-family: ubunturegular;
    font-size: 18px;
    background-color: #14852b;
    font-weight: normal;
    text-transform: none;
    border-bottom: none;
    padding: 13px 20px;
}

.pro .tick-table1,
.pro table {
    margin-bottom: 0;
}

.tick-table1 table tr th {
    color: #fff;
    font-family: 'ubunturegular';
    font-size: 13px;
    text-transform: uppercase;
    background-color: #005cb9;
    font-weight: normal;
    vertical-align: middle !important;
}

.pro1 .tick-table1 table tr td.subhd {
    font-size: 16px !important;
}

.pro .tick-table1 table tr td.subhd {
    background-color: #b1d6b7;
    color: #5E7325;
    font-family: ubuntulight;
    font-size: 16px !important;
    padding: 5px 20px;
}

.pro .tick-table1 table tr td {
    color: #515151;
    font-family: ubuntulight;
    font-size: 12px;
    padding: 10px 20px;
    border-bottom: none;
}

.odd {
    background-color: #f6fdf6;
}

.even {
    background-color: #FEFFFB;
}

.odd1 {
    background-color: #ebf4fd;
    ;
}

.even1 {
    background-color: #FAFCFD;
}

.tick-table1 table tr td {
    color: #555555;
    font-family: 'ubunturegular';
    font-size: 11px;
    padding: 13px 20px;
    border-bottom: 1px solid #fec524;
}

.tick-table1 table tr td ul {
    margin: o;
    padding: 0;
}

.tick-table1 table tr td ul li {
    list-style: none;
    float: left;
    margin-bottom: 20px;
}

.tick-table1 table tr td ul li img {}

.tick-table1 table tr td ul li p {
    font-family: 'ubuntubold';
    font-size: 14px;
}

td.subhd {
    font-weight: bold;
    font-size: 16px;
    background-color: #a4c2e4;
}

.txt p {
    font-style: normal !important
}

span.author {
    color: #0D6CB5;
}

span.b-hd {
    color: #0D6CB5;
}

.at {
    color: #1F9F49;
}

h3.sub {
    font-size: 17px;
}

.guide p.lead,
.prod p.lead {
    color: #555555;
    font-family: ubuntulight;
    font-size: 15px;
    margin: 15px 0 10px;
}

.contact-image {
    background: url("/wp-content/uploads/2014/05/contact-map.jpg") no-repeat scroll center top rgba(0, 0, 0, 0);
    height: 431px;
    position: relative;
    width: 810px;
}

.contact-image .head-office {
    border: none;
    display: block;
    position: absolute;
    top: 131px;
    left: 120px;
}

.contact-image .india-office {
    border: none;
    display: block;
    position: absolute;
    top: 158px;
    left: 533px;
}

.contact-image a:hover {
    animation: fadeInLeft 2s;
    -moz-animation: pulse .4s;
    -webkit-animation: pulse .4s;
    -o-animation: pulse .4s;
}

.contact-image a span {
    width: 100px;
    height: auto;
    line-height: 20px;
    padding: 10px;
    left: 37%;
    margin-left: -53px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: rgba(0, 114, 164, 1);
    text-indent: 0px;
    border-radius: 5px;
    position: absolute;
    bottom: 68px;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    box-shadow: 3px -3px 1px rgba(31, 159, 63, 0.9);
    -webkit-transform: translate(25px) rotate(15deg) scale(1.5);
    -moz-transform: translate(35px) rotate(25deg) scale(1.5);
    -o-transform: translate(35px) rotate(25deg) scale(1.5);
    -ms-transform: translate(35px) rotate(25deg) scale(1.5);
    transform: translate(35px) rotate(25deg) scale(1.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-image a span:before,
.contact-image a span:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -9px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.1);
}

.contact-image a span:after {
    bottom: -9px;
    margin-left: -10px;
    border-top: 10px solid #1172ac;
}

.contact-image a:hover span {
    visibility: visible;
    opacity: 0.9;
    -webkit-transform: translate(0px) rotate(0deg) scale(1);
    -moz-transform: translate(0px) rotate(0deg) scale(1);
    -o-transform: translate(0px) rotate(0deg) scale(1);
    -ms-transform: translate(0px) rotate(0deg) scale(1);
    transform: translate(0px) rotate(0deg) scale(1);
}

.lead {
    color: #555;
    font-family: ubuntulight;
    font-size: 14px;
    font-weight: 200;
    margin: 15px 0 10px;
}

.press-release {
    border: 1px solid #f7f7f7;
}

.press-release p a {
    color: #1F9F49;
}

.press-release p a:hover {
    color: #006666;
}

.social-media-section ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.social-media-section ul li {
    float: left;
    list-style: none;
}

.social-media-section ul a.facebook {
    background: url("/wp-content/themes/cloudbyte/images/facebook-ico.png") no-repeat scroll 8px -2px/22% auto #3B5998;
}

.social-media-section ul a.twitter {
    background: url("/wp-content/themes/cloudbyte/images/twitter-ico.png") no-repeat scroll -14px 0/39% auto #56D7FE;
}

.social-media-section ul a.linkedin {
    background: url("/wp-content/themes/cloudbyte/images/linked-in.png") no-repeat scroll 10px 0/28% auto #0072A4;
}

.social-media-section ul a.facebook:hover {
    background-size: 25% auto;
}

.social-media-section ul a.twitter:hover {
    background-size: 42% auto;
}

.social-media-section ul a.linkedin:hover {
    background-size: 32% auto;
}

.social-media-section ul a {
    background: none repeat scroll 0 0 #CCCCCC;
    color: #FFFFFF;
    display: block;
    font-family: 'ubuntumedium';
    font-size: 27px;
    padding: 19px 0;
    text-decoration: none;
    text-indent: 122px;
    width: 281px;
    transition: all 0.3s ease 0s;
}

.white-sect .textwidget {
    margin-top: 20px;
}

a.mr {
    margin-left: 15px;
}

#sidebar1 h4 {
    border-bottom: medium none;
    color: #0D6CB5;
    font-family: 'ubuntulight';
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 0;
    margin-left: 0;
    padding: 20px 0 10px;
}

.date-section {
    float: left;
    color: #5D5D5D !important;
    font-size: 12px;
}

.read-section {
    float: right;
}

.read-section a {
    text-decoration: none;
    color: #1F9F49;
    font-size: 12px;
}

.read-section a:hover {
    background: none repeat scroll 0 0 #1F9F49;
    color: #fff;
    padding: 0 3px;
    transition: all 0.3s ease 0s;
}

.news-section {
    border: 1px solid #FFFFFF;
    margin: 0;
    padding-bottom: 10px;
    float: left;
    margin-bottom: 10px;
}

.mrgbtt p {
    font-size: 14px !important;
}

.blog-cont {}

.blog-cont {
    background-color: #ffffff;
}

.blog-whole {
    border: 1px solid #cccccc;
    margin-bottom: 15px;
    background-color: #e5e5e5;
}

.blog-whole:hover {
    box-shadow: 0 3px 3px #cccccc;
    transition: all 0.4s linear 0s;
    background-color: #0d6cb5;
}

.blog-whole:hover>.date-part {
    xbackground-color: #0d6cb5;
    color: #ffffff;
}

.date-part {
    color: #5a5a5a;
    text-align: center;
    xbackground-color: #e5e5e5;
}

.date-part .adate p.date {
    background: none;
    font-size: 30px;
    margin-bottom: 0px;
    font-weight: bold;
}

.date-part .adate p.month {
    font-size: 20px;
}

.date-part .adate p {
    color: #555555
}

.blog-whole:hover>.date-part .adate p {
    color: #ffffff
}

.blog-cont h3 a,
.blog-cont h3 a:hover {
    text-decoration: none;
}

.blog-cont h3 {
    margin-bottom: 0;
}

.author {
    margin-bottom: 20px;
}

.blog-cont p:last-child {
    margin: 0;
    padding-bottom: 15px;
}

.logo-section img {
    float: left;
    margin-top: 30px;
}

.news-section:hover {
    border: 1px solid #EFEFEF;
}

.news-cont {
    float: left;
}

.no-bg {
    background: none !important;
}

.news-cont span {
    display: inline;
    margin-right: 10px;
}

.date {
    background: #1F9F49;
    color: #fff;
    padding: 1px 3px;
    font-size: 12px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.place {
    background: #535353;
    color: #fff;
    padding: 1px 3px;
    font-size: 12px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.event-section p {
    margin: 5px 0;
}

.head-section {
    position: relative;
}

.head-section h4 a,
.head-section h4 a:hover {
    text-decoration: none;
}

.head-section span {
    color: #5D5D5D;
    display: block;
    font-size: 12px;
    padding: 5px 0px 10px;
}

.frmhd h3 {
    background: none repeat scroll 0 0 #1F9F49;
    color: #FFFFFF;
    display: block;
    font-family: 'ubuntulight';
    font-size: 24px;
    font-weight: normal;
    padding: 22px;
    margin-bottom: 0px;
}

.awp_contactform_maindiv_Promotion .form_left_part {
    color: #646464;
    font-family: "ubunturegular" !important;
    font-size: 14px;
}

.awp_contactform_maindiv_Promotion .absp_checkval label {
    line-height: 16px;
}

.awp_contactform_maindiv_Promotion .absp_checkval {
    font-size: 14px;
    color: #646464;
}

.awp_contactform_maindiv_Promotion .form_section .form_left_part {
    width: 35% !important;
    float: left;
}

.awp_contactform_maindiv_Promotion .form_section {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.awp_contactform_maindiv_Promotion .form_section .form_rgt_part {
    width: 65% !important;
    float: left;
}

.awp_contactform_maindiv_Promotion .absp_checkval input[type="checkbox"] {
    float: left;
}

.awp_contactform_maindiv_Promotion .absp_checkval label {
    float: left;
}

.awp_contactform_maindiv_Promotion .absp_contact_mandatory {
    float: right !important
}

.awp_contactform_maindiv_Promotion .form_left_part span.absp_contact_label {
    float: left;
    margin-top: 12px
}

.awp_contactform_maindiv_Promotion {
    margin-top: 15px;
}

.awp_contactform_maindiv_Promotion #awp_contactform_submit_Promotion {
    background: none repeat scroll 0 0 #1f9f49 !important;
    color: #ffffff;
    float: left;
    font-size: 17px;
    font-weight: bold;
    margin-top: 9px !important;
    padding: 9px !important;
    width: 18% !important;
    margin-left: 35%;
    border: none;
}

.awp_contactform_maindiv_cloudphysics .absp_checkval input[type="checkbox"] {
    width: 20px !important;
    float: left;
}

.awp_contactform_maindiv_cloudphysics .mrgb {
    float: left;
    margin-bottom: 10px;
}

.awp_contactform_maindiv_cloudphysics .absp_checkval label {
    line-height: 16px;
}

.awp_contactform_maindiv_cloudphysics .absp_checkval {
    font-size: 14px;
    color: #646464;
}

.awp_contactform_maindiv_cloudphysics .form_section .form_left_part {
    width: 35% !important;
    float: left;
}

.awp_contactform_maindiv_cloudphysics .form_section {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.awp_contactform_maindiv_cloudphysics .form_section .form_rgt_part {
    width: 65% !important;
    float: left;
}

.awp_contactform_maindiv_cloudphysics .absp_checkval input[type="checkbox"] {
    float: left;
}

.awp_contactform_maindiv_cloudphysics .absp_checkval label {
    float: left;
}

.awp_contactform_maindiv_Free_Trial label.error {
    margin: 0 !important;
}

.awp_contactform_maindiv_cloudphysics .form_left_part span.absp_contact_label {
    float: left;
}

.awp_contactform_maindiv_cloudphysics .form_left_part span.absp_contact_mandatory {
    float: left;
    color: #bf4325;
}

.awp_contactform_maindiv_cloudphysics .form_left_part {
    font-family: 'ubunturegular' !important;
    color: #646464;
    font-size: 14px;
}

.awp_contactform_maindiv_ContactUs input.awp_contactform_submit_ContactUs {
    background: none repeat scroll 0 0 #1F9F49 !important;
    color: #FFFFFF;
    float: right;
    font-size: 17px;
    font-weight: bold;
    margin-top: 9px !important;
    padding: 9px !important;
    width: 18% !important;
}

.awp_contactform_maindiv_cloudphysics input,
.awp_contactform_maindiv_cloudphysics select,
.awp_contactform_maindiv_cloudphysics textarea {
    background: none repeat scroll 0 0 #F6F6F6;
    border: 1px solid #B6B6B6;
    color: #3C3C3C;
    display: block;
    margin: 0 30px;
    padding: 10px 15px;
    transition: all 0.4s linear 0s;
    width: 100% !important;
}

.awp_contactform_maindiv_cloudphysics .awp_contactform_submit_cloudphysics {
    background: none repeat scroll 0 0 #1F9F49 !important;
    color: #FFFFFF;
    float: left;
    font-size: 17px;
    font-weight: bold;
    margin-top: 9px !important;
    padding: 9px !important;
    width: 18% !important;
}

.awp_contactform_maindiv_cloudphysics .awp_contactform_submit_cloudphysics {
    margin: 0;
    margin-left: 36%;
}

.awp_contactform_maindiv_vmworld2014 .absp_checkval input[type="checkbox"] {
    width: 20px !important;
    float: left;
}

.awp_contactform_maindiv_vmworld2014 .mrgb {
    float: left;
    margin-bottom: 10px;
}

.awp_contactform_maindiv_vmworld2014 .absp_checkval label {
    line-height: 16px;
}

.awp_contactform_maindiv_vmworld2014 .absp_checkval {
    font-size: 14px;
    color: #646464;
}

.awp_contactform_maindiv_vmworld2014 .form_section .form_left_part {
    width: 35% !important;
    float: left;
}

.awp_contactform_maindiv_vmworld2014 .form_section {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.awp_contactform_maindiv_vmworld2014 .form_section .form_rgt_part {
    width: 65% !important;
    float: left;
}

.awp_contactform_maindiv_vmworld2014 .absp_checkval input[type="checkbox"] {
    float: left;
}

.awp_contactform_maindiv_vmworld2014 .absp_checkval label {
    float: left;
}

.awp_contactform_maindiv_Free_Trial label.error {
    margin: 0 !important;
}

.awp_contactform_maindiv_vmworld2014 .form_left_part span.absp_contact_label {
    float: left;
}

.awp_contactform_maindiv_vmworld2014 .form_left_part span.absp_contact_mandatory {
    float: left;
    color: #bf4325;
}

.awp_contactform_maindiv_vmworld2014 .form_left_part {
    font-family: 'ubunturegular' !important;
    color: #646464;
    font-size: 14px;
}

.awp_contactform_maindiv_ContactUs input.awp_contactform_submit_ContactUs {
    background: none repeat scroll 0 0 #1F9F49 !important;
    color: #FFFFFF;
    float: right;
    font-size: 17px;
    font-weight: bold;
    margin-top: 9px !important;
    padding: 9px !important;
    width: 18% !important;
}

.awp_contactform_maindiv_vmworld2014 .awp_contactform_submit_vmworld2014 {
    background: none repeat scroll 0 0 #1F9F49 !important;
    color: #FFFFFF;
    float: left;
    font-size: 17px;
    font-weight: bold;
    margin-top: 9px !important;
    padding: 9px !important;
    width: 18% !important;
}

.awp_contactform_maindiv_vmworld2014 .awp_contactform_submit_vmworld2014 {
    margin: 0;
    margin-left: 36%;
}

.awp_contactform_maindiv_ContactUs input,
.awp_contactform_maindiv_ContactUs select,
.awp_contactform_maindiv_ContactUs textarea {
    margin: !important;
}

.awp_contactform_maindiv_ContactUs .form_rgt_part input,
.awp_contactform_maindiv_ContactUs .form_rgt_part textarea {
    width: 100% !important;
}

.awp_contactform_maindiv_ContactUs input.awp_contactform_submit_ContactUs {
    margin: 0 !important;
}

.awp_contactform_maindiv_ContactUs {
    margin: 40px 0;
}

.form_left_part {
    font-size: 18px;
}

.awp_contactform_maindiv_Free_Trial button,
.awp_contactform_maindiv_Free_Trial input[type="submit"],
.awp_contactform_maindiv_Free_Trial input[type="submit"]:focus,
.awp_contactform_maindiv_BecomeaPartner button,
.awp_contactform_maindiv_BecomeaPartner input[type="submit"],
.awp_contactform_maindiv_BecomeaPartner input[type="submit"]:focus,
.awp_contactform_maindiv_ContactSales button,
.awp_contactform_maindiv_ContactSales input[type="submit"],
.awp_contactform_maindiv_ContactSales input[type="submit"]:focus {
    background: none repeat scroll 0 0 #1F9F49 !important
}

.awp_contactform_maindiv_Free_Trial input,
select {
    margin: 0 !important;
    width: 100% !important;
}

.awp_contactform_maindiv_ContactSales input,
select {
    margin: 0 !important;
    width: 100% !important;
}

.awp_contactform_maindiv_BecomeaPartner input,
select {
    margin: 0 !important;
    width: 100% !important;
}

.awp_contactform_maindiv_Free_Trial input[type="checkbox"],
.awp_contactform_maindiv_BecomeaPartner input[type="checkbox"],
.awp_contactform_maindiv_ContactSales input[type="checkbox"] {
    width: 13px !important;
    margin: 0 15px 0 5px !important
}

.formwrap {
    background: none repeat scroll 0 0 #D6D6D6;
    padding: 30px;
    width: 100%;
}

.scheckbox label {
    font-size: 13px !important;
}

body.archive {
    background: none !important;
    border-radius: 0 !important;
    color: #333333 !important;
    font-size: 14px !important;
    padding: 0 !important;
}

.mg-btm15 {
    padding-bottom: 15px !important
}

.mg-top10 {
    padding-top: 10px !important
}

.right-bottom1 {
    text-align: left;
}

.register-deal .awp_contactform_maindiv_Registeradeal .form_section .form_left_part {
    margin-top: 10px;
}

.awp_contactform_maindiv_Registeradeal {
    margin-top: 50px;
}

.absp_checkval label[for=customfield90]:after {
    content: "*";
    color: #f00;
}

.register-deal .mrgat {
    margin-top: 30px;
}

.register-deal-form .awp_contactform_maindiv_DealRegister .form_section:last-of-type span.absp_contact_mandatory {
    display: none;
}

.mrg81px {
    margin-top: 81px !important
}

.register-deal .form_section:last-child {
    position: absolute;
    right: 50px;
}

.register-deal .awp_contactform_maindiv_Registeradeal .form_section .form_left_part {
    width: 40% !important
}

.register-deal .awp_contactform_maindiv_Registeradeal .form_section .form_rgt_part {
    width: 60% !important;
}

.register-deal label.error {
    float: left;
    width: 100%;
}

.register-deal .register-deal-form input[type="submit"] {
    margin-left: 40% !important;
}

.register-deal input.absp_contact_input_checkbox,
.register-deal input.absp_contact_input_radio {
    position: relative;
    top: 2px;
    width: 15px !important;
    margin: 0 !important;
    line-height: 20px !important;
    height: 15px !important;
    margin-top: 4px !important;
    margin-right: 5px !important;
    border: none !important
}

.register-deal-form h2 {
    font-size: 30px !important;
    color: #666;
    font-family: 'ubuntumedium';
    margin-bottom: 20px;
    float: left;
    width: 100%;
    margin-top: 8px !important;
}

.register-deal h2 {
    font-size: 18px;
    color: #666;
    font-family: 'ubuntumedium';
}

.register-deal h3.sub {
    font-size: 18px;
    color: #444;
    font-family: 'ubunturegular';
}

.register-deal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'ubunturegular';
    width: 80%;
}

.register-deal p.im {
    margin-top: 30px;
}

.register-deal-form .form_section {
    float: left;
    width: 100% !important;
    margin-bottom: 10px;
}

.register-deal .form_section {
    margin-bottom: 5px !important
}

.register-deal-form .form_left_part label {
    font-family: "ubuntulight";
    font-size: 18px;
    line-height: 22px;
}

.register-deal-form .form_rgt_part input,
.register-deal-form .form_rgt_part select,
.register-deal-form .form_rgt_part textarea {
    padding: 10px;
    background: #f6f6f6 none repeat scroll 0 0;
    border: 1px solid #b6b6b6;
    color: #000;
    width: 100%;
    font-family: ubuntulight;
    font-size: 14px;
    font-weight: 200;
    margin: 0 0 10px;
    height: 42px;
}

.register-deal-form .form_left_part span.absp_contact_label {
    float: left;
    width: auto !important;
    font-size: 14px !important;
    font-family: 'ubunturegular';
}

.register-deal-form .form_left_part span.absp_contact_mandatory {
    float: right !important;
    margin-left: 5px
}

.register-deal-form .form_rgt_part textarea {
    height: 100px;
}

.register-deal-form input[type="submit"] {
    background: #1f9f49 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: ubuntulight;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 9px 20px !important;
    text-decoration: none !important;
    margin-left: 0 !important
}

.register-deal-form .awp_contactform_maindiv_Registeradeal .form_section {
    padding: 6px 0 !important;
    margin: 0 !important;
}

.mrg50 {
    margin-top: 50px;
}

.mrg-top-10 {
    margin-top: 30px;
}

.pull-right.imga {
    margin-bottom: 10px;
    margin-top: -38px;
}

.lft-s ul {
    margin-left: 40px;
}

.rrp .tphead {
    margin-top: 0;
}

.rrp p.secp {
    line-height: 25px !important;
    margin: 8px 0 !important;
}

.talk {
    margin-top: 25px;
}

.pad-ltt .prod-pg {
    padding: 0;
}

.ul-ssec p.btm-sl {
    color: #0d6cb5 !important;
    font-size: 18px;
    font-family: "ubunturegular";
    margin-top: 25px;
}

.ul-ssec ul {
    margin: 0;
    padding: 0;
    display: block;
}

.ul-ssec ul li {
    list-style: none;
    color: #333;
    font-size: 14px;
    font-family: "ubunturegular";
    margin-top: 15px;
}

.ul-ssec ul li a {
    color: #333;
    font-size: 14px;
    font-family: "ubunturegular";
    text-decoration: none;
}

.ul-ssec ul li img {
    margin-right: 15px;
}

.talk .pd-lff {
    padding-left: 10px;
}

.ul-ssec h3 {
    color: #333;
    font-size: 24px;
    font-family: "ubunturegular";
    margin-top: 35px;
}

.talk h2 {
    color: #333;
    font-size: 36px;
    font-family: "ubunturegular";
    margin-top: 0;
}

.talk p {
    color: #333 !important;
    font-size: 14px;
    font-family: "ubuntulight";
}

.vm-frm {
    margin: 20px 0;
}

.ent h2 {
    color: #666;
    font-family: 'ubuntumedium';
    font-size: 25px;
}

.mrg50p {
    margin: 50px 0;
}

.bgclr {
    background-color: #f6f5f4;
    height: 10px;
    margin: 60px 0 20px 0;
    float: left;
    width: 100%;
}

.bgclr1 {
    background-color: #0063a8;
    margin: 20px 0;
    float: left;
    width: 100%;
    border-top: 5px solid #126eae;
    border-bottom: 5px solid #126eae;
    font-size: 18px;
    color: #fff;
    font-family: 'ubuntulight';
    padding: 10px 0;
    text-align: center;
}

.bgclr1 a,
.bgclr1 a:hover {
    color: #fff;
}

.page-id-2405 h1.page-title {
    display: none;
}

.mmar {
    margin-top: 70px !important;
}

.mmg1 {
    margin-top: 120px;
}

.awp_contactform_maindiv_Promotion .form_rgt_part input,
.awp_contactform_maindiv_Promotion .form_rgt_part select,
.awp_contactform_maindiv_Promotion textarea {
    background: none repeat scroll 0 0 #F6F6F6;
    border: 1px solid #B6B6B6;
    color: #3C3C3C;
    display: block;
    margin: 0 30px;
    padding: 10px 15px;
    transition: all 0.4s linear 0s;
    width: 100% !important;
}

.ent-new {
    float: right !important;
}

.ent-new h2 {
    font-weight: normal;
    font-size: 30px;
    font-family: 'ubuntumedium';
    color: #666666;
}

.ent-new p {
    font-size: 14px;
    color: #333333;
    font-family: 'Ubuntulight';
}

.lp {
    margin-bottom: 40px;
}

.lp p {
    font-family: 'Ubuntulight';
    font-size: 16px;
    color: #353535;
    margin-bottom: 15px;
}

.lp p span {
    font-family: 'ubuntumedium';
    font-size: 16px;
    color: #353535;
}

.mrg50pp .right-top1 p.banbg1 {
    font-size: 19px
}

.mrg50pp {
    margin-top: 50px;
}

.eshd {
    text-align: center;
    font-family: 'Ubuntulight' !important;
    float: left;
    width: 100%;
}

.eshd h2 {
    color: #3c6d8f;
    font-size: 40px;
    font-family: 'Ubuntulight';
}

.eshd p {
    font-size: 25px;
    color: #333333;
}

#main {
    margin-top: 123px;
}

.ent h2 {
    color: #666;
    font-family: 'ubuntumedium';
    font-size: 25px;
}

.mrg50p {
    margin: 50px 0;
}

.bgclr {
    background-color: #f6f5f4;
    height: 10px;
    margin: 20px 0;
    float: left;
    width: 100%;
}

.page-id-2405 h1.page-title {
    display: none;
}

.mmar {
    margin-top: 70px !important;
}

.mmg1 {
    margin-top: 120px;
}

.awp_contactform_maindiv_ContactUs input,
.awp_contactform_maindiv_ContactUs select,
.awp_contactform_maindiv_ContactUs textarea {
    background: none repeat scroll 0 0 #F6F6F6;
    border: 1px solid #B6B6B6;
    color: #3C3C3C;
    display: block;
    margin: 0 30px;
    padding: 10px 15px;
    transition: all 0.4s linear 0s;
    width: 60% !important;
}

.awp_contactform_maindiv_vmworld2014 input,
.awp_contactform_maindiv_vmworld2014 select,
.awp_contactform_maindiv_vmworld2014 textarea {
    background: none repeat scroll 0 0 #F6F6F6;
    border: 1px solid #B6B6B6;
    color: #3C3C3C;
    display: block;
    margin: 0 30px;
    padding: 10px 15px;
    transition: all 0.4s linear 0s;
    width: 100% !important;
}

.nav-tabs>li:first-child {
    margin-left: 50px;
}

.nav-tabs>li {
    width: 30%;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.nav-tabs>li a {
    transition: all 0.3s ease 0s;
    background: #00918F;
    color: #fff;
}

.support-form label {
    color: #444;
    font-size: 14px;
    font-family: "ubunturegular";
    font-weight: normal
}

.support-form input {
    background-color: #FFFFFF;
    border-color: #D7D7D7;
    border-style: solid;
    border-width: 1px;
    box-shadow: 3.5px 4.33px 0 0 #9F9F9F;
    color: #3C3C3C;
    display: block;
    margin: 0px 0 26px;
    padding: 10px 20px;
}

.js-marquee {
    margin-top: 0 !important;
}

.js-marquee img {
    margin-right: 55px;
}

.mrg00 {
    margin-top: -3px;
}

.nav-tabs>li a:hover {
    background: #fff;
    color: #0E0E0E
}

.nav-tabs>li.active,
.nav-tabs>li:hover.active {
    border-top: 3px solid #00918F;
}

.nav-tabs>li:first-child a {
    transition: all 0.3s ease 0s;
    background: #0D6CB5;
}

.nav-tabs>li.active:first-child,
.nav-tabs>li:hover.active:first-child {
    transition: all 0.3s ease 0s;
    border-top: 3px solid #0D6CB5;
}

.nav-tabs>li:last-child a {
    transition: all 0.3s ease 0s;
    background: #2D9933;
}

.nav-tabs>li.active:last-child,
.nav-tabs>li:hover.active:last-child {
    transition: all 0.3s ease 0s;
    border-top: 3px solid #2D9933;
}

.press-release {
    padding: 10px;
    margin-top: 20px;
}

.brd {
    border: 1px solid #ccc;
}

.press-release:hover {
    border: 1px solid #ccc;
}

.pr-content {
    display: none;
}

.head-section {
    cursor: pointer;
}

.note {
    color: red;
    font-size: 12px;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.tab-content {
    margin-top: 35px;
}

.head-section p.lead {
    margin-bottom: 0px;
}

.head-section h4 {
    margin-top: 0;
}

.head-section p.lead span {
    padding: 0;
}

.pr-content {
    margin-top: 15px;
}

.pr-content p {
    font-size: 14px;
}

.close-accor {
    background: none repeat scroll 0 0 #1F9F49;
    color: #FFFFFF;
    display: none;
    font-size: 10px;
    line-height: 21px;
    font-weight: bold;
    padding: 0 7px;
    position: absolute;
    right: 0;
    text-shadow: 1px 0 1px #000000;
    top: 0;
    cursor: pointer;
}

@media (min-width:768px) {
    .left-text-whole1 {
        float: left;
        width: 100%;
        text-align: center;
    }
}

small,
.small {
    font-size: 85%;
}

cite {
    font-style: normal;
}

.text-muted {
    color: #999999;
}

.text-primary {
    color: #428bca;
}

.text-primary:hover {
    color: #3071a9;
}

.text-warning {
    color: #8a6d3b;
}

.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

.text-danger:hover {
    color: #843534;
}

.text-success {
    color: #3c763d;
}

.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

.text-info:hover {
    color: #245269;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.page-header {
    xpadding-bottom: 9px;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

.list-inline>li:first-child {
    padding-left: 0;
}

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.428571429;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 180px;
        zoom: 1;
    }
    .dl-horizontal dd:before,
    .dl-horizontal dd:after {
        content: " ";
        display: table;
    }
    .dl-horizontal dd:after {
        clear: both;
    }
    .dl-horizontal dd:before,
    .dl-horizontal dd:after {
        content: " ";
        display: table;
    }
    .dl-horizontal dd:after {
        clear: both;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #999999;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eeeeee;
}

blockquote p {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25;
}

blockquote p:last-child {
    margin-bottom: 0;
}

blockquote small,
blockquote .small {
    display: block;
    line-height: 1.428571429;
    color: #999999;
}

blockquote small:before,
blockquote .small:before {
    content: '2014 �0A0';
}

blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
}

blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
    text-align: right;
}

blockquote.pull-right small:before,
blockquote.pull-right .small:before {
    content: '';
}

blockquote.pull-right small:after,
blockquote.pull-right .small:after {
    content: '�0A0 2014';
}

blockquote:before,
blockquote:after {
    content: "";
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    white-space: nowrap;
    border-radius: 4px;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-right: auto;
    margin-left: auto;
    zoom: 1;
}

.container:before,
.container:after {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

.container:before,
.container:after {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

@media (min-width:768px) {
    .container {
        width: 100%;
    }
}

@media (min-width:992px) {
    .container {
        width: 100%;
    }
}

.row {
    xmargin-left: -15px;
    xmargin-right: -15px;
    zoom: 1;
}

.row:before,
.row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.row:before,
.row:after {
    content: " ";
    display: table;
}

.row:after {
    clear: both;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666666666666%;
}

.col-xs-10 {
    width: 83.33333333333334%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666666666666%;
}

.col-xs-7 {
    width: 58.333333333333336%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666666666667%;
}

.col-xs-4 {
    width: 33.33333333333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.666666666666664%;
}

.col-xs-1 {
    width: 8.333333333333332%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666666666666%;
}

.col-xs-pull-10 {
    right: 83.33333333333334%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666666666666%;
}

.col-xs-pull-7 {
    right: 58.333333333333336%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666666666667%;
}

.col-xs-pull-4 {
    right: 33.33333333333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.666666666666664%;
}

.col-xs-pull-1 {
    right: 8.333333333333332%;
}

.col-xs-pull-0 {
    right: 0%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666666666666%;
}

.col-xs-push-10 {
    left: 83.33333333333334%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666666666666%;
}

.col-xs-push-7 {
    left: 58.333333333333336%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666666666667%;
}

.col-xs-push-4 {
    left: 33.33333333333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.666666666666664%;
}

.col-xs-push-1 {
    left: 8.333333333333332%;
}

.col-xs-push-0 {
    left: 0%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666666666666%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333333334%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666666666666%;
}

.col-xs-offset-7 {
    margin-left: 58.333333333333336%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666666666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.666666666666664%;
}

.col-xs-offset-1 {
    margin-left: 8.333333333333332%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (max-width:960px) {
    .blue-bg {
        background-color: #6ec4e7;
        margin: 20px 0;
    }
    .blue-r {
        background-color: #0096aa;
        margin: 20px 0;
    }
    .cnt-c {
        font-size: 15px !important;
    }
    .mmm .content-section1 p {
        font-size: 15px !important;
    }
    .blue-r h3,
    .blue-r p {
        color: #fff !important;
        margin: 20px 0;
    }
    .blue-dr {
        background-color: #00837e;
        margin: 20px 0;
    }
    .blue-dr h3,
    .blue-dr p {
        color: #fff !important
    }
    .drk-blue {
        background-color: #005487;
        color: #fff !important;
        margin: 20px 0;
    }
    .drk-blue h3,
    .drk-blue p {
        color: #fff !important
    }
    .cnt-c {
        font-size: 15px;
    }
    .pur-blue {
        background-color: #7764a0;
        color: #fff !important;
        margin: 20px 0;
    }
    .pur-blue h3,
    .pur-blue p {
        color: #fff !important
    }
    .dd-blue {
        background-color: #005cb9;
        margin: 20px 0;
    }
    .dd-blue h3,
    .dd-blue p {
        color: #fff !important
    }
    .title-section {
        font-size: 45px;
        color: #fff;
        font-family: 'bebas_neueregular';
        padding: 25px;
        line-height: 45px;
        min-height: 185px;
    }
    .title-section1 {
        color: #fff;
        font-family: 'bebas_neueregular';
        padding: 25px;
        min-height: 150px;
    }
    .nav>li>a {
        padding: 10px 13px;
    }
    .tick-table {
        width: 100% !important;
    }
    .tick-table2 {
        width: 100% !important;
    }
}

@media (min-width:768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .flt-rgt {
        float: right;
    }
    .navbar-collapse ul {
        position: relative;
        Xmargin-top: 15px;
    }
    .navbar-collapse ul ul {
        position: absolute;
        -webkit-transition: height 0.3s ease-in;
        -moz-transition: height 0.3s ease-in;
        -o-transition: height 0.3s ease-in;
        -ms-transition: height 0.3s ease-in;
        transition: height 0.3s ease-in;
    }
    .navbar-collapse ul ul li {
        transition: background-color 0.3s ease 0s;
        position: relative;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666666666666%;
    }
    .col-sm-10 {
        width: 83.33333333333334%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666666666666%;
    }
    .col-sm-7 {
        width: 58.333333333333336%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666666666667%;
    }
    .col-sm-4 {
        width: 33.33333333333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.666666666666664%;
    }
    .col-sm-1 {
        width: 8.333333333333332%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666666666666%;
    }
    .col-sm-pull-10 {
        right: 83.33333333333334%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666666666666%;
    }
    .col-sm-pull-7 {
        right: 58.333333333333336%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666666666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.666666666666664%;
    }
    .col-sm-pull-1 {
        right: 8.333333333333332%;
    }
    .col-sm-pull-0 {
        right: 0%;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666666666666%;
    }
    .col-sm-push-10 {
        left: 83.33333333333334%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666666666666%;
    }
    .col-sm-push-7 {
        left: 58.333333333333336%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666666666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.666666666666664%;
    }
    .col-sm-push-1 {
        left: 8.333333333333332%;
    }
    .col-sm-push-0 {
        left: 0%;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-sm-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-sm-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width:992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666666666666%;
    }
    .col-md-10 {
        width: 83.33333333333334%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666666666666%;
    }
    .col-md-7 {
        width: 58.333333333333336%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666666666667%;
    }
    .col-md-4 {
        width: 33.33333333333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.666666666666664%;
    }
    .col-md-1 {
        width: 8.333333333333332%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666666666666%;
    }
    .col-md-pull-10 {
        right: 83.33333333333334%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666666666666%;
    }
    .col-md-pull-7 {
        right: 58.333333333333336%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666666666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.666666666666664%;
    }
    .col-md-pull-1 {
        right: 8.333333333333332%;
    }
    .col-md-pull-0 {
        right: 0%;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666666666666%;
    }
    .col-md-push-10 {
        left: 83.33333333333334%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666666666666%;
    }
    .col-md-push-7 {
        left: 58.333333333333336%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666666666667%;
    }
    .col-md-push-4 {
        left: 33.33333333333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.666666666666664%;
    }
    .col-md-push-1 {
        left: 8.333333333333332%;
    }
    .col-md-push-0 {
        left: 0%;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-md-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-md-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width:1200px) {
    .awp_contactform_maindiv_Free_Trial button,
    .awp_contactform_maindiv_Free_Trial input[type="submit"],
    .awp_contactform_maindiv_Free_Trial input[type="submit"]:focus,
    .awp_contactform_maindiv_BecomeaPartner button,
    .awp_contactform_maindiv_BecomeaPartner input[type="submit"],
    .awp_contactform_maindiv_BecomeaPartner input[type="submit"]:focus,
    .awp_contactform_maindiv_ContactSales button,
    .awp_contactform_maindiv_ContactSales input[type="submit"],
    .awp_contactform_maindiv_ContactSales input[type="submit"]:focus {
        background: none repeat scroll 0 0 #1F9F49 !important;
        padding: 15px 35px !important;
    }
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666666666666%;
    }
    .col-lg-10 {
        width: 83.33333333333334%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666666666666%;
    }
    .col-lg-7 {
        width: 58.333333333333336%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666666666667%;
    }
    .col-lg-4 {
        width: 33.33333333333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.666666666666664%;
    }
    .col-lg-1 {
        width: 8.333333333333332%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666666666666%;
    }
    .col-lg-pull-10 {
        right: 83.33333333333334%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666666666666%;
    }
    .col-lg-pull-7 {
        right: 58.333333333333336%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666666666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.666666666666664%;
    }
    .col-lg-pull-1 {
        right: 8.333333333333332%;
    }
    .col-lg-pull-0 {
        right: 0%;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666666666666%;
    }
    .col-lg-push-10 {
        left: 83.33333333333334%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666666666666%;
    }
    .col-lg-push-7 {
        left: 58.333333333333336%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666666666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.666666666666664%;
    }
    .col-lg-push-1 {
        left: 8.333333333333332%;
    }
    .col-lg-push-0 {
        left: 0%;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666666666666%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333333334%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666666666666%;
    }
    .col-lg-offset-7 {
        margin-left: 58.333333333333336%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666666666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.666666666666664%;
    }
    .col-lg-offset-1 {
        margin-left: 8.333333333333332%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

table {
    max-width: 100%;
    background-color: transparent;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 8px 20px;
    line-height: 1.428571429;
    xvertical-align: top;
    xborder-top: 1px solid #dddddd;
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd;
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
    border-top: 0;
}

.table>tbody+tbody {
    border-top: 2px solid #dddddd;
}

.table .table {
    background-color: #ffffff;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #dddddd;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
    border: 1px solid #dddddd;
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
    border-bottom-width: 2px;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover>td,
.table-hover>tbody>tr:hover>th {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    float: none;
    display: table-cell;
}

.table>thead>tr>.active,
.table>tbody>tr>.active,
.table>tfoot>tr>.active,
.table>thead>.active>td,
.table>tbody>.active>td,
.table>tfoot>.active>td,
.table>thead>.active>th,
.table>tbody>.active>th,
.table>tfoot>.active>th {
    background-color: #f5f5f5;
}

.table-hover>tbody>tr>.active:hover,
.table-hover>tbody>.active:hover>td,
.table-hover>tbody>.active:hover>th {
    background-color: #e8e8e8;
}

.table>thead>tr>.success,
.table>tbody>tr>.success,
.table>tfoot>tr>.success,
.table>thead>.success>td,
.table>tbody>.success>td,
.table>tfoot>.success>td,
.table>thead>.success>th,
.table>tbody>.success>th,
.table>tfoot>.success>th {
    background-color: #dff0d8;
}

.table-hover>tbody>tr>.success:hover,
.table-hover>tbody>.success:hover>td,
.table-hover>tbody>.success:hover>th {
    background-color: #d0e9c6;
}

.table>thead>tr>.danger,
.table>tbody>tr>.danger,
.table>tfoot>tr>.danger,
.table>thead>.danger>td,
.table>tbody>.danger>td,
.table>tfoot>.danger>td,
.table>thead>.danger>th,
.table>tbody>.danger>th,
.table>tfoot>.danger>th {
    background-color: #f2dede;
}

.table-hover>tbody>tr>.danger:hover,
.table-hover>tbody>.danger:hover>td,
.table-hover>tbody>.danger:hover>th {
    background-color: #ebcccc;
}

.table>thead>tr>.warning,
.table>tbody>tr>.warning,
.table>tfoot>tr>.warning,
.table>thead>.warning>td,
.table>tbody>.warning>td,
.table>tfoot>.warning>td,
.table>thead>.warning>th,
.table>tbody>.warning>th,
.table>tfoot>.warning>th {
    background-color: #fcf8e3;
}

.table-hover>tbody>tr>.warning:hover,
.table-hover>tbody>.warning:hover>td,
.table-hover>tbody>.warning:hover>th {
    background-color: #faf2cc;
}

@media (max-width:767px) {
    .right-top1 h3.tphead {
        margin-top: 20px;
    }
    .ent h2 {
        font-size: 20px;
    }
    .right-top1 h3.tphead {
        font-size: 20px !important;
        line-height: normal !important;
    }
    .btn-sect {
        visibility: visible;
    }
    .list-cnt ul li {
        text-align: left !important;
    }
    .blue-widget-section .textwidget p {
        font-size: 11px !important
    }
    .awp_contactform_maindiv_cloudphysics .awp_contactform_submit_cloudphysics {
        margin: 0!important;
    }
    .awp_contactform_maindiv_cloudphysics .form_section .form_left_part,
    .awp_contactform_maindiv_cloudphysics .form_section .form_rgt_part,
    .awp_contactform_maindiv_cloudphysics .awp_contactform_submit_cloudphysics {
        width: 100% !important;
        margin-top: 10px
    }
    .awp_contactform_maindiv_vmworld2014 .awp_contactform_submit_vmworld2014 {
        margin: 0!important;
    }
    .awp_contactform_maindiv_vmworld2014 .form_section .form_left_part,
    .awp_contactform_maindiv_vmworld2014 .form_section .form_rgt_part,
    .awp_contactform_maindiv_vmworld2014 .awp_contactform_submit_vmworld2014 {
        width: 100% !important
    }
    .navbar-brand img {
        max-height: 50px;
    }
    .elasistor-os-section p {
        font-size: 13px;
    }
    .elasistor-os-section h2 {
        font-size: 21px;
    }
    .top-p h2.h {
        font-size: 28px;
    }
    .txcn {
        margin-bottom: 15px;
        width: 33%
    }
    #bus-loginform p input {
        width: 80%;
    }
    .news-cont p,
    .news-cont p.lead {
        color: #3C3C3C;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .left-bottom p {
        text-align: center;
    }
    .awp_contactform_maindiv_Free_Trial button,
    .awp_contactform_maindiv_Free_Trial input[type="submit"],
    .awp_contactform_maindiv_Free_Trial input[type="submit"]:focus {
        background: none repeat scroll 0 0 #1F9F49 !important;
        width: 100% !important;
    }
    .table-responsive>.table {
        margin-bottom: 0;
    }
    .table-responsive>.table>thead>tr>th,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tfoot>tr>td {
        white-space: nowrap;
    }
    .table-responsive>.table-bordered {
        border: 0;
    }
    .table-responsive>.table-bordered>thead>tr>th:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child {
        border-left: 0;
    }
    .table-responsive>.table-bordered>thead>tr>th:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child {
        border-right: 0;
    }
    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th,
    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td {
        border-bottom: 0;
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px 9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

select[multiple],
select[size] {
    height: auto;
}

select optgroup {
    font-size: inherit;
    font-style: inherit;
    font-family: inherit;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    height: auto;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control:-moz-placeholder {
    color: #999999;
}

.form-control::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eeeeee;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    display: block;
    min-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    vertical-align: middle;
}

.radio label,
.checkbox label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    float: left;
    margin-left: -20px;
}

.radio+.radio,
.checkbox+.checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

.radio-inline+.radio-inline,
.checkbox-inline+.checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm {
    height: auto;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-lg {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg {
    height: auto;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8;
}

.form-control-static {
    margin-bottom: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .form-inline .form-control {
        display: inline-block;
    }
    .form-inline select.form-control {
        width: auto;
    }
    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }
    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
    zoom: 1;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    content: " ";
    display: table;
}

.form-horizontal .form-group:after {
    clear: both;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    content: " ";
    display: table;
}

.form-horizontal .form-group:after {
    clear: both;
}

.form-horizontal .form-control-static {
    padding-top: 7px;
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 0px 5px;
    font-size: 14px;
    background: #fff;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
}

.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #333333;
    background-color: #ebebeb;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default .badge {
    color: #ffffff;
    background-color: #fff;
}

.btn-primary {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-primary .badge {
    color: #428bca;
    background-color: #fff;
}

.btn-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #ed9c28;
    border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}

.btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #d2322d;
    border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
    background-image: none;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}

.btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #47a447;
    border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
    background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff;
}

.btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #39b3d7;
    border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
    background-image: none;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}

.btn-link {
    color: #428bca;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #999999;
    text-decoration: none;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.btn-block+.btn-block {
    margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/wp-content/themes/cloudbyte/fonts/glyphicons-halflings-regular.eot');
    src: url('/wp-content/themes/cloudbyte/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/cloudbyte/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/wp-content/themes/cloudbyte/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/wp-content/themes/cloudbyte/fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon:empty {
    width: 1em;
}

.glyphicon-asterisk:before {
    content: "2a";
}

.glyphicon-plus:before {
    content: "2b";
}

.glyphicon-euro:before {
    content: "20ac";
}

.glyphicon-minus:before {
    content: "2212";
}

.glyphicon-cloud:before {
    content: "2601";
}

.glyphicon-envelope:before {
    content: "2709";
}

.glyphicon-pencil:before {
    content: "270f";
}

.glyphicon-glass:before {
    content: "e001";
}

.glyphicon-music:before {
    content: "e002";
}

.glyphicon-search:before {
    content: "e003";
}

.glyphicon-heart:before {
    content: "e005";
}

.glyphicon-star:before {
    content: "e006";
}

.glyphicon-star-empty:before {
    content: "e007";
}

.glyphicon-user:before {
    content: "e008";
}

.glyphicon-film:before {
    content: "e009";
}

.glyphicon-th-large:before {
    content: "e010";
}

.glyphicon-th:before {
    content: "e011";
}

.glyphicon-th-list:before {
    content: "e012";
}

.glyphicon-ok:before {
    content: "e013";
}

.glyphicon-remove:before {
    content: "e014";
}

.glyphicon-zoom-in:before {
    content: "e015";
}

.glyphicon-zoom-out:before {
    content: "e016";
}

.glyphicon-off:before {
    content: "e017";
}

.glyphicon-signal:before {
    content: "e018";
}

.glyphicon-cog:before {
    content: "e019";
}

.glyphicon-trash:before {
    content: "e020";
}

.glyphicon-home:before {
    content: "e021";
}

.glyphicon-file:before {
    content: "e022";
}

.glyphicon-time:before {
    content: "e023";
}

.glyphicon-road:before {
    content: "e024";
}

.glyphicon-download-alt:before {
    content: "e025";
}

.glyphicon-download:before {
    content: "e026";
}

.glyphicon-upload:before {
    content: "e027";
}

.glyphicon-inbox:before {
    content: "e028";
}

.glyphicon-play-circle:before {
    content: "e029";
}

.glyphicon-repeat:before {
    content: "e030";
}

.glyphicon-refresh:before {
    content: "e031";
}

.glyphicon-list-alt:before {
    content: "e032";
}

.glyphicon-lock:before {
    content: "e033";
}

.glyphicon-flag:before {
    content: "e034";
}

.glyphicon-headphones:before {
    content: "e035";
}

.glyphicon-volume-off:before {
    content: "e036";
}

.glyphicon-volume-down:before {
    content: "e037";
}

.glyphicon-volume-up:before {
    content: "e038";
}

.glyphicon-qrcode:before {
    content: "e039";
}

.glyphicon-barcode:before {
    content: "e040";
}

.glyphicon-tag:before {
    content: "e041";
}

.glyphicon-tags:before {
    content: "e042";
}

.glyphicon-book:before {
    content: "e043";
}

.glyphicon-bookmark:before {
    content: "e044";
}

.glyphicon-print:before {
    content: "e045";
}

.glyphicon-camera:before {
    content: "e046";
}

.glyphicon-font:before {
    content: "e047";
}

.glyphicon-bold:before {
    content: "e048";
}

.glyphicon-italic:before {
    content: "e049";
}

.glyphicon-text-height:before {
    content: "e050";
}

.glyphicon-text-width:before {
    content: "e051";
}

.glyphicon-align-left:before {
    content: "e052";
}

.glyphicon-align-center:before {
    content: "e053";
}

.glyphicon-align-right:before {
    content: "e054";
}

.glyphicon-align-justify:before {
    content: "e055";
}

.glyphicon-list:before {
    content: "e056";
}

.glyphicon-indent-left:before {
    content: "e057";
}

.glyphicon-indent-right:before {
    content: "e058";
}

.glyphicon-facetime-video:before {
    content: "e059";
}

.glyphicon-picture:before {
    content: "e060";
}

.glyphicon-map-marker:before {
    content: "e062";
}

.glyphicon-adjust:before {
    content: "e063";
}

.glyphicon-tint:before {
    content: "e064";
}

.glyphicon-edit:before {
    content: "e065";
}

.glyphicon-share:before {
    content: "e066";
}

.glyphicon-check:before {
    content: "e067";
}

.glyphicon-move:before {
    content: "e068";
}

.glyphicon-step-backward:before {
    content: "e069";
}

.glyphicon-fast-backward:before {
    content: "e070";
}

.glyphicon-backward:before {
    content: "e071";
}

.glyphicon-play:before {
    content: "e072";
}

.glyphicon-pause:before {
    content: "e073";
}

.glyphicon-stop:before {
    content: "e074";
}

.glyphicon-forward:before {
    content: "e075";
}

.glyphicon-fast-forward:before {
    content: "e076";
}

.glyphicon-step-forward:before {
    content: "e077";
}

.glyphicon-eject:before {
    content: "e078";
}

.glyphicon-chevron-left:before {
    content: "e079";
}

.glyphicon-chevron-right:before {
    content: "e080";
}

.glyphicon-plus-sign:before {
    content: "e081";
}

.glyphicon-minus-sign:before {
    content: "e082";
}

.glyphicon-remove-sign:before {
    content: "e083";
}

.glyphicon-ok-sign:before {
    content: "e084";
}

.glyphicon-question-sign:before {
    content: "e085";
}

.glyphicon-info-sign:before {
    content: "e086";
}

.glyphicon-screenshot:before {
    content: "e087";
}

.glyphicon-remove-circle:before {
    content: "e088";
}

.glyphicon-ok-circle:before {
    content: "e089";
}

.glyphicon-ban-circle:before {
    content: "e090";
}

.glyphicon-arrow-left:before {
    content: "e091";
}

.glyphicon-arrow-right:before {
    content: "e092";
}

.glyphicon-arrow-up:before {
    content: "e093";
}

.glyphicon-arrow-down:before {
    content: "e094";
}

.glyphicon-share-alt:before {
    content: "e095";
}

.glyphicon-resize-full:before {
    content: "e096";
}

.glyphicon-resize-small:before {
    content: "e097";
}

.glyphicon-exclamation-sign:before {
    content: "e101";
}

.glyphicon-gift:before {
    content: "e102";
}

.glyphicon-leaf:before {
    content: "e103";
}

.glyphicon-fire:before {
    content: "e104";
}

.glyphicon-eye-open:before {
    content: "e105";
}

.glyphicon-eye-close:before {
    content: "e106";
}

.glyphicon-warning-sign:before {
    content: "e107";
}

.glyphicon-plane:before {
    content: "e108";
}

.glyphicon-calendar:before {
    content: "e109";
}

.glyphicon-random:before {
    content: "e110";
}

.glyphicon-comment:before {
    content: "e111";
}

.glyphicon-magnet:before {
    content: "e112";
}

.glyphicon-chevron-up:before {
    content: "e113";
}

.glyphicon-chevron-down:before {
    content: "e114";
}

.glyphicon-retweet:before {
    content: "e115";
}

.glyphicon-shopping-cart:before {
    content: "e116";
}

.glyphicon-folder-close:before {
    content: "e117";
}

.glyphicon-folder-open:before {
    content: "e118";
}

.glyphicon-resize-vertical:before {
    content: "e119";
}

.glyphicon-resize-horizontal:before {
    content: "e120";
}

.glyphicon-hdd:before {
    content: "e121";
}

.glyphicon-bullhorn:before {
    content: "e122";
}

.glyphicon-bell:before {
    content: "e123";
}

.glyphicon-certificate:before {
    content: "e124";
}

.glyphicon-thumbs-up:before {
    content: "e125";
}

.glyphicon-thumbs-down:before {
    content: "e126";
}

.glyphicon-hand-right:before {
    content: "e127";
}

.glyphicon-hand-left:before {
    content: "e128";
}

.glyphicon-hand-up:before {
    content: "e129";
}

.glyphicon-hand-down:before {
    content: "e130";
}

.glyphicon-circle-arrow-right:before {
    content: "e131";
}

.glyphicon-circle-arrow-left:before {
    content: "e132";
}

.glyphicon-circle-arrow-up:before {
    content: "e133";
}

.glyphicon-circle-arrow-down:before {
    content: "e134";
}

.glyphicon-globe:before {
    content: "e135";
}

.glyphicon-wrench:before {
    content: "e136";
}

.glyphicon-tasks:before {
    content: "e137";
}

.glyphicon-filter:before {
    content: "e138";
}

.glyphicon-briefcase:before {
    content: "e139";
}

.glyphicon-fullscreen:before {
    content: "e140";
}

.glyphicon-dashboard:before {
    content: "e141";
}

.glyphicon-paperclip:before {
    content: "e142";
}

.glyphicon-heart-empty:before {
    content: "e143";
}

.glyphicon-link:before {
    content: "e144";
}

.glyphicon-phone:before {
    content: "e145";
}

.glyphicon-pushpin:before {
    content: "e146";
}

.glyphicon-usd:before {
    content: "e148";
}

.glyphicon-gbp:before {
    content: "e149";
}

.glyphicon-sort:before {
    content: "e150";
}

.glyphicon-sort-by-alphabet:before {
    content: "e151";
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "e152";
}

.glyphicon-sort-by-order:before {
    content: "e153";
}

.glyphicon-sort-by-order-alt:before {
    content: "e154";
}

.glyphicon-sort-by-attributes:before {
    content: "e155";
}

.glyphicon-sort-by-attributes-alt:before {
    content: "e156";
}

.glyphicon-unchecked:before {
    content: "e157";
}

.glyphicon-expand:before {
    content: "e158";
}

.glyphicon-collapse-down:before {
    content: "e159";
}

.glyphicon-collapse-up:before {
    content: "e160";
}

.glyphicon-log-in:before {
    content: "e161";
}

.glyphicon-flash:before {
    content: "e162";
}

.glyphicon-log-out:before {
    content: "e163";
}

.glyphicon-new-window:before {
    content: "e164";
}

.glyphicon-record:before {
    content: "e165";
}

.glyphicon-save:before {
    content: "e166";
}

.glyphicon-open:before {
    content: "e167";
}

.glyphicon-saved:before {
    content: "e168";
}

.glyphicon-import:before {
    content: "e169";
}

.glyphicon-export:before {
    content: "e170";
}

.glyphicon-send:before {
    content: "e171";
}

.glyphicon-floppy-disk:before {
    content: "e172";
}

.glyphicon-floppy-saved:before {
    content: "e173";
}

.glyphicon-floppy-remove:before {
    content: "e174";
}

.glyphicon-floppy-save:before {
    content: "e175";
}

.glyphicon-floppy-open:before {
    content: "e176";
}

.glyphicon-credit-card:before {
    content: "e177";
}

.glyphicon-transfer:before {
    content: "e178";
}

.glyphicon-cutlery:before {
    content: "e179";
}

.glyphicon-header:before {
    content: "e180";
}

.glyphicon-compressed:before {
    content: "e181";
}

.glyphicon-earphone:before {
    content: "e182";
}

.glyphicon-phone-alt:before {
    content: "e183";
}

.glyphicon-tower:before {
    content: "e184";
}

.glyphicon-stats:before {
    content: "e185";
}

.glyphicon-sd-video:before {
    content: "e186";
}

.glyphicon-hd-video:before {
    content: "e187";
}

.glyphicon-subtitles:before {
    content: "e188";
}

.glyphicon-sound-stereo:before {
    content: "e189";
}

.glyphicon-sound-dolby:before {
    content: "e190";
}

.glyphicon-sound-5-1:before {
    content: "e191";
}

.glyphicon-sound-6-1:before {
    content: "e192";
}

.glyphicon-sound-7-1:before {
    content: "e193";
}

.glyphicon-copyright-mark:before {
    content: "e194";
}

.glyphicon-registration-mark:before {
    content: "e195";
}

.glyphicon-cloud-download:before {
    content: "e197";
}

.glyphicon-cloud-upload:before {
    content: "e198";
}

.glyphicon-tree-conifer:before {
    content: "e199";
}

.glyphicon-tree-deciduous:before {
    content: "e200";
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown {
    xposition: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0;
    margin: 2px 0 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu>li {
    margin: 0px;
    padding: 0px;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #fff;
    background-color: #2c9a40;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.current_page_ancestor>a {
    color: #262626;
    text-decoration: none;
    outline: 0;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: #999999;
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed;
}

.open>.dropdown-menu {
    display: block;
}

.open>a {
    outline: 0;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #999999;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
    position: relative;
    float: left;
}

.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover,
.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
    z-index: 2;
}

.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus {
    outline: none;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    zoom: 1;
}

.btn-toolbar:before,
.btn-toolbar:after {
    content: " ";
    display: table;
}

.btn-toolbar:after {
    clear: both;
}

.btn-toolbar:before,
.btn-toolbar:after {
    content: " ";
    display: table;
}

.btn-toolbar:after {
    clear: both;
}

.btn-toolbar .btn-group {
    float: left;
}

.btn-toolbar>.btn+.btn,
.btn-toolbar>.btn-group+.btn,
.btn-toolbar>.btn+.btn-group,
.btn-toolbar>.btn-group+.btn-group {
    margin-left: 5px;
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group>.btn:first-child {
    margin-left: 0;
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group>.btn-group {
    float: left;
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0;
}

.btn-group>.btn-group:first-child>.btn:last-child,
.btn-group>.btn-group:first-child>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group>.btn-group:last-child>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group-xs>.btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-group-sm>.btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-group-lg>.btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
}

.btn-group>.btn-lg+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

.btn-group-vertical>.btn-group {
    zoom: 1;
}

.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after {
    content: " ";
    display: table;
}

.btn-group-vertical>.btn-group:after {
    clear: both;
}

.btn-group-vertical>.btn-group:before,
.btn-group-vertical>.btn-group:after {
    content: " ";
    display: table;
}

.btn-group-vertical>.btn-group:after {
    clear: both;
}

.btn-group-vertical>.btn-group>.btn {
    float: none;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0;
}

.btn-group-vertical>.btn-group:first-child>.btn:last-child,
.btn-group-vertical>.btn-group:first-child>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:last-child>.btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    float: none;
    display: table-cell;
    width: 1%;
}

.btn-group-justified>.btn-group .btn {
    width: 100%;
}

[data-toggle="buttons"]>.btn>input[type="radio"],
[data-toggle="buttons"]>.btn>input[type="checkbox"] {
    display: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.input-group .form-control {
    width: 100%;
    margin-bottom: 0;
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.input-group-btn .btn {
    padding: 6px 5px;
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    line-height: 46px;
}

textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn {
    height: auto;
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn {
    height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555555;
    text-align: center;
    background-color: #eeeeee;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group-btn:first-child>.btn:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-addon:last-child {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    white-space: nowrap;
}

.input-group-btn:first-child>.btn {
    margin-right: -1px;
}

.input-group-btn:last-child>.btn {
    margin-left: -1px;
}

.input-group-btn>.btn {
    position: relative;
}

.input-group-btn>.btn+.btn {
    margin-left: -4px;
}

.input-group-btn>.btn:hover,
.input-group-btn>.btn:active {
    z-index: 2;
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    zoom: 1;
}

.nav:before,
.nav:after {
    content: " ";
    display: table;
}

.nav:after {
    clear: both;
}

.nav:before,
.nav:after {
    content: " ";
    display: table;
}

.nav:after {
    clear: both;
}

.nav>li {
    position: relative;
    display: block;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 9px;
}

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.nav>li.disabled>a {
    color: #999999;
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
    color: #999999;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #eeeeee;
    border-color: #428bca;
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.nav>li>a>img {
    max-width: none;
}

.nav-tabs {
    border-bottom: 1px solid #dddddd;
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
    margin-right: 2px;
}

.nav-tabs>li>a {
    line-height: 1.428571429;
    border: 1px solid transparent;
    xborder-radius: 4px 4px 0 0;
}

.nav-tabs>li>a:hover {
    border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

.nav-tabs.nav-justified>li {
    float: none;
}

.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%;
    }
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0;
    }
}

.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a:focus {
    border: 1px solid #dddddd;
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a:focus {
        border-bottom-color: #ffffff;
    }
}

.nav-pills>li {
    float: left;
}

.nav-pills>li>a {
    border-radius: 4px;
}

.nav-pills>li+li {
    margin-left: 2px;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    color: #ffffff;
    background-color: #428bca;
}

.nav-stacked>li {
    float: none;
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-justified {
    width: 100%;
}

.nav-justified>li {
    float: none;
}

.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px;
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width:768px) {
    .nav-justified>li {
        display: table-cell;
        width: 1%;
    }
    .nav-justified>li>a {
        margin-bottom: 0;
    }
}

.nav-tabs-justified {
    border-bottom: 0;
}

.nav-tabs-justified>li>a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:hover,
.nav-tabs-justified>.active>a:focus {
    border: 1px solid #dddddd;
}

@media (min-width:768px) {
    .nav-tabs-justified>li>a {
        border-bottom: 1px solid #dddddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs-justified>.active>a:focus {
        border-bottom-color: #ffffff;
    }
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    xborder-bottom: 1px solid #ccc;
    zoom: 1;
    border-radius: 0 !important;
}

.navbar:before,
.navbar:after {
    content: " ";
    display: table;
}

.navbar:after {
    clear: both;
}

.navbar:before,
.navbar:after {
    content: " ";
    display: table;
}

.navbar:after {
    clear: both;
}

@media (min-width:768px) {
    .navbar {
        border-radius: 4px;
    }
}

.navbar-header {
    zoom: 1;
}

.navbar-header:before,
.navbar-header:after {
    content: " ";
    display: table;
}

.navbar-header:after {
    clear: both;
}

.navbar-header:before,
.navbar-header:after {
    content: " ";
    display: table;
}

.navbar-header:after {
    clear: both;
}

@media (min-width:768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    max-height: 340px;
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    zoom: 1;
    -webkit-overflow-scrolling: touch;
}

.navbar-collapse:before,
.navbar-collapse:after {
    content: " ";
    display: table;
}

.navbar-collapse:after {
    clear: both;
}

.navbar-collapse:before,
.navbar-collapse:after {
    content: " ";
    display: table;
}

.navbar-collapse:after {
    clear: both;
}

.navbar-collapse.in {
    overflow-y: auto;
    overflow-x: hiddden;
}

@media (min-width:768px) {
    .navbar-collapse {
        xwidth: auto;
        border-top: 0;
        box-shadow: none;
    }
    .paddlft0 {
        padding-left: 0;
    }
    .paddrgt0 {
        padding-right: 0;
    }
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse.in {
        overflow-y: visible;
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}

.container>.navbar-header,
.container>.navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width:768px) {
    .container>.navbar-header,
    .container>.navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width:768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-fixed-bottom {
        bottom: 0;
        margin-bottom: 0;
        border-width: 1px 0 0;
    }
    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }
}

.left-text-whole1 .n-im img {
    max-width: 100%;
}

@media (max-width:1550px) {
    .tech-sec {
        float: left;
        margin: 20px 15px;
    }
    .page-id-2736 p.lead {
        width: 85%;
        margin: 0 auto
    }
}

@media (max-width:1500px) {
    .cloud .textwidget img {
        xmargin-right: 0px !important;
    }
    .navbar-default .navbar-brand {
        float: left;
        padding-top: 15px;
    }
}

@media (max-width:1450px) {
    h2.comm {
        font-size: 45px;
    }
    .tech-sec {
        float: left;
        margin: 10px 5px;
    }
    .page-id-2736 p.lead {
        width: 85%;
        margin: 0 auto
    }
}

@media (max-width:1420px) {
    .navbar-default .navbar-nav>li>a {
        font-size: 14px !important;
        text-transform: uppercase;
    }
    .txt a {
        font-size: 18px !important;
    }
    span.blu {
        text-align: left !important;
    }
    .dwn-btn span {
        font-size: 23px;
    }
}

@media (max-width:1350px) {
    .box-whole {
        margin-bottom: 5px;
        width: 260px;
    }
    .box-btn,
    .box-btn1 {
        width: 70%;
    }
    .box-img {
        width: 30%;
        margin-top: 10px;
    }
    ul.ul-app {
        margin-left: 10px;
        font-size: 16px;
    }
    ul.ul-app li {
        padding: 6px 10px;
    }
    .left-text-whole1 .n-im img {
        max-height: 290px
    }
    .bggr a {
        font-size: 12px;
    }
    .cnn p {
        white-space: nowrap;
        width: 94%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cnn p.fnt21 {
        overflow: visible;
        text-overflow: inherit;
        white-space: normal;
        width: 100%;
    }
    .cnn h2 {
        font-size: 23px;
    }
    .awp_contactform_maindiv_vmworld2014 .absp_checkval label {
        font-size: 12px !important;
    }
    .right-top1 p.secp {
        margin: 10px 0;
    }
    .carousel-inner {
        min-height: 240px;
    }
    .post_content .log-pt1 h2 {
        font-size: 20px;
    }
    .post_content .log-pt1 p {
        font-size: 14px;
    }
    .mrgtt {
        margin-top: 20px;
    }
    .third-slidermrg {
        margin: 0;
    }
    .left-text-whole1 img {
        max-height: 230px
    }
    .mrg25 {
        margin-top: 0;
    }
    .right-bottom1 .btn-orange {
        float: none !important;
    }
    .frst-slidermrg,
    .mrgt {
        margin-top: 0;
    }
    .right-top1 {
        text-align: left;
    }
    .right-bottom1 {
        text-align: left;
    }
    .mrglt {
        margin-left: 0px
    }
    .elasistor-app-section h2 {
        font-size: 25px;
    }
    .top-p h3 {
        font-size: 23px;
    }
    .rgt-newbtn .btn-orange,
    .rgt-newbtn .btn-orange:hover {
        font-size: 15px;
    }
    .npad {
        padding: 0 15px !important;
    }
    .right-top1 p.scndtop {
        font-size: 30px;
        line-height: 30px;
    }
    .date-part {
        padding-top: 20px;
    }
    .date-part .adate p.month {
        font-size: 12px;
    }
    .date-part .adate p.date {
        font-size: 15px;
    }
    .left-rgt {
        font-size: 60px;
        line-height: 60px;
    }
    .left-bottom p {
        font-size: 28px;
        line-height: 28px;
    }
    .right-top p {
        font-size: 25px;
    }
    .left-lft span.brk {
        font-size: 34px;
        line-height: 34px;
    }
    .tick-table1 table tr td {
        xfont-size: 12px;
    }
    .margtp23 {
        margin-top: 0px;
    }
    .navbar-collapse {
        padding-left: 0px !important;
    }
    .navbar-collapse ul:before {
        border: none !important
    }
    .cloud .textwidget img {
        xmargin-right: 40px !important;
    }
    #widget-footer .textwidget p,
    #widget-footer .textwidget a {
        font-size: 12px !important;
        font-style: normal !important;
    }
    .footer-links .menu li a,
    .footer-links .menu li a:hover {
        font-size: 13px !important;
    }
    .navbar-default .navbar-brand {
        float: left !important;
    }
    .navbar-default .navbar-brand {
        float: left;
        padding-top: 15px;
    }
    span.ylw,
    span.blu,
    span.blu1 {
        xfont-size: 40px !important;
    }
    .txt a {
        font-size: 16px !important;
    }
    .txx {
        width: 40% !important;
    }
    .txt {
        width: 60% !important;
    }
    .txt {
        margin-top: 20px;
    }
    .t-wh {
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }
    .left-bottom p {
        margin-bottom: 28px;
    }
    .tt-sect h2.fp {
        font-size: 25px;
        font-weight: normal;
        font-family: 'Ubuntulight';
        margin-bottom: 15px;
        margin-top: 30px;
        font-style: italic;
        margin-top: 40px;
    }
    .tt-sect h2 {
        margin-top: 40px;
        font-size: 25px;
    }
    .log-pt h2 {
        font-size: 20px;
    }
    .log-pt p {
        font-size: 12px;
    }
    .top-p1 h2 {
        font-size: 20px;
    }
    .top-p1 h2.hhdd {
        font-size: 24px;
    }
    .top-p h3 {
        font-size: 21px;
    }
}

@media (max-width:1300px) {
    .awp_contactform_maindiv_Community_Edition_Trial input,
    .awp_contactform_maindiv_TalktoCEO input,
    .awp_contactform_maindiv_TalktoCEO textarea {
        font-size: 10px
    }
    .talk br {
        display: none;
    }
    .post_content .log-pt1 p {
        font-size: 13px;
    }
    .post_content .log-pt1 h2 {
        font-size:18 .log-pt h2 {
            font-size: 19px;
        }
        .cloud .textwidget img {
            max-height: 45px;
        }
        .bg-blue1 {
            margin-top: 55px;
        }
        .pd-bot25 {
            min-height: 125px !important;
        }
        .bggr a {
            font-size: 13px;
        }
        .box-img {
            width: 35%;
        }
    }
    @media (max-width:1280px) {
        .right-deal {
            width: 55% !important;
            float: right;
        }
        .register-deal p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            font-family: 'ubunturegular';
            width: 100%;
        }
        ul.ul-app li {
            padding: 4px 10px;
        }
        .mrg50ppq {
            margin-top: 45px;
        }
        .ddt {
            font-size: 17px;
        }
        .ddt img {
            top: -2px;
        }
        .spandt span.blgbg {
            padding: 3px 10px;
            margin-top: 0;
        }
        .bggr a {
            font-size: 11px;
        }
        .ul-sss ul li {
            margin-right: 10px;
        }
        .rrp1 h2 span {
            font-weight: bold;
            font-size: 44px;
            font-family: 'ubuntubold';
        }
        .rrp1 h2 span.thrd {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 30px;
            text-align: center;
            font-weight: normal;
        }
        .top-p h3 {
            font-size: 19px;
        }
    }
    @media (max-width:1240px) {
        .box-btn,
        .box-btn1 {
            width: 73%;
        }
        .box-img {
            width: 27%;
            margin-top: 15px;
        }
        .box-whole {
            width: 240px;
        }
    }
    @media (max-width:1200px) {
        .tick-table1 table tr th {
            font-size: 18px;
        }
        #main.mrgtpp {
            margin-top: 123px !important
        }
        .bx-wrapper .bx-pager {
            right: 30px !important
        }
        .hel p.hel {
            font-size: 18px !important;
        }
        .hel p.hel-sec {
            font-size: 14px !important;
        }
        .ban-tx-sec {
            left: 5%;
            top: 20%;
        }
        p.secps {
            font-size: 25px;
        }
        .wd-nw {
            width: 100%;
        }
        .left-text-whole1 img {
            max-height: 220px
        }
        .fln {
            margin: 0 3%;
        }
        .dwn-btn {
            width: 100%;
        }
        .dwn-btn span {
            background-image: none;
            padding-left: 20px;
            text-align: center;
        }
        .left-bottom p {
            font-size: 20px;
        }
        .table-responsive {
            width: 100%;
            margin-bottom: 15px;
            overflow-y: hidden;
            overflow-x: scroll;
            -ms-overflow-style: -ms-autohiding-scrollbar;
            border: 1px solid #dddddd;
            -webkit-overflow-scrolling: touch;
        }
        .container {
            width: 100%;
        }
        .btn-orange {
            margin-left: 15px !important;
        }
        <!-- .right-top1 p {
            font-size: 13px !important;
        }
        -->.scndtop {
            font-size: 20px !important
        }
        .right-bottom1 .btn-orange {
            font-size: 18px !important
        }
        .right-top p {
            font-size: 20px !important;
            line-height: 35px;
        }
        .navbar-brand {
            float: right;
            padding: 15px 8px;
            font-size: 18px;
            line-height: 20px;
        }
        .btn-orange {
            margin-bottom: 10px;
        }
        .news-cont h3 {
            font-size: 18px !important;
        }
        .news-cont p,
        .news-cont p.lead {
            color: #3C3C3C;
            font-size: 13px !important;
            margin-bottom: 10px;
        }
        .top-p h3 {
            font-size: 19px;
        }
    }
    @media (max-width:1150px) {
        .awp_contactform_maindiv_vmworld2014 .mrgb {
            width: 100%;
        }
    }
    @media (max-width:1050px) {
        .left-text-whole1 img {
            max-height: 190px
        }
        <!--.right-top1 p {
            font-size: 12px
        }
        -->.content-section {
            font-size: 13px !important;
        }
        .title-section {
            font-size: 27px !important;
        }
        .top-p h3 {
            font-size: 21px;
        }
    }
    @media (max-width:1005px) {
        #main.mrgtpp {
            margin-top: 119px !important
        }
    }
    @media (max-width:995px) {
        ul.ul-app {
            font-size: 14px
        }
        ul.ul-app li {
            padding: 6px 10px;
        }
        .blu-header h2 {
            font-size: 33px;
        }
        .top-p h3.appli1 {
            font-size: 19px;
        }
        .wddata {
            width: 75%;
        }
        h2.comm {
            font-size: 40px;
        }
        .rrp1 h2 {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 30px;
            text-align: center;
        }
        .rrp1 h2 span {
            font-weight: bold;
            font-size: 39px;
            font-family: 'ubuntubold';
        }
        .rrp1 h2 span.thrd {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 26px;
            text-align: center;
            font-weight: normal;
        }
        .ul-ssec p.btm-sl {
            font-size: 18px;
        }
        .talk h2 {
            font-size: 25px;
        }
        .ul-ssec h3 {
            font-size: 18px;
        }
        .pd-lff .post_content p.lead {
            font-size: 12px;
        }
        .pd-lff p {
            font-size: 12px;
        }
        .ul-ssec ul li {
            font-size: 12px;
        }
        .im-sect a img {
            margin-top: 0px;
        }
        .cnn p.fnt21 {
            font-size: 16px !important;
            white-space: normal;
        }
        .cnn p {
            white-space: normal;
        }
        .cnn h2 {
            font-size: 20px;
        }
        .cnn p {
            font-size: 14px;
        }
    }
    @media (max-width:960px) {
        #main.mrgtpp {
            margin-top: 110px !important
        }
        .fade1 {
            height: 180px;
        }
        .mmg1 {
            margin-top: 0px;
        }
        .top-p h2.h {
            font-size: 56px;
        }
        .elasistor-os-section {
            clear: both;
        }
        .log-pt h2 {
            font-size: 13px;
            font-weight: bold;
        }
        .pht img {
            max-width: 100%;
        }
        .tt-sect h2.fp {
            color: #fff;
            font-size: 21px;
            font-weight: normal;
            font-family: 'Ubuntulight';
            margin-bottom: 15px;
            margin-top: 30px;
            font-style: italic;
            margin-bottom: 10px;
        }
        .tt-sect h2 {
            margin-top: 25px;
            font-size: 21px;
            margin-bottom: 10px;
        }
        #widget-footer .footer-bottom-copy p {
            text-align: center;
        }
        .eap-content p.hh {
            font-size: 18px;
            text-align: center;
        }
        .right-top p {
            font-size: 19px;
        }
        .left-bottom p {
            font-size: 19px;
        }
        .left-rgt {
            font-size: 55px;
            line-height: 55px;
        }
        .left-lft span.brk {
            font-size: 31px;
            line-height: 31px;
        }
        .blue-widget-section .textwidget p {
            font-size: 14px !important
        }
        .blue-widget-section .widgettitle {
            font-size: 16px!important
        }
        .white-widget-section .widgettitle {
            font-size: 25px!important
        }
        .white-widget-section .textwidget p {
            font-size: 15px!important
        }
        .right-top1 h3 {
            font-size: 23px !important;
        }
        .right-top1 p {
            xfont-size: 13px;
            line-height: normal !important
        }
        .navbar-default .navbar-nav>li>a {
            font-size: 12px !important;
        }
        .nav>li>a {
            padding: 10px 7px;
        }
        .lead {
            font-size: 16px;
        }
        #inner-footer .contact,
        #inner-footer .cloud {
            display: block !important;
        }
        .contact,
        .cloud {
            display: none;
        }
        .footer-bottom-copy {
            float: left !important;
            text-align: center !important;
            width: 100%;
            !important;
            margin-top: 15px !important;
            margin-bottom: 0 !important;
        }
        .social {
            float: none !important;
            margin: 0 auto !important;
            xwidth: 128px;
        }
        .footmenu {
            display: block;
            text-align: center;
            width: 100%;
            margin-bottom: 10px;
        }
        .white-widget-section .textwidget p.green {
            font-size: 14px;
        }
        h2,
        .h2 {
            font-size: 30px
        }
        h3,
        .h3 {
            color: #000000;
        }
        p {
            font-size: 15px;
        }
        h1,
        .h1 {
            font-size: 28px
        }
        .tick-table table tr th {
            font-size: 22px !important;
        }
        .tick-table table tr td {
            font-size: 16px !important;
        }
        span.ylw,
        span.blu,
        span.blu1 {
            xfont-size: 33px !important;
        }
        .top-p h3 {
            font-size: 20px;
        }
    }
    @media (max-width:900px) {
        .ban-tx-sec {
            top: 10%;
        }
        .top-p h2 {
            font-size: 45px;
        }
        .top-p h3 {
            font-size: 18px;
        }
    }
    @media (max-width:830px) {
        .ddt {
            font-size: 17px;
        }
        ul.ul-app {
            font-size: 12px
        }
    }
    @media (max-width:800px) {
        .rrp1 h2 {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 26px;
            text-align: center;
        }
        .rrp1 h2 span {
            font-weight: bold;
            font-size: 33px;
            font-family: 'ubuntubold';
        }
        .rrp1 h2 span.thrd {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 21px;
            text-align: center;
            font-weight: normal;
        }
        .lp p,
        .lp p span {
            font-size: 14px;
        }
        .lft-s h2 {
            color: #3c6d8f;
            float: left;
            font-family: "Ubuntulight";
            font-size: 20px;
            margin: 35px 0 10px;
            width: 100%;
        }
        .ent-new h2 {
            font-size: 25px;
        }
        .eshd p {
            font-size: 18px;
        }
        .eshd h2 {
            font-size: 25px;
        }
        .bgclr1 {
            font-size: 14px;
        }
        .cnn p {
            font-size: 13px;
        }
        .cnn h2 {
            font-size: 20px;
        }
        .awd {
            float: left;
            width: 100%;
            text-align: center;
            margin: 10px 0;
        }
        .srh {
            float: left;
            width: 100%;
        }
        .top-p h2.h {
            font-size: 30px;
        }
        .right-bottom1 {
            text-align: left !important;
        }
        .right-top1 p {
            xfont-size: 13px !important;
            line-height: 20px !important
        }
        .awp_contactform_maindiv_Promotion .form_section .form_left_part {
            width: 100% !important;
            float: left;
        }
        .right-top1 p {
            xfont-size: 13px !important;
            line-height: 20px !important
        }
        .right-top1 p.scndtop1 {
            xfont-size: 19px !important;
            line-height: 22px !important;
        }
        .awp_contactform_maindiv_Promotion #awp_contactform_submit_Promotion {
            background: none repeat scroll 0 0 #1f9f49 !important;
            color: #ffffff;
            float: left;
            font-size: 17px;
            font-weight: bold;
            margin-top: 9px !important;
            padding: 9px !important;
            width: 100% !important;
            margin-left: 0;
            border: none;
        }
        .awp_contactform_maindiv_Promotion .form_section .form_rgt_part {
            width: 100% !important
        }
        .lp {
            margin-bottom: 0;
        }
        .eshd h2 {
            font-size: 18px;
        }
        .eshd p {
            font-size: 15px;
        }
        .top-p h2 {
            font-size: 40px;
        }
        .top-p h3 {
            font-size: 17px;
        }
    }
    @media (max-width:767px) {
        .right-deal {
            width: 100% !important;
            float: left;
        }
        #main.mrgtpp {
            margin-top: 81px !important
        }
        .ddt {
            width: 98%;
        }
        .banner-bx {
            width: 100%;
        }
        .bx-wrapper .bx-pager.bx-default-pager a {
            background-image: url('/wp-content/uploads/2015/08/bullet1.png');
            background-color: transparent;
            background-repeat: no-repeat;
            width: 20px;
            height: 30px;
            border: none;
        }
        .bx-wrapper .bx-pager.bx-default-pager a:hover,
        .bx-wrapper .bx-pager.bx-default-pager a.active {
            background-image: url('/wp-content/uploads/2015/08/bullet-hover1.png');
            background-color: transparent;
            background-repeat: no-repeat;
            width: 20px;
            height: 30px;
            border: none;
        }
        .dt2 {
            margin-bottom: 20px;
        }
        .mrg50ppq {
            text-align: center;
        }
        .bx-wrapper img {
            display: inline-block;
            width: 50%;
        }
        .bx-wrapper .bx-pager {
            position: relative !important;
            width: 100% !important;
            text-align: right;
            float: left;
            bottom: 60px;
            font-size: 0;
            right: 20%;
        }
        .rggt {
            padding: 0 !important
        }
        .cnt-ssecc .rgt {
            padding: 0 !important
        }
        .mrg50ppq {
            padding: 0 !important
        }
        ul.bxslider {
            padding: 0;
            margin: 0;
            width: 100%;
        }
        .newban-bg .npad {
            padding: 0 !important
        }
        .dt1,
        .dt2 {
            float: left;
            width: 100%;
            margin-bottom: 5px;
        }
        .mini .nav-justified>li {
            width: 100%;
        }
        .products-overview h2.sub1,
        .products-overview h2.sub2 {
            font-size: 16px;
            margin-top: 30px;
        }
        .pro {
            padding: 10px 0;
        }
        h1.nn-hh {
            margin-top: 40px;
        }
        .left-text-whole {
            margin-top: 20px;
        }
        .ish {
            float: none;
        }
        .hel p.hel {
            font-size: 14px !important;
        }
        .hel p.hel-sec {
            font-size: 15px !important;
            margin-top: 0 !important
        }
        .awp_contactform_maindiv_Community_Edition_Trial input[type="submit"] {
            width: 100%;
        }
        .lfp1 img {
            margin: 50px 0 0 0;
        }
        .rrp1 {
            margin-top: 25px;
            margin-bottom: 50px;
        }
        .awp_contactform_maindiv_TalktoCEO button,
        .awp_contactform_maindiv_TalktoCEO input[type="submit"],
        .modal-body .awp_contactform_maindiv_TalktoCEO input[type="submit"]:focus {
            width: 100% !important
        }
        .modal-body .awp_contactform_maindiv_TalktoCEO input[type="submit"] {
            width: 100% !important
        }
        #main {
            margin-top: 75px !important
        }
        .f-bg {
            transform: none !important;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
        }
        .s-bg {
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
        }
        .s-bg h2 {
            font-size: 30px;
        }
        .s-bg p {
            font-size: 14px;
        }
        .im-st {
            display: none;
        }
        .ban-tx-sec {
            position: relative;
            left: 0;
        }
        .f-bg {
            background: none !important;
        }
        .ul-ssec p.btm-sl {
            font-size: 15px;
        }
        .ul-ssec h3 {
            font-size: 16px;
        }
        .page-id-2736 h1.page-title {
            font-size: 20px;
        }
        .page-id-2736 .post_content p.lead {
            font-size: 16px;
            line-height: 25px;
            margin-bottom: 15px;
            text-align: center;
            width: 90%;
        }
        .tech-sec {
            width: 45%;
        }
        .fade1 {
            height: 220px;
            margin-top: 20px;
        }
        p.secps {
            margin: 0;
        }
        .top-p h2 {
            font-size: 23px;
        }
        .products-overview .top-p h3 {
            font-size: 12px;
        }
        .fnt21 {
            font-size: 16px !important;
        }
    }
    @media (max-width:680px) {
        .dt1,
        .dt2 {
            float: left;
            width: 100%;
            margin-bottom: 5px;
        }
    }
    @media (max-width:600px) {
        #main.mrgtpp {
            margin-top: 81px !important
        }
        .register-deal .register-deal-form input[type="submit"] {
            margin-left: 0% !important;
        }
        .register-deal .awp_contactform_maindiv_Registeradeal .form_section .form_left_part {
            width: 100% !important
        }
        .register-deal .awp_contactform_maindiv_Registeradeal .form_section .form_rgt_part {
            width: 100% !important;
        }
        ul.ul-app li {
            width: 100%;
        }
        .top-social.pull-left {
            margin-top: -5px;
            margin-bottom: 5px;
        }
        .menu-ss a,
        .menu-ss a:hover {
            font-size: 12px;
            padding: 5px;
        }
        .banner-bx h2 {
            font-size: 20px;
        }
        .spandt span.blgbg a {
            font-size: 14px;
        }
        .spandt .col-xs-3 {
            display: none;
        }
        .spandt {
            margin-bottom: 20px;
        }
        .wddata {
            width: 90%;
        }
        .ban-tx-sec {
            margin-top: 20px
        }
        h2.comm {
            font-size: 30px;
        }
        .new-ques h2 {
            color: #333;
            font-size: 15px;
            font-family: 'Ubuntulight';
        }
        .new-ques p {
            color: #666;
            font-size: 13px;
            font-family: 'ubunturegular';
        }
        .new-ques h3 {
            color: #0d6cb5;
            font-size: 17px;
            font-family: 'ubunturegular';
            margin-top: 25px;
        }
        .ent h2 {
            font-size: 16px;
        }
        .s-bg br {
            display: none;
        }
        .fade1 {
            height: 250px;
        }
        .s-bg h2 {
            font-size: 20px;
        }
        .post_content .s-bg p.lead {
            font-size: 12px;
        }
        .p20px {
            float: left;
            width: 100%;
            text-align: center;
        }
    }
    @media (max-width:560px) {
        #main.mrgtpp {
            margin-top: 103px !important
        }
    }
    @media (max-width:546px) {
        .list-inline>li {
            margin-bottom: 10px;
        }
    }
    @media (max-width:480px) {
        #main.mrgtpp {
            margin-top: 111px !important;
        }
        .awp_contactform_maindiv_Community_Edition_Trial input,
        .awp_contactform_maindiv_TalktoCEO input,
        .awp_contactform_maindiv_TalktoCEO textarea {
            font-size: 8px;
        }
        .ban-tx-sec {
            margin-top: 60px
        }
        h1.nn-hh {
            margin-top: 70px;
        }
        .list-inline>li {
            margin-bottom: 10px;
            padding: 0;
        }
        #main {
            margin-top: 90px !important
        }
        .tech-sec {
            width: 90%;
        }
        .fade1 {
            height: 270px;
        }
        .fnt21 {
            font-size: 15px !important;
        }
        .left-text-whole {
            margin-top: 50px;
        }
    }
    @media (max-width:420px) {
        #main.mrgtpp {
            margin-top: 113px !important;
        }
    }
    @media (max-width:375px) {
        #main.mrgtpp {
            margin-top: 135px !important;
        }
    }
    @media (max-width:360px) {
        .rrp1 h2 {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 20px;
            text-align: center;
        }
        .rrp1 h2 span {
            font-weight: bold;
            font-size: 25px;
            font-family: 'ubuntubold';
        }
        .rrp1 h2 span.thrd {
            color: #04518c;
            font-family: 'ubunturegular';
            font-size: 16px;
            text-align: center;
            font-weight: normal;
        }
    }
    @media (max-width:768px) {
        ul.nav li.dropdown:hover>ul.dropdown-menu {
            width: 100% !important;
        }
        .mrgtp30px .title-section {
            display: inline-block;
            width: 100%;
        }
        .mrgtp30px {
            display: inline-block;
        }
        .box-img img {
            margin-top: 0 !important;
            margin-bottom: 0 !important
        }
        .mrg50 {
            margin-top: 0;
        }
        .mrglft20 {
            text-align: center;
        }
        #widget-footer .footer-bottom-copy p {
            text-align: center;
        }
        .mrglft20 {
            text-align: center !important;
            padding-left: 0px !important;
        }
        .blog-cont {
            margin-top: 15px !important;
        }
        .date-part {
            background-color: #e5e5e5;
            padding-bottom: 15px;
        }
        .blog-whole {
            background-color: #fff;
        }
        .blog-whole:hover>.date-part {
            background-color: #0d6cb5;
            color: #ffffff;
        }
        .blog-whole:hover {
            background-color: #fff;
        }
        .news-cont span {
            float: left;
            width: 100%;
            margin-bottom: 5px;
        }
        .logo-section img {
            margin-top: 0px;
        }
        .news-section:hover {
            border: none !important;
            border-bottom: 1px solid #EFEFEF !important;
            border-width: medium medium 0px !important
        }
        .news-section {
            border-bottom: 1px solid #f7f7f7;
            padding-bottom: 30px;
            margin-bottom: 20px;
        }
        .news-cont h3 {
            font-size: 15px !important;
        }
        .news-cont p,
        .news-cont p.lead {
            color: #3C3C3C;
            font-size: 12px !important;
            margin-bottom: 10px;
        }
    }
    @media (max-width:480px) {
        .rgt-im img {
            max-height: 70px;
        }
        .top-p h2 {
            font-size: 19px
        }
        .top-p h2.h {
            font-size: 30px;
        }
        .products-overview .top-p h3 {
            font-size: 11px;
        }
        .dwn-btn span {
            background-image: none;
            padding-left: 20px;
            text-align: center;
            font-size: 20px;
        }
        .eap-content p.hh {
            font-size: 15px;
        }
    }
    @media (max-width:360px) {
        .awd p a {
            float: left;
            width: 100%;
            text-align: center;
        }
        .navbar-brand img {
            max-height: 40px;
        }
        .navbar-toggle {
            margin-top: 17px !important;
        }
        .dwn-btn span {
            background-image: none;
            padding: 10px;
            text-align: center;
            font-size: 15px;
        }
    }
    .blue-widget-section .textwidget p {
        font-size: 14px !important
    }
    .blue-widget-section .widgettitle {
        font-size: 15px!important
    }
    .white-widget-section .widgettitle {
        font-size: 24px!important
    }
    .white-widget-section .textwidget p {
        font-size: 14px!important
    }
    .right-top1 h3 {
        font-size: 30px !important;
    }
    .right-top1 p {
        xfont-size: 16px;
    }
    .pad-lt {
        padding-left: 0 !important;
    }
    .navbar-default .navbar-nav>li>a {
        font-size: 14px;
    }
    .title-section {
        margin-bottom: 25px;
    }
    .content-section {
        margin-bottom: 25px;
        padding: 0 !important;
    }
    .mrgbt80 {
        margin-bottom: 0 !important;
        margin-top: 20px;
    }
    .left-top,
    .right-top p,
    .right-bottom {
        text-align: center !important;
    }
    .left-lft {
        float: none !important;
        margin-left: 1px;
    }
    .left-lft span.fr {
        float: none !important;
    }
    .navbar-default .navbar-brand {
        float: left !important;
    }
    .left-lft span.bar,
    .left-rgt {
        float: none !important;
    }
    .btn-orange {
        float: none !important;
        margin-left: 10px !important;
    }
    .navbar-brand {
        float: left !important;
    }
    .white-sect,
    .blue-sect {
        float: left;
        width: 100%;
        padding: 0 !important;
        margin-bottom: 30px;
    }
    .dropdown-menu {
        width: 100%;
    }
    .inner-main {
        margin: 0;
    }
}

@media (max-width:600px) {
    .tt-sect p {
        font-size: 13px;
    }
    .ath {
        font-size: 15px;
    }
    .tt-sect h2.fp {
        color: #5a595a;
        font-size: 16px;
        font-weight: bold;
        font-family: 'Ubuntulight';
        margin-bottom: 15px;
        margin-top: 30px;
        font-style: italic;
        margin-top: 40px;
    }
    .tt-sect h2 {
        font-size: 16px;
        font-weight: bold;
    }
    .lo-title {
        font-size: 14px;
        font-weight: bold;
    }
    .post-content .fln p.lead {
        font-size: 13px;
    }
    .top-p h3 {
        font-size: 16px;
        line-height: 25px;
    }
    .fln p,
    .fln p.lead {
        font-size: 13px;
    }
    .fln h2 {
        font-size: 20px;
        font-weight: bold;
    }
    .elasistor-os-section h2 {
        font-size: 20px;
        font-weight: bold;
    }
    .rgt-im img {
        max-width: 100%;
    }
    .elasistor-os-section p {
        font-size: 13px;
    }
    .right-top1 p {
        xfont-size: 10px !important
    }
    .txx {
        width: 100% !important;
        text-align: center;
    }
    span.blu {
        text-align: center !important;
        width: 100% !important;
    }
    .txt {
        width: 100% !important;
        text-align: center;
    }
    .txt p span {
        float: none !important;
    }
    .txt span {
        text-align: center;
    }
    .right-bottom1 {
        text-align: center;
    }
    .right-top1 h3 {
        font-size: 30px !important;
    }
    .right-top1 p {
        xfont-size: 14px;
        line-height: 24px !important
    }
}

@media (max-width:480px) {
    .form-inline {
        width: 100%;
    }
    .search-bg,
    .search {
        width: 100%;
    }
    .search-bg input {
        width: 85%;
    }
    .txcn {
        width: 50%;
    }
    .pht img {
        max-height: 180px;
    }
    .txcn {
        margin-bottom: 15px;
        width: 45%
    }
    .left-text-whole1 img {
        max-height: 160px !important;
    }
    .right-bottom1 .btn-orange {
        font-size: 16px !important;
    }
    .right-top1 p.secp {
        xdisplay: none;
    }
    .right-bottom1 {
        text-align: center;
    }
    .right-bottom1 .btn-orange {
        margin-left: 0% !important;
        font-size: 12x !important
    }
    .right-top1 h3 {
        font-size: 30px !important;
    }
    .right-top1 p {
        font-size: 14px;
        line-height: 24px !important
    }
}

@media (min-width:768px) {
    .navbar>.container .navbar-brand {
        margin-left: -15px;
    }
    .content-section {
        padding: 0 25px !important;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 28px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

@media (min-width:768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: -0.5px -15px;
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}

@media (max-width:767px) {
    .formwrap .awp_contactform_maindiv_BecomeaPartner button,
    .formwrap .awp_contactform_maindiv_BecomeaPartner input[type="submit"],
    .formwrap .awp_contactform_maindiv_BecomeaPartner input[type="submit"]:focus,
    .formwrap .awp_contactform_maindiv_Free_Trial input[type="submit"] {
        width: 100% !important;
    }
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .open .dropdown-menu>li>a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px;
    }
    .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-nav .open .dropdown-menu>li>a:focus {
        background-image: none;
    }
}

@media (min-width:768px) {
    .navbar-nav {
        float: right;
        xwidth: 100%;
        margin: 0;
        background-color: transparent;
    }
    .navbar-nav>li {
        float: left;
    }
    .navbar-nav>li>a {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .navbar-nav.navbar-right:last-child {
        margin-right: -15px;
    }
}

@media (min-width:768px) {
    .navbar-left {
        float: left !important;
    }
    .navbar-right {
        float: right !important;
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .form-control {
        display: inline-block;
    }
    .navbar-form select.form-control {
        width: auto;
    }
    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0;
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .navbar-form.navbar-right:last-child {
        margin-right: -15px;
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-nav.pull-right>li>.dropdown-menu,
.navbar-nav>li>.dropdown-menu.pull-right {
    left: auto;
    right: 0;
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px;
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px;
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px;
    }
    .navbar-text.navbar-right:last-child {
        margin-right: 0;
    }
}

.navbar-default {}

.navbar-default .navbar-brand {
    color: #777777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}

.navbar-default .navbar-text {
    color: #777777;
}

.navbar-default .navbar-nav>li>a {
    color: #333;
    font-size: 14px;
    line-height: 65px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #0760bb;
    background-color: transparent;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.current-menu-ancestor>a {
    color: #0760bb;
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:hover,
.navbar-default .navbar-nav>.disabled>a:focus {
    color: #cccccc;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #cccccc;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: #e7e7e7;
    color: #555555;
}

.max-wd {
    max-width: 1140px;
}

@media (max-width:767px) {
    .rgt-im img {
        max-height: 100px;
    }
    .pad05 {
        padding: 0 20px !important;
    }
    .right-bottom1 {
        text-align: center!important;
    }
    .pst {
        margin-top: 20px;
        float: left;
        width: 100%;
    }
    .bg-blue,
    .bg-color {
        width: 100%;
    }
    .pht {
        margin-top: 40px;
        text-align: center;
    }
    .products-overview .top-p h3 {
        font-size: 15px;
    }
    .post_content p.lead {
        font-size: 13px;
    }
    .products-overview .btn-orange {
        margin-left: 0 !important;
    }
    .fln,
    .fln1 {
        width: 90%;
        text-align: left;
        margin-left: 5%;
    }
    .wd-nw {
        width: 100%;
    }
    .mmg .content-section h2 {
        font-size: 15px;
        font-weight: bold;
    }
    .mmg .content-section p.lead {
        font-size: 13px;
    }
    .mrgt,
    .mrglt {
        margin-top: 0;
        margin-left: 0;
    }
    .dropdown-menu>li>a {
        padding-left: 45px;
    }
    .navbar-nav>li>.dropdown-menu {
        position: relative;
    }
    .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: relative;
    }
    ul.nav li.dropdown>ul.dropdown-menu .dropdown-menu {
        right: 100% !important;
        left: auto !important;
    }
    .navbar-brand {
        float: left;
        width: auto !important
    }
    .navbar-brand img {
        float: left;
        width: auto !important
    }
    .carousel-inner {
        margin: 20px 0 0 0;
    }
    .left-text-whole1 {
        text-align: center;
    }
    .wd100 {
        width: 100%;
    }
    .navbar {
        xborder-bottom: none;
    }
    .right-bottom2,
    .right-top1 {
        text-align: center;
    }
    .navbar-default .navbar-nav>li>a {
        color: #333;
        font-size: 14px;
        line-height: 25px;
        xborder-bottom: 1px dotted #ccc;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777777;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #333333;
        background-color: transparent;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #555555;
        background-color: #e7e7e7;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #cccccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #777777;
}

.navbar-default .navbar-link:hover {
    color: #333333;
}

.navbar-inverse {
    background-color: #222222;
    border-color: #080808;
}

.navbar-inverse .navbar-brand {
    color: #999999;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-text {
    color: #999999;
}

.navbar-inverse .navbar-nav>li>a {
    color: #999999;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #ffffff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    color: #ffffff;
    background-color: #080808;
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:hover,
.navbar-inverse .navbar-nav>.disabled>a:focus {
    color: #444444;
    background-color: transparent;
}

.navbar-inverse .navbar-toggle {
    border-color: #333333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333333;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
    background-color: #080808;
    color: #ffffff;
}

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #999999;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #ffffff;
        background-color: transparent;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #ffffff;
        background-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #444444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #999999;
}

.navbar-inverse .navbar-link:hover {
    color: #ffffff;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.breadcrumb>li {
    display: inline-block;
}

.breadcrumb>li+li:before {
    content: "/�0a0";
    padding: 0 5px;
    color: #cccccc;
}

.breadcrumb>.active {
    color: #999999;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    margin-left: -1px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    background-color: #eeeeee;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 2;
    color: #ffffff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #999999;
    background-color: #ffffff;
    border-color: #dddddd;
    cursor: not-allowed;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center;
    zoom: 1;
}

.pager:before,
.pager:after {
    content: " ";
    display: table;
}

.pager:after {
    clear: both;
}

.pager:before,
.pager:after {
    content: " ";
    display: table;
}

.pager:after {
    clear: both;
}

.pager li {
    display: inline;
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 15px;
}

.pager li>a:hover,
.pager li>a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.pager .next>a,
.pager .next>span {
    float: right;
}

.pager .previous>a,
.pager .previous>span {
    float: left;
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
    color: #999999;
    background-color: #ffffff;
    cursor: not-allowed;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label[href]:hover,
.label[href]:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #999999;
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #808080;
}

.label-primary {
    background-color: #428bca;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #3071a9;
}

.label-success {
    background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44;
}

.label-info {
    background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #31b0d5;
}

.label-warning {
    background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ec971f;
}

.label-danger {
    background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #c9302c;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #999999;
    border-radius: 10px;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

a.badge:hover,
a.badge:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

a.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #428bca;
    background-color: #ffffff;
}

.nav-pills>li>a>.badge {
    margin-left: 3px;
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 200;
    line-height: 2.1428571435;
    color: inherit;
    background-color: #eeeeee;
}

.jumbotron h1,
.jumbotron .h1 {
    line-height: 1;
    color: inherit;
}

.jumbotron p {
    line-height: 1.4;
}

.container .jumbotron {
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }
    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.thumbnail>img,
.thumbnail a>img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #428bca;
}

.thumbnail .caption {
    padding: 9px;
    color: #333333;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert>p,
.alert>ul {
    margin-bottom: 0;
}

.alert>p+p {
    margin-top: 5px;
}

.alert-dismissable {
    padding-right: 35px;
}

.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.alert-info hr {
    border-top-color: #a6e1ec;
}

.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-warning hr {
    border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.alert-danger hr {
    border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
    color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}

.media,
.media .media {
    margin-top: 15px;
}

.media:first-child {
    margin-top: 0;
}

.media-object {
    display: block;
}

.media-heading {
    margin: 0 0 5px;
}

.media>.pull-left {
    margin-right: 10px;
}

.media>.pull-right {
    margin-left: 10px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.list-group-item>.badge {
    float: right;
}

.list-group-item>.badge+.badge {
    margin-right: 5px;
}

a.list-group-item {
    color: #555555;
}

a.list-group-item .list-group-item-heading {
    color: #333333;
}

a.list-group-item:hover,
a.list-group-item:focus {
    text-decoration: none;
    background-color: #f5f5f5;
}

a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
    z-index: 2;
    color: #ffffff;
    background-color: #428bca;
    border-color: #428bca;
}

a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
    color: inherit;
}

a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
    color: #e1edf7;
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.panel-heading {
    background-color: #00918F !important;
    color: #fff !important
}

.panel-body {
    padding: 15px;
    zoom: 1;
}

.panel-body:before,
.panel-body:after {
    content: " ";
    display: table;
}

.panel-body:after {
    clear: both;
}

.panel-body:before,
.panel-body:after {
    content: " ";
    display: table;
}

.panel-body:after {
    clear: both;
}

.panel>.list-group {
    margin-bottom: 0;
}

.panel>.list-group .list-group-item {
    border-width: 1px 0;
}

.panel>.list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel>.list-group .list-group-item:last-child {
    border-bottom: 0;
}

.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0;
}

.panel>.table,
.panel>.table-responsive>.table {
    margin-bottom: 0;
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive {
    border-top: 1px solid #dddddd;
}

.panel>.table>tbody:first-child th,
.panel>.table>tbody:first-child td {
    border-top: 0;
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
    border: 0;
}

.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
    border-left: 0;
}

.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
    border-right: 0;
}

.panel>.table-bordered>thead>tr:last-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-bordered>thead>tr:last-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td {
    border-bottom: 0;
}

.panel>.table-responsive {
    border: 0;
    margin-bottom: 0;
}

.panel-heading {
    float: left;
    width: 100%;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel-heading>.dropdown .dropdown-toggle {
    color: inherit;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-title>a {
    color: inherit;
    padding: 10px 15px;
    float: left;
    width: 100%;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
}

.panel-group .panel+.panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading+.panel-collapse .panel-body {
    border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #dddddd;
}

.panel-default {
    border-color: #dddddd;
}

.panel-default>.panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #dddddd;
}

.panel-default>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #dddddd;
    float: left;
}

.panel-default>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #dddddd;
}

.panel-primary {
    border-color: #428bca;
}

.panel-primary>.panel-heading {
    color: #ffffff;
    background-color: #428bca;
    border-color: #428bca;
}

.panel-primary>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #428bca;
}

.panel-primary>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #428bca;
}

.panel-success {
    border-color: #d6e9c6;
}

.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.panel-success>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #d6e9c6;
}

.panel-success>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #d6e9c6;
}

.panel-warning {
    border-color: #faebcc;
}

.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.panel-warning>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #faebcc;
}

.panel-warning>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #faebcc;
}

.panel-danger {
    border-color: #ebccd1;
}

.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.panel-danger>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #ebccd1;
}

.panel-danger>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #ebccd1;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-info>.panel-heading+.panel-collapse .panel-body {
    border-top-color: #bce8f1;
}

.panel-info>.panel-footer+.panel-collapse .panel-body {
    border-bottom-color: #bce8f1;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    z-index: 1050;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px 6px 0px 0px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 8px 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.428571429px;
    background-color: #ff8300;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.428571429;
}

.modal-body {
    position: relative;
    padding: 3px 4px 1px 4px;
}

.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    zoom: 1;
}

.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.modal-footer:after {
    clear: both;
}

.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.modal-footer:after {
    clear: both;
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0;
}

@media screen and (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}

.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover .arrow,
.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover .arrow {
    border-width: 11px;
}

.popover .arrow:after {
    border-width: 10px;
    content: "";
}

.popover.top .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
}

.popover.top .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
}

.popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}

.popover.bottom .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px;
}

.popover.bottom .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #ffffff;
}

.popover.left .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}

.carousel {
    position: relative;
}

.carousel-inner>.item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1;
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block;
}

.carousel-inner>.active {
    left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner>.next {
    left: 100%;
}

.carousel-inner>.prev {
    left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0;
}

.carousel-inner>.active.left {
    left: -100%;
}

.carousel-inner>.active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    display: none;
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover,
.carousel-control:focus {
    outline: none;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    font-family: serif;
}

.carousel-control .icon-prev:before {
    content: '2039';
}

.carousel-control .icon-next:before {
    content: '203a';
}

.carousel-indicators {
    position: absolute;
    bottom: -30px;
    z-index: 15;
    width: 100%;
    padding-left: 0;
    list-style: none;
    text-align: right;
    display: block;
}

.carousel-indicators li {
    background: none repeat scroll 0 0 rgba(187, 187, 187, 0.69);
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.1) inset, 0 0 0 2px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: inline-block;
    height: 16px;
    margin: 4px;
    position: relative;
    transition: all 0.2s ease 0s;
    width: 16px;
    z-index: 2020;
}

.carousel-indicators li:hover {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.1) inset, 0 0 0 2px rgba(26, 163, 64, 0.92);
}

.carousel-indicators .active {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.1) inset, 0 0 0 2px rgba(26, 163, 64, 0.92);
}

.carousel-indicators .active:after {
    background: none repeat scroll 0 0 rgba(20, 113, 185, 0.94);
    content: "";
    height: 10px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 10px;
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    text-shadow: none;
}

@media (max-width:1350px) {
    .carousel-indicators {
        bottom: -45px;
    }
}

@media screen and (min-width:768px) {}

.carousel-control .glyphicons-chevron-left,
.carousel-control .glyphicons-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
}

.carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
}

.carousel-indicators {
    xbottom: 20px;
}


}
.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
.affix {
    position: fixed;
}
@-ms-viewport {
    width: device-width;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
    display: none !important;
}
@media (max-width:767px) {
    .visible-xs {
        display: block !important;
    }
    
    table.visible-xs {
        display: table;
    }
    
    tr.visible-xs {
        display: table-row !important;
    }
    
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .visible-xs.visible-sm {
        display: block !important;
    }
    
    table.visible-xs.visible-sm {
        display: table;
    }
    
    tr.visible-xs.visible-sm {
        display: table-row !important;
    }
    
    th.visible-xs.visible-sm,
    td.visible-xs.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .visible-xs.visible-md {
        display: block !important;
    }
    
    table.visible-xs.visible-md {
        display: table;
    }
    
    tr.visible-xs.visible-md {
        display: table-row !important;
    }
    
    th.visible-xs.visible-md,
    td.visible-xs.visible-md {
        display: table-cell !important;
    }
}
@media (min-width:1200px) {
    .visible-xs.visible-lg {
        display: block !important;
    }
    
    table.visible-xs.visible-lg {
        display: table;
    }
    
    tr.visible-xs.visible-lg {
        display: table-row !important;
    }
    
    th.visible-xs.visible-lg,
    td.visible-xs.visible-lg {
        display: table-cell !important;
    }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
    display: none !important;
}
@media (max-width:767px) {
    .visible-sm.visible-xs {
        display: block !important;
    }
    
    table.visible-sm.visible-xs {
        display: table;
    }
    
    tr.visible-sm.visible-xs {
        display: table-row !important;
    }
    
    th.visible-sm.visible-xs,
    td.visible-sm.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important;
    }
    
    table.visible-sm {
        display: table;
    }
    
    tr.visible-sm {
        display: table-row !important;
    }
    
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .visible-sm.visible-md {
        display: block !important;
    }
    
    table.visible-sm.visible-md {
        display: table;
    }
    
    tr.visible-sm.visible-md {
        display: table-row !important;
    }
    
    th.visible-sm.visible-md,
    td.visible-sm.visible-md {
        display: table-cell !important;
    }
}
@media (min-width:1200px) {
    .visible-sm.visible-lg {
        display: block !important;
    }
    
    table.visible-sm.visible-lg {
        display: table;
    }
    
    tr.visible-sm.visible-lg {
        display: table-row !important;
    }
    
    th.visible-sm.visible-lg,
    td.visible-sm.visible-lg {
        display: table-cell !important;
    }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
    display: none !important;
}
@media (max-width:767px) {
    .visible-md.visible-xs {
        display: block !important;
    }
    
    table.visible-md.visible-xs {
        display: table;
    }
    
    tr.visible-md.visible-xs {
        display: table-row !important;
    }
    
    th.visible-md.visible-xs,
    td.visible-md.visible-xs {
        display: table-cell !important;
    }
    
    .carousel-indicators {
        text-align: center;
        bottom: -44px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .visible-md.visible-sm {
        display: block !important;
    }
    
    table.visible-md.visible-sm {
        display: table;
    }
    
    tr.visible-md.visible-sm {
        display: table-row !important;
    }
    
    th.visible-md.visible-sm,
    td.visible-md.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important;
    }
    
    table.visible-md {
        display: table;
    }
    
    tr.visible-md {
        display: table-row !important;
    }
    
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width:1200px) {
    .visible-md.visible-lg {
        display: block !important;
    }
    
    table.visible-md.visible-lg {
        display: table;
    }
    
    tr.visible-md.visible-lg {
        display: table-row !important;
    }
    
    th.visible-md.visible-lg,
    td.visible-md.visible-lg {
        display: table-cell !important;
    }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
    display: none !important;
}
@media (max-width:767px) {
    .visible-lg.visible-xs {
        display: block !important;
    }
    
    table.visible-lg.visible-xs {
        display: table;
    }
    
    tr.visible-lg.visible-xs {
        display: table-row !important;
    }
    
    th.visible-lg.visible-xs,
    td.visible-lg.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .visible-lg.visible-sm {
        display: block !important;
    }
    
    table.visible-lg.visible-sm {
        display: table;
    }
    
    tr.visible-lg.visible-sm {
        display: table-row !important;
    }
    
    th.visible-lg.visible-sm,
    td.visible-lg.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .visible-lg.visible-md {
        display: block !important;
    }
    
    table.visible-lg.visible-md {
        display: table;
    }
    
    tr.visible-lg.visible-md {
        display: table-row !important;
    }
    
    th.visible-lg.visible-md,
    td.visible-lg.visible-md {
        display: table-cell !important;
    }
}
@media (min-width:1200px) {
    .visible-lg {
        display: block !important;
    }
    
    table.visible-lg {
        display: table;
    }
    
    tr.visible-lg {
        display: table-row !important;
    }
    
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}
.hidden-xs {
    display: block !important;
}
table.hidden-xs {
    display: table;
}
tr.hidden-xs {
    display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
    display: table-cell !important;
}
@media (max-width:767px) {
    .hidden-xs,
    tr.hidden-xs,
    th.hidden-xs,
    td.hidden-xs {
        display: none !important;
    }
    
    .nav>li>a {
        padding: 10px 35px;
    }
    
    .nav>li {
        border-bottom: 1px solid #fff;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .hidden-xs.hidden-sm,
    tr.hidden-xs.hidden-sm,
    th.hidden-xs.hidden-sm,
    td.hidden-xs.hidden-sm {
        display: none !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .hidden-xs.hidden-md,
    tr.hidden-xs.hidden-md,
    th.hidden-xs.hidden-md,
    td.hidden-xs.hidden-md {
        display: none !important;
    }
}
@media (min-width:1200px) {
    .hidden-xs.hidden-lg,
    tr.hidden-xs.hidden-lg,
    th.hidden-xs.hidden-lg,
    td.hidden-xs.hidden-lg {
        display: none !important;
    }
}
.hidden-sm {
    display: block !important;
}
table.hidden-sm {
    display: table;
}
tr.hidden-sm {
    display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
    display: table-cell !important;
}
@media (max-width:767px) {
    .hidden-sm.hidden-xs,
    tr.hidden-sm.hidden-xs,
    th.hidden-sm.hidden-xs,
    td.hidden-sm.hidden-xs {
        display: none !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .hidden-sm,
    tr.hidden-sm,
    th.hidden-sm,
    td.hidden-sm {
        display: none !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .hidden-sm.hidden-md,
    tr.hidden-sm.hidden-md,
    th.hidden-sm.hidden-md,
    td.hidden-sm.hidden-md {
        display: none !important;
    }
}
@media (min-width:1200px) {
    .hidden-sm.hidden-lg,
    tr.hidden-sm.hidden-lg,
    th.hidden-sm.hidden-lg,
    td.hidden-sm.hidden-lg {
        display: none !important;
    }
}
.hidden-md {
    display: block !important;
}
table.hidden-md {
    display: table;
}
tr.hidden-md {
    display: table-row !important;
}
th.hidden-md,
td.hidden-md {
    display: table-cell !important;
}
@media (max-width:767px) {
    .hidden-md.hidden-xs,
    tr.hidden-md.hidden-xs,
    th.hidden-md.hidden-xs,
    td.hidden-md.hidden-xs {
        display: none !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .hidden-md.hidden-sm,
    tr.hidden-md.hidden-sm,
    th.hidden-md.hidden-sm,
    td.hidden-md.hidden-sm {
        display: none !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .hidden-md,
    tr.hidden-md,
    th.hidden-md,
    td.hidden-md {
        display: none !important;
    }
}
@media (min-width:1200px) {
    .hidden-md.hidden-lg,
    tr.hidden-md.hidden-lg,
    th.hidden-md.hidden-lg,
    td.hidden-md.hidden-lg {
        display: none !important;
    }
}
.hidden-lg {
    display: block !important;
}
table.hidden-lg {
    display: table;
}
tr.hidden-lg {
    display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
    display: table-cell !important;
}
@media (max-width:767px) {
    .hidden-lg.hidden-xs,
    tr.hidden-lg.hidden-xs,
    th.hidden-lg.hidden-xs,
    td.hidden-lg.hidden-xs {
        display: none !important;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .hidden-lg.hidden-sm,
    tr.hidden-lg.hidden-sm,
    th.hidden-lg.hidden-sm,
    td.hidden-lg.hidden-sm {
        display: none !important;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .hidden-lg.hidden-md,
    tr.hidden-lg.hidden-md,
    th.hidden-lg.hidden-md,
    td.hidden-lg.hidden-md {
        display: none !important;
    }
}
@media (min-width:1200px) {
    .hidden-lg,
    tr.hidden-lg,
    th.hidden-lg,
    td.hidden-lg {
        display: none !important;
    }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    
    table.visible-print {
        display: table;
    }
    
    tr.visible-print {
        display: table-row !important;
    }
    
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
    
    .hidden-print,
    tr.hidden-print,
    th.hidden-print,
    td.hidden-print {
        display: none !important;
    }
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1;
}
body {
    xpadding-top: 60px;
}
body.admin-bar .navbar-fixed-top {
    top: 28px;
}
.mrgat {
    margin: 0 auto;
    float: none;
}
.mrgat1 {
    margin: 0 auto;
    float: none;
    margin-top: 20px;
}
.bg-white {
    background-color: #fff;
    padding: 0px;
}
.navbar .brand {
    color: #000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.125);
    font-weight: bold !important;
}
.nav-container {
    padding-left: 0;
    padding-right: 0;
}
#inner-header {
    width: 100%;
}
input,
textarea,
select,
.uneditable-input {
    margin-bottom: 0;
}
.navbar-search {
    padding-left: 0;
}
#content {
    padding: 10px 0 0;
}
.more-link {
    white-space: nowrap;
}
.footer-links {
    float: left;
    margin-bottom: 18px;
}
.footer-links .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-links .menu li {
    float: left;
    margin-right: 10px;
}
.footer-links .menu li a,
.footer-links .menu li a:hover {
    font-family: 'ubuntubold';
    font-size: 15px;
    color: #fff;
    text-decoration: none;
}
ul.nav li.dropdown:hover>ul.dropdown-menu {
    display: block;
    width: 220px;
}
ul.nav li.dropdown>ul.dropdown-menu .dropdown-menu {
    right: 100% !important;
    left: auto !important;
    top: 0;
    margin-top: -6px;
    border-radius: 0 4px 4px 0;
}
ul.nav>li.dropdown>ul.dropdown-menu>li.dropdown:hover ul.dropdown-menu {
    border-radius: 0 0 4px 0;
}
ul.nav .dropdown>.dropdown-menu .caret {
    border-top: 4px solid transparent;
    border-left: 4px solid #428bca;
    border-bottom: 4px solid transparent;
    border-right-width: 0;
}
#main p.meta {
    font-style: italic;
    color: #808080;
}
#main article {}
#main article footer {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    min-height: 20px;
    float: left;
    width: 100%;
}
#main article footer a.edit-post {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}
.post:hover a.edit-post {
    display: inline;
}
p.tags {
    line-height: 20px;
}
div[id*='attachment_'] {
    max-width: 100%;
    height: 100%;
}
#main .hero-unit img {
    margin-bottom: 1em;
}
#main article img {
    height: auto;
    max-width: 100%;
}
img.alignleft {
    margin-right: 10px;
    float: left;
}
img.alignright {
    margin-left: 10px;
    float: right;
}
img.aligncenter {
    display: block;
    margin: 0 auto;
}
.archive #main .post h3 {
    line-height: 24px;
    margin-bottom: 10px;
}
video {
    max-width: 100%;
    height: auto;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-wrapper {
    width: 630px;
    max-width: 100%;
    margin-bottom: 18px;
}
#featured-carousel .item {
    width: 970px;
    height: 600px;
}
.carousel-caption p {
    display: none;
}
.page-template-page-homepage-php #main article {
    border-bottom: none;
}
.page-template-page-homepage-php .hero-unit,
.blog .hero-unit {
    padding: 1em;
}
.hero-unit h1 {
    font-size: 3em;
}
#comments {
    line-height: 24px;
    margin-bottom: 18px;
}
ol.commentlist,
ol.commentlist ul.children {
    list-style-type: none;
    padding-left: 0;
}
.comment .vcard>div {
    margin-top: 8px;
    padding: 0 10px;
}
ol.commentlist time {
    font-size: .8em;
    color: #eeeeee;
}
ol.commentlist div.comment-author {
    position: relative;
}
ol.commentlist a.comment-edit-link {
    color: #ffffff;
    text-decoration: none;
    padding-left: 5px;
}
ol.commentlist span.edit-comment {
    position: absolute;
    right: 0;
    top: 8px;
}
ol.commentlist li.bypostauthor {
    background-color: #dddddd;
}
ol.commentlist ul.children li {
    background-color: #cccccc;
}
ol.commentlist ul.children li ul.children li {
    background-color: #bbbbbb;
}
ol.commentlist ul.children li ul.children li ul.children li {
    background-color: #aaaaaa;
}
ol.commentlist article {
    border-bottom: none !important;
}
a.comment-reply-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
a.comment-reply-link:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
a.comment-reply-link:hover,
a.comment-reply-link:focus {
    color: #333333;
    text-decoration: none;
}
a.comment-reply-link:active,
a.comment-reply-link.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
a.comment-reply-link.disabled,
a.comment-reply-link[disabled],
fieldset[disabled] a.comment-reply-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link:active,
a.comment-reply-link.active,
.open .dropdown-togglea.comment-reply-link {
    color: #ffffff;
    background-color: #47a447;
    border-color: #398439;
}
a.comment-reply-link:active,
a.comment-reply-link.active,
.open .dropdown-togglea.comment-reply-link {
    background-image: none;
}
a.comment-reply-link.disabled,
a.comment-reply-link[disabled],
fieldset[disabled] a.comment-reply-link,
a.comment-reply-link.disabled:hover,
a.comment-reply-link[disabled]:hover,
fieldset[disabled] a.comment-reply-link:hover,
a.comment-reply-link.disabled:focus,
a.comment-reply-link[disabled]:focus,
fieldset[disabled] a.comment-reply-link:focus,
a.comment-reply-link.disabled:active,
a.comment-reply-link[disabled]:active,
fieldset[disabled] a.comment-reply-link:active,
a.comment-reply-link.disabled.active,
a.comment-reply-link[disabled].active,
fieldset[disabled] a.comment-reply-link.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}
a.comment-reply-link .badge {
    color: #5cb85c;
    background-color: #fff;
}
#cancel-comment-reply-link {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
    margin-left: 1em;
}
#cancel-comment-reply-link:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    color: #333333;
    text-decoration: none;
}
#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
#cancel-comment-reply-link.disabled,
#cancel-comment-reply-link[disabled],
fieldset[disabled] #cancel-comment-reply-link {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active,
.open .dropdown-toggle#cancel-comment-reply-link {
    color: #ffffff;
    background-color: #ed9c28;
    border-color: #d58512;
}
#cancel-comment-reply-link:active,
#cancel-comment-reply-link.active,
.open .dropdown-toggle#cancel-comment-reply-link {
    background-image: none;
}
#cancel-comment-reply-link.disabled,
#cancel-comment-reply-link[disabled],
fieldset[disabled] #cancel-comment-reply-link,
#cancel-comment-reply-link.disabled:hover,
#cancel-comment-reply-link[disabled]:hover,
fieldset[disabled] #cancel-comment-reply-link:hover,
#cancel-comment-reply-link.disabled:focus,
#cancel-comment-reply-link[disabled]:focus,
fieldset[disabled] #cancel-comment-reply-link:focus,
#cancel-comment-reply-link.disabled:active,
#cancel-comment-reply-link[disabled]:active,
fieldset[disabled] #cancel-comment-reply-link:active,
#cancel-comment-reply-link.disabled.active,
#cancel-comment-reply-link[disabled].active,
fieldset[disabled] #cancel-comment-reply-link.active {
    background-color: #f0ad4e;
    border-color: #eea236;
}
#cancel-comment-reply-link .badge {
    color: #f0ad4e;
    background-color: #fff;
}
#comment-nav ul {
    list-style-type: none;
    margin: 0;
}
#comment-form-elements {
    list-style-type: none;
    margin: 0;
}
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 15px;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment input,
.comment-form-author textarea,
.comment-form-email textarea,
.comment-form-url textarea,
.comment-form-comment textarea {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment input:focus,
.comment-form-author textarea:focus,
.comment-form-email textarea:focus,
.comment-form-url textarea:focus,
.comment-form-comment textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.comment-form-author input:-moz-placeholder,
.comment-form-email input:-moz-placeholder,
.comment-form-url input:-moz-placeholder,
.comment-form-comment input:-moz-placeholder,
.comment-form-author textarea:-moz-placeholder,
.comment-form-email textarea:-moz-placeholder,
.comment-form-url textarea:-moz-placeholder,
.comment-form-comment textarea:-moz-placeholder {
    color: #999999;
}
.comment-form-author input::-moz-placeholder,
.comment-form-email input::-moz-placeholder,
.comment-form-url input::-moz-placeholder,
.comment-form-comment input::-moz-placeholder,
.comment-form-author textarea::-moz-placeholder,
.comment-form-email textarea::-moz-placeholder,
.comment-form-url textarea::-moz-placeholder,
.comment-form-comment textarea::-moz-placeholder {
    color: #999999;
    opacity: 1;
}
.comment-form-author input:-ms-input-placeholder,
.comment-form-email input:-ms-input-placeholder,
.comment-form-url input:-ms-input-placeholder,
.comment-form-comment input:-ms-input-placeholder,
.comment-form-author textarea:-ms-input-placeholder,
.comment-form-email textarea:-ms-input-placeholder,
.comment-form-url textarea:-ms-input-placeholder,
.comment-form-comment textarea:-ms-input-placeholder {
    color: #999999;
}
.comment-form-author input::-webkit-input-placeholder,
.comment-form-email input::-webkit-input-placeholder,
.comment-form-url input::-webkit-input-placeholder,
.comment-form-comment input::-webkit-input-placeholder,
.comment-form-author textarea::-webkit-input-placeholder,
.comment-form-email textarea::-webkit-input-placeholder,
.comment-form-url textarea::-webkit-input-placeholder,
.comment-form-comment textarea::-webkit-input-placeholder {
    color: #999999;
}
.comment-form-author input[disabled],
.comment-form-email input[disabled],
.comment-form-url input[disabled],
.comment-form-comment input[disabled],
.comment-form-author textarea[disabled],
.comment-form-email textarea[disabled],
.comment-form-url textarea[disabled],
.comment-form-comment textarea[disabled],
.comment-form-author input[readonly],
.comment-form-email input[readonly],
.comment-form-url input[readonly],
.comment-form-comment input[readonly],
.comment-form-author textarea[readonly],
.comment-form-email textarea[readonly],
.comment-form-url textarea[readonly],
.comment-form-comment textarea[readonly],
fieldset[disabled] .comment-form-author input,
fieldset[disabled] .comment-form-email input,
fieldset[disabled] .comment-form-url input,
fieldset[disabled] .comment-form-comment input,
fieldset[disabled] .comment-form-author textarea,
fieldset[disabled] .comment-form-email textarea,
fieldset[disabled] .comment-form-url textarea,
fieldset[disabled] .comment-form-comment textarea {
    cursor: not-allowed;
    background-color: #eeeeee;
}
textarea.comment-form-author input,
textarea.comment-form-email input,
textarea.comment-form-url input,
textarea.comment-form-comment input,
textarea.comment-form-author textarea,
textarea.comment-form-email textarea,
textarea.comment-form-url textarea,
textarea.comment-form-comment textarea {
    height: auto;
}
.comment-form-author textarea,
.comment-form-email textarea,
.comment-form-url textarea,
.comment-form-comment textarea {
    height: auto;
}
.form-allowed-tags code {
    white-space: normal;
}
.form-submit input[type='submit'] {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}
.form-submit input[type='submit']:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.form-submit input[type='submit']:hover,
.form-submit input[type='submit']:focus {
    color: #333333;
    text-decoration: none;
}
.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.form-submit input[type='submit'].disabled,
.form-submit input[type='submit'][disabled],
fieldset[disabled] .form-submit input[type='submit'] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-submit input[type='submit']:hover,
.form-submit input[type='submit']:focus,
.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active,
.open .dropdown-toggle.form-submit input[type='submit'] {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}
.form-submit input[type='submit']:active,
.form-submit input[type='submit'].active,
.open .dropdown-toggle.form-submit input[type='submit'] {
    background-image: none;
}
.form-submit input[type='submit'].disabled,
.form-submit input[type='submit'][disabled],
fieldset[disabled] .form-submit input[type='submit'],
.form-submit input[type='submit'].disabled:hover,
.form-submit input[type='submit'][disabled]:hover,
fieldset[disabled] .form-submit input[type='submit']:hover,
.form-submit input[type='submit'].disabled:focus,
.form-submit input[type='submit'][disabled]:focus,
fieldset[disabled] .form-submit input[type='submit']:focus,
.form-submit input[type='submit'].disabled:active,
.form-submit input[type='submit'][disabled]:active,
fieldset[disabled] .form-submit input[type='submit']:active,
.form-submit input[type='submit'].disabled.active,
.form-submit input[type='submit'][disabled].active,
fieldset[disabled] .form-submit input[type='submit'].active {
    background-color: #428bca;
    border-color: #357ebd;
}
.form-submit input[type='submit'] .badge {
    color: #428bca;
    background-color: #fff;
}
.comment .vcard .avatar {
    padding-right: 0;
}
.distbl {
    float: left;
    margin-bottom: 8px;
}
span.distblcel {
    padding-left: 0px;
    color: #0061aa;
    font-size: 15px;
    float: left;
    margin-bottom: 10px;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 3px;
    width: 120px;
}
span.distblcel.ebook {
    font-size: 13px;
}
img.distb {
    float: left;
}
h5.distblcel {
    float: left;
    padding-left: 0px;
    color: #444444;
    font-size: 13px;
    margin-top: -12px;
    line-height: 17px;
    width: 120px;
}
span.distblcel.bdr {
    border-bottom: 1px solid rgb(183, 183, 183);
    padding-bottom: 10px;
}
img.appliance {
    padding-top: 20px;
}
.collection h4 {
    font-size: 20px;
    color: #0061aa;
    padding-left: 15px;
    padding-bottom: 15px;
    margin-top: -4px;
}
.banner-newbg.pad0.cloud-stock img {
    width: 100%;
    max-height: 520px !important;
}
.grbg {
    background-color: rgb(245, 243, 244);
    padding-top: 40px;
    padding-bottom: 40px;
}
.blu-header {
    margin-bottom: 30px;
}
.banner-tl h2.headline {
    background-color: #203954;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFFFFF;
    line-height: 25px;
}
.bdr {
    float: left;
    width: 100%;
    border-bottom: 1px solid rgb(195, 195, 195);
    margin-bottom: 15px;
}
.blu-header h2 {
    font-size: 53px;
    color: #05306b;
}
.blu-header h3 {
    font-size: 22px;
    color: #005CB9;
    font-family: 'ubuntulight';
}
.banner-tl h2 {
    background-color: #f0c025;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 25px;
    margin: 0px;
}
.banner-newbg.text-center {
    background-image: url('/wp-content/uploads/2015/07/bg-img.jpg');
    background-repeat: repeat;
    background-color: #f8d564;
    padding-top: 30px;
    padding-bottom: 20px;
}
.comment .vcard .comment-text {
    margin-left: 0;
}
img.avatar {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    border-left: 1px solid #ddd;
}
ol.commentlist li {
    padding-right: 10px;
    background-color: #F0F0F0;
}
#pings {
    margin-bottom: 9px;
}
ol.pinglist {
    list-style-type: none;
    margin: 0 0 9px 0;
}
ol.commentlist #respond {
    padding: 5px 10px;
}
.attachment #main .post_content img {
    max-width: 100%;
}
.ie8 #main .media-grid img {
    max-height: none !important;
    max-width: none !important;
}
.attachment-img {
    margin-bottom: 18px;
}
.metadata p.alert-message {
    margin-right: 0;
    margin-bottom: 18px;
}
#gallery-nav {
    list-style-type: none;
    margin-left: 0;
}
li.next a,
li.previous a {
    position: relative;
}
li.next a:hover:before {
    content: "2190";
    position: absolute;
    display: block;
    top: 42%;
    left: 0;
    background-color: #BFBFBF;
    color: #444;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
li.previous a:hover:before {
    content: "2192";
    position: absolute;
    display: block;
    top: 42%;
    right: 0;
    background-color: #BFBFBF;
    color: #444;
    width: 20px;
    height: 20px;
    padding-left: 5px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.widget {
    xmargin-bottom: 18px;
}
#widget-footer .widgettitle {
    margin-bottom: 9px;
    color: #fff;
}
#widget-footer .textwidget p,
#widget-footer .textwidget a {
    color: #fff;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-style: normal !important;
}
.cloud .textwidget img {
    xfloat: left;
    xmargin-right: 15px;
}
.contact .textwidget img {
    float: left;
    margin-right: 15px;
}
.footer-bottom-copy {
    float: right;
    text-align: right;
    margin-top: 30px;
}
#tag-cloud {
    margin-bottom: 18px;
    line-height: 160%;
}
.tags a {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    background-color: #999999;
}
.tags a[href]:hover,
.tags a[href]:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
.tags a:empty {
    display: none;
}
.btn .tags a {
    position: relative;
    top: -1px;
}
.tags a[href]:hover,
.tags a[href]:focus {
    background-color: #808080;
}
#tag-cloud a:hover,
.tags a:hover {
    color: #ffffff;
    text-decoration: none;
}
#tag-cloud a {
    white-space: pre;
    text-transform: uppercase;
}
.widget_search form {
    padding-left: 0;
}
#calendar_wrap {
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
}
#wp-calendar {
    width: 100%;
}
#wp-calendar caption {
    font-weight: bold;
    padding: 8px;
}
#wp-calendar tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#wp-calendar tr:last-child {
    border-bottom: none;
}
#wp-calendar td {
    text-align: center;
    padding: 8px 0;
}
blockquote.pull-left {
    padding-right: 15px;
}
@media only screen and (min-width:768px) {
    .carousel-caption p {
        display: block;
    }
}
@media only screen and (min-width:980px) {
    body {
        xpadding-top: 60px;
    }
    
    .container-fluid {
        max-width: 970px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #content {
        padding-left: 0;
        padding-right: 0;
    }
    
    .topbar-inner {
        padding: 0;
    }
    
    .topbar form.pull-right {
        float: right;
    }
    
    .navbar-search {
        padding-left: 0;
    }
    
    .blog .hero-unit {
        margin-top: 10px;
    }
    
    .page-template-page-homepage-php .hero-unit,
    .blog .hero-unit {
        padding: 60px;
    }
    
    .hero-unit h1 {
        font-size: 60px;
    }
    
    .edit-comment {
        display: none;
    }
    
    .vcard:hover .edit-comment {
        display: inline-block;
    }
    
    .comment .vcard .comment-text {
        padding-left: 0;
        padding-right: 0;
    }
}
.txt i {
    color: #fff !important;
}
.youtube-video {
    font-size: 30px !important;
}
@font-face {
    font-family: 'FontAwesome';
    src: url('/wp-content/themes/cloudbyte/font/fontawesome-webfont.eot?v=3.2.1');
    src: url('/wp-content/themes/cloudbyte/font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('/wp-content/themes/cloudbyte/font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('/wp-content/themes/cloudbyte/font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('/wp-content/themes/cloudbyte/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
    font-family: 'simple-line-icons';
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
    text-decoration: inherit;
    display: inline-block;
    speak: none;
}
.icon-large:before {
    vertical-align: -10%;
    font-size: 1.3333333333333333em;
}
a [class^="icon-"],
a [class*=" icon-"] {
    display: inline;
}
[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
    display: inline-block;
    width: 1.1428571428571428em;
    text-align: right;
    padding-right: 0.2857142857142857em;
}
[class^="icon-"].icon-fixed-width.icon-large,
[class*=" icon-"].icon-fixed-width.icon-large {
    width: 1.4285714285714286em;
}
.icons-ul {
    margin-left: 2.142857142857143em;
    list-style-type: none;
}
.icons-ul>li {
    position: relative;
}
.icons-ul .icon-li {
    position: absolute;
    left: -2.142857142857143em;
    width: 2.142857142857143em;
    text-align: center;
    line-height: inherit;
}
[class^="icon-"].hide,
[class*=" icon-"].hide {
    display: none;
}
.icon-muted {
    color: #eeeeee;
}
.icon-light {
    color: #ffffff;
}
.icon-dark {
    color: #333333;
}
.icon-border {
    border: solid 1px #eeeeee;
    padding: .2em .25em .15em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.icon-2x {
    font-size: 2em;
}
.icon-2x.icon-border {
    border-width: 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.icon-3x {
    font-size: 3em;
}
.icon-3x.icon-border {
    border-width: 3px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.icon-4x {
    font-size: 4em;
}
.icon-4x.icon-border {
    border-width: 4px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.icon-5x {
    font-size: 5em;
}
.icon-5x.icon-border {
    border-width: 5px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}
[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
    margin-right: .3em;
}
[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
    margin-left: .3em;
}
[class^="icon-"],
[class*=" icon-"] {
    display: inline;
    width: auto;
    height: auto;
    line-height: normal;
    vertical-align: baseline;
    background-image: none;
    background-position: 0% 0%;
    background-repeat: repeat;
    margin-top: 0;
}
.icon-white,
.nav-pills>.active>a>[class^="icon-"],
.nav-pills>.active>a>[class*=" icon-"],
.nav-list>.active>a>[class^="icon-"],
.nav-list>.active>a>[class*=" icon-"],
.navbar-inverse .nav>.active>a>[class^="icon-"],
.navbar-inverse .nav>.active>a>[class*=" icon-"],
.dropdown-menu>li>a:hover>[class^="icon-"],
.dropdown-menu>li>a:hover>[class*=" icon-"],
.dropdown-menu>.active>a>[class^="icon-"],
.dropdown-menu>.active>a>[class*=" icon-"],
.dropdown-submenu:hover>a>[class^="icon-"],
.dropdown-submenu:hover>a>[class*=" icon-"] {
    background-image: none;
}
.btn [class^="icon-"].icon-large,
.nav [class^="icon-"].icon-large,
.btn [class*=" icon-"].icon-large,
.nav [class*=" icon-"].icon-large {
    line-height: .9em;
}
.btn [class^="icon-"].icon-spin,
.nav [class^="icon-"].icon-spin,
.btn [class*=" icon-"].icon-spin,
.nav [class*=" icon-"].icon-spin {
    display: inline-block;
}
.nav-tabs [class^="icon-"],
.nav-pills [class^="icon-"],
.nav-tabs [class*=" icon-"],
.nav-pills [class*=" icon-"],
.nav-tabs [class^="icon-"].icon-large,
.nav-pills [class^="icon-"].icon-large,
.nav-tabs [class*=" icon-"].icon-large,
.nav-pills [class*=" icon-"].icon-large {
    line-height: .9em;
}
.btn [class^="icon-"].pull-left.icon-2x,
.btn [class*=" icon-"].pull-left.icon-2x,
.btn [class^="icon-"].pull-right.icon-2x,
.btn [class*=" icon-"].pull-right.icon-2x {
    margin-top: .18em;
}
.btn [class^="icon-"].icon-spin.icon-large,
.btn [class*=" icon-"].icon-spin.icon-large {
    line-height: .8em;
}
.btn.btn-small [class^="icon-"].pull-left.icon-2x,
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
    margin-top: .25em;
}
.btn.btn-large [class^="icon-"],
.btn.btn-large [class*=" icon-"] {
    margin-top: 0;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
    margin-top: .05em;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
    margin-right: .2em;
}
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
    margin-left: .2em;
}
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
    line-height: inherit;
}
.icon-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: -35%;
}
.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 1em;
    line-height: inherit;
    *line-height: 2em;
}
.icon-stack .icon-stack-base {
    font-size: 2em;
    *line-height: 1em;
}
.icon-spin {
    display: inline-block;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}
a .icon-stack,
a .icon-spin {
    display: inline-block;
    text-decoration: none;
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    
    100% {
        -moz-transform: rotate(359deg);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(359deg);
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    
    100% {
        -o-transform: rotate(359deg);
    }
}
@-ms-keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
    }
    
    100% {
        -ms-transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(359deg);
    }
}
.icon-rotate-90:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.icon-rotate-180:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.icon-rotate-270:before {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.icon-flip-horizontal:before {
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.icon-flip-vertical:before {
    -webkit-transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    transform: scale(1, -1);
}
a .icon-rotate-90:before,
a .icon-rotate-180:before,
a .icon-rotate-270:before,
a .icon-flip-horizontal:before,
a .icon-flip-vertical:before {
    display: inline-block;
}
.icon-glass:before {
    content: "f000";
}
.icon-music:before {
    content: "f001";
}
.icon-search:before {
    content: "f002";
}
.icon-envelope-alt:before {
    content: "f003";
}
.icon-heart:before {
    content: "f004";
}
.icon-star:before {
    content: "f005";
}
.icon-star-empty:before {
    content: "f006";
}
.icon-user:before {
    content: "f007";
}
.icon-film:before {
    content: "f008";
}
.icon-th-large:before {
    content: "f009";
}
.icon-th:before {
    content: "f00a";
}
.icon-th-list:before {
    content: "f00b";
}
.icon-ok:before {
    content: "f00c";
}
.icon-remove:before {
    content: "f00d";
}
.icon-zoom-in:before {
    content: "f00e";
}
.icon-zoom-out:before {
    content: "f010";
}
.icon-power-off:before,
.icon-off:before {
    content: "f011";
}
.icon-signal:before {
    content: "f012";
}
.icon-gear:before,
.icon-cog:before {
    content: "f013";
}
.icon-trash:before {
    content: "f014";
}
.icon-home:before {
    content: "f015";
}
.icon-file-alt:before {
    content: "f016";
}
.icon-time:before {
    content: "f017";
}
.icon-road:before {
    content: "f018";
}
.icon-download-alt:before {
    content: "f019";
}
.icon-download:before {
    content: "f01a";
}
.icon-upload:before {
    content: "f01b";
}
.icon-inbox:before {
    content: "f01c";
}
.icon-play-circle:before {
    content: "f01d";
}
.icon-rotate-right:before,
.icon-repeat:before {
    content: "f01e";
}
.icon-refresh:before {
    content: "f021";
}
.icon-list-alt:before {
    content: "f022";
}
.icon-lock:before {
    content: "f023";
}
.icon-flag:before {
    content: "f024";
}
.icon-headphones:before {
    content: "f025";
}
.icon-volume-off:before {
    content: "f026";
}
.icon-volume-down:before {
    content: "f027";
}
.icon-volume-up:before {
    content: "f028";
}
.icon-qrcode:before {
    content: "f029";
}
.icon-barcode:before {
    content: "f02a";
}
.icon-tag:before {
    content: "f02b";
}
.icon-tags:before {
    content: "f02c";
}
.icon-book:before {
    content: "f02d";
}
.icon-bookmark:before {
    content: "f02e";
}
.icon-print:before {
    content: "f02f";
}
.icon-camera:before {
    content: "f030";
}
.icon-font:before {
    content: "f031";
}
.icon-bold:before {
    content: "f032";
}
.icon-italic:before {
    content: "f033";
}
.icon-text-height:before {
    content: "f034";
}
.icon-text-width:before {
    content: "f035";
}
.icon-align-left:before {
    content: "f036";
}
.icon-align-center:before {
    content: "f037";
}
.icon-align-right:before {
    content: "f038";
}
.icon-align-justify:before {
    content: "f039";
}
.icon-list:before {
    content: "f03a";
}
.icon-indent-left:before {
    content: "f03b";
}
.icon-indent-right:before {
    content: "f03c";
}
.icon-facetime-video:before {
    content: "f03d";
}
.icon-picture:before {
    content: "f03e";
}
.icon-pencil:before {
    content: "f040";
}
.icon-map-marker:before {
    content: "f041";
}
.icon-adjust:before {
    content: "f042";
}
.icon-tint:before {
    content: "f043";
}
.icon-edit:before {
    content: "f044";
}
.icon-share:before {
    content: "f045";
}
.icon-check:before {
    content: "f046";
}
.icon-move:before {
    content: "f047";
}
.icon-step-backward:before {
    content: "f048";
}
.icon-fast-backward:before {
    content: "f049";
}
.icon-backward:before {
    content: "f04a";
}
.icon-play:before {
    content: "f04b";
}
.icon-pause:before {
    content: "f04c";
}
.icon-stop:before {
    content: "f04d";
}
.icon-forward:before {
    content: "f04e";
}
.icon-fast-forward:before {
    content: "f050";
}
.icon-step-forward:before {
    content: "f051";
}
.icon-eject:before {
    content: "f052";
}
.icon-chevron-left:before {
    content: "f053";
}
.icon-chevron-right:before {
    content: "f054";
}
.icon-plus-sign:before {
    content: "f055";
}
.icon-minus-sign:before {
    content: "f056";
}
.icon-remove-sign:before {
    content: "f057";
}
.icon-ok-sign:before {
    content: "f058";
}
.icon-question-sign:before {
    content: "f059";
}
.icon-info-sign:before {
    content: "f05a";
}
.icon-screenshot:before {
    content: "f05b";
}
.icon-remove-circle:before {
    content: "f05c";
}
.icon-ok-circle:before {
    content: "f05d";
}
.icon-ban-circle:before {
    content: "f05e";
}
.icon-arrow-left:before {
    xcontent: "f060";
}
.icon-arrow-right:before {
    xcontent: "f061";
}
.icon-arrow-up:before {
    content: "f062";
}
.icon-arrow-down:before {
    content: "f063";
}
.icon-mail-forward:before,
.icon-share-alt:before {
    content: "f064";
}
.icon-resize-full:before {
    content: "f065";
}
.icon-resize-small:before {
    content: "f066";
}
.icon-plus:before {
    content: "f067";
}
.icon-minus:before {
    content: "f068";
}
.icon-asterisk:before {
    content: "f069";
}
.icon-exclamation-sign:before {
    content: "f06a";
}
.icon-gift:before {
    content: "f06b";
}
.icon-leaf:before {
    content: "f06c";
}
.icon-fire:before {
    content: "f06d";
}
.icon-eye-open:before {
    content: "f06e";
}
.icon-eye-close:before {
    content: "f070";
}
.icon-warning-sign:before {
    content: "f071";
}
.icon-plane:before {
    content: "f072";
}
.icon-calendar:before {
    content: "f073";
}
.icon-random:before {
    content: "f074";
}
.icon-comment:before {
    content: "f075";
}
.icon-magnet:before {
    content: "f076";
}
.icon-chevron-up:before {
    content: "f077";
}
.icon-chevron-down:before {
    content: "f078";
}
.icon-retweet:before {
    content: "f079";
}
.icon-shopping-cart:before {
    content: "f07a";
}
.icon-folder-close:before {
    content: "f07b";
}
.icon-folder-open:before {
    content: "f07c";
}
.icon-resize-vertical:before {
    content: "f07d";
}
.icon-resize-horizontal:before {
    content: "f07e";
}
.icon-bar-chart:before {
    content: "f080";
}
.icon-twitter-sign:before {
    content: "f081";
}
.icon-facebook-sign:before {
    content: "f082";
}
.icon-camera-retro:before {
    content: "f083";
}
.icon-key:before {
    content: "f084";
}
.icon-gears:before,
.icon-cogs:before {
    content: "f085";
}
.icon-comments:before {
    content: "f086";
}
.icon-thumbs-up-alt:before {
    content: "f087";
}
.icon-thumbs-down-alt:before {
    content: "f088";
}
.icon-star-half:before {
    content: "f089";
}
.icon-heart-empty:before {
    content: "f08a";
}
.icon-signout:before {
    content: "f08b";
}
.icon-linkedin-sign:before {
    content: "f08c";
    font-family: fontawesome;
}
.icon-pushpin:before {
    content: "f08d";
}
.icon-external-link:before {
    content: "f08e";
}
.icon-signin:before {
    content: "f090";
}
.icon-trophy:before {
    content: "f091";
}
.icon-github-sign:before {
    content: "f092";
}
.icon-upload-alt:before {
    content: "f093";
}
.icon-lemon:before {
    content: "f094";
}
.icon-phone:before {
    content: "f095";
    font-family: fontawesome;
}
.icon-unchecked:before,
.icon-check-empty:before {
    content: "f096";
}
.icon-bookmark-empty:before {
    content: "f097";
    font-family: fontawesome;
}
.icon-phone-sign:before {
    content: "f098";
    font-family: fontawesome;
}
.icon-twitter:before {
    content: "f099";
    font-family: fontawesome;
}
.icon-facebook:before {
    content: "f09a";
    font-family: fontawesome;
}
.icon-github:before {
    content: "f09b";
}
.icon-unlock:before {
    content: "f09c";
}
.icon-credit-card:before {
    content: "f09d";
}
.icon-rss:before {
    content: "f09e";
    font-family: fontawesome;
}
.icon-hdd:before {
    content: "f0a0";
}
.icon-bullhorn:before {
    content: "f0a1";
}
.icon-bell:before {
    content: "f0a2";
}
.icon-certificate:before {
    content: "f0a3";
}
.icon-hand-right:before {
    content: "f0a4";
}
.icon-hand-left:before {
    content: "f0a5";
}
.icon-hand-up:before {
    content: "f0a6";
}
.icon-hand-down:before {
    content: "f0a7";
}
.icon-circle-arrow-left:before {
    content: "f0a8";
}
.icon-circle-arrow-right:before {
    content: "f0a9";
}
.icon-circle-arrow-up:before {
    content: "f0aa";
}
.icon-circle-arrow-down:before {
    content: "f0ab";
}
.icon-globe:before {
    content: "f0ac";
}
.icon-wrench:before {
    content: "f0ad";
}
.icon-tasks:before {
    content: "f0ae";
}
.icon-filter:before {
    content: "f0b0";
}
.icon-briefcase:before {
    content: "f0b1";
}
.icon-fullscreen:before {
    content: "f0b2";
}
.icon-group:before {
    content: "f0c0";
}
.icon-link:before {
    content: "f0c1";
}
.icon-cloud:before {
    content: "f0c2";
}
.icon-beaker:before {
    content: "f0c3";
}
.icon-cut:before {
    content: "f0c4";
}
.icon-copy:before {
    content: "f0c5";
}
.icon-paperclip:before,
.icon-paper-clip:before {
    content: "f0c6";
}
.icon-save:before {
    content: "f0c7";
}
.icon-sign-blank:before {
    content: "f0c8";
}
.icon-reorder:before {
    content: "f0c9";
}
.icon-list-ul:before {
    content: "f0ca";
}
.icon-list-ol:before {
    content: "f0cb";
}
.icon-strikethrough:before {
    content: "f0cc";
}
.icon-underline:before {
    content: "f0cd";
}
.icon-table:before {
    content: "f0ce";
}
.icon-magic:before {
    content: "f0d0";
}
.icon-truck:before {
    content: "f0d1";
}
.icon-pinterest:before {
    content: "f0d2";
}
.icon-pinterest-sign:before {
    content: "f0d3";
}
.icon-google-plus-sign:before {
    content: "f0d4";
}
.icon-google-plus:before {
    content: "f0d5";
}
.icon-money:before {
    content: "f0d6";
}
.icon-caret-down:before {
    content: "f0d7";
}
.icon-caret-up:before {
    content: "f0d8";
}
.icon-caret-left:before {
    content: "f0d9";
}
.icon-caret-right:before {
    content: "f0da";
}
.icon-columns:before {
    content: "f0db";
}
.icon-sort:before {
    content: "f0dc";
}
.icon-sort-down:before {
    content: "f0dd";
}
.icon-sort-up:before {
    content: "f0de";
}
.icon-envelope:before {
    content: "f0e0";
}
.icon-linkedin:before {
    content: "f0e1";
    font-family: fontawesome;
}
.icon-rotate-left:before,
.icon-undo:before {
    content: "f0e2";
}
.icon-legal:before {
    content: "f0e3";
}
.icon-dashboard:before {
    content: "f0e4";
}
.icon-comment-alt:before {
    content: "f0e5";
}
.icon-comments-alt:before {
    content: "f0e6";
}
.icon-bolt:before {
    content: "f0e7";
}
.icon-sitemap:before {
    content: "f0e8";
}
.icon-umbrella:before {
    content: "f0e9";
}
.icon-paste:before {
    content: "f0ea";
}
.icon-lightbulb:before {
    content: "f0eb";
}
.icon-exchange:before {
    content: "f0ec";
}
.icon-cloud-download:before {
    content: "f0ed";
}
.icon-cloud-upload:before {
    content: "f0ee";
}
.icon-user-md:before {
    content: "f0f0";
}
.icon-stethoscope:before {
    content: "f0f1";
}
.icon-suitcase:before {
    content: "f0f2";
}
.icon-bell-alt:before {
    content: "f0f3";
}
.icon-coffee:before {
    content: "f0f4";
}
.icon-food:before {
    content: "f0f5";
}
.icon-file-text-alt:before {
    content: "f0f6";
}
.icon-building:before {
    content: "f0f7";
}
.icon-hospital:before {
    content: "f0f8";
}
.icon-ambulance:before {
    content: "f0f9";
}
.icon-medkit:before {
    content: "f0fa";
}
.icon-fighter-jet:before {
    content: "f0fb";
}
.icon-beer:before {
    content: "f0fc";
}
.icon-h-sign:before {
    content: "f0fd";
}
.icon-plus-sign-alt:before {
    content: "f0fe";
}
.icon-double-angle-left:before {
    content: "f100";
}
.icon-double-angle-right:before {
    content: "f101";
}
.icon-double-angle-up:before {
    content: "f102";
}
.icon-double-angle-down:before {
    content: "f103";
}
.icon-angle-left:before {
    content: "f104";
}
.icon-angle-right:before {
    content: "f105";
}
.icon-angle-up:before {
    content: "f106";
}
.icon-angle-down:before {
    content: "f107";
}
.icon-desktop:before {
    content: "f108";
}
.icon-laptop:before {
    content: "f109";
}
.icon-tablet:before {
    content: "f10a";
}
.icon-mobile-phone:before {
    content: "f10b";
}
.icon-circle-blank:before {
    content: "f10c";
}
.icon-quote-left:before {
    content: "f10d";
}
.icon-quote-right:before {
    content: "f10e";
}
.icon-spinner:before {
    content: "f110";
}
.icon-circle:before {
    content: "f111";
}
.icon-mail-reply:before,
.icon-reply:before {
    content: "f112";
}
.icon-github-alt:before {
    content: "f113";
}
.icon-folder-close-alt:before {
    content: "f114";
}
.icon-folder-open-alt:before {
    content: "f115";
}
.icon-expand-alt:before {
    content: "f116";
}
.icon-collapse-alt:before {
    content: "f117";
}
.icon-smile:before {
    content: "f118";
}
.icon-frown:before {
    content: "f119";
}
.icon-meh:before {
    content: "f11a";
}
.icon-gamepad:before {
    content: "f11b";
}
.icon-keyboard:before {
    content: "f11c";
}
.icon-flag-alt:before {
    content: "f11d";
}
.icon-flag-checkered:before {
    content: "f11e";
}
.icon-terminal:before {
    content: "f120";
}
.icon-code:before {
    content: "f121";
}
.icon-reply-all:before {
    content: "f122";
}
.icon-mail-reply-all:before {
    content: "f122";
}
.icon-star-half-full:before,
.icon-star-half-empty:before {
    content: "f123";
}
.icon-location-arrow:before {
    content: "f124";
}
.icon-crop:before {
    content: "f125";
}
.icon-code-fork:before {
    content: "f126";
}
.icon-unlink:before {
    content: "f127";
}
.icon-question:before {
    content: "f128";
}
.icon-info:before {
    content: "f129";
}
.icon-exclamation:before {
    content: "f12a";
}
.icon-superscript:before {
    content: "f12b";
}
.icon-subscript:before {
    content: "f12c";
}
.icon-eraser:before {
    content: "f12d";
}
.icon-puzzle-piece:before {
    content: "f12e";
}
.icon-microphone:before {
    content: "f130";
}
.icon-microphone-off:before {
    content: "f131";
}
.icon-shield:before {
    content: "f132";
}
.icon-calendar-empty:before {
    content: "f133";
}
.icon-fire-extinguisher:before {
    content: "f134";
}
.icon-rocket:before {
    content: "f135";
}
.icon-maxcdn:before {
    content: "f136";
}
.icon-chevron-sign-left:before {
    content: "f137";
}
.icon-chevron-sign-right:before {
    content: "f138";
}
.icon-chevron-sign-up:before {
    content: "f139";
}
.icon-chevron-sign-down:before {
    content: "f13a";
}
.icon-html5:before {
    content: "f13b";
}
.icon-css3:before {
    content: "f13c";
}
.icon-anchor:before {
    content: "f13d";
}
.icon-unlock-alt:before {
    content: "f13e";
}
.icon-bullseye:before {
    content: "f140";
}
.icon-ellipsis-horizontal:before {
    content: "f141";
}
.icon-ellipsis-vertical:before {
    content: "f142";
}
.icon-rss-sign:before {
    content: "f143";
}
.icon-play-sign:before {
    content: "f144";
}
.icon-ticket:before {
    content: "f145";
}
.icon-minus-sign-alt:before {
    content: "f146";
}
.icon-check-minus:before {
    content: "f147";
}
.icon-level-up:before {
    content: "f148";
}
.icon-level-down:before {
    content: "f149";
}
.icon-check-sign:before {
    content: "f14a";
}
.icon-edit-sign:before {
    content: "f14b";
}
.icon-external-link-sign:before {
    content: "f14c";
}
.icon-share-sign:before {
    content: "f14d";
}
.icon-compass:before {
    content: "f14e";
}
.icon-collapse:before {
    content: "f150";
}
.icon-collapse-top:before {
    content: "f151";
}
.icon-expand:before {
    content: "f152";
}
.icon-euro:before,
.icon-eur:before {
    content: "f153";
}
.icon-gbp:before {
    content: "f154";
}
.icon-dollar:before,
.icon-usd:before {
    content: "f155";
}
.icon-rupee:before,
.icon-inr:before {
    content: "f156";
}
.icon-yen:before,
.icon-jpy:before {
    content: "f157";
}
.icon-renminbi:before,
.icon-cny:before {
    content: "f158";
}
.icon-won:before,
.icon-krw:before {
    content: "f159";
}
.icon-bitcoin:before,
.icon-btc:before {
    content: "f15a";
}
.icon-file:before {
    content: "f15b";
}
.icon-file-text:before {
    content: "f15c";
}
.icon-sort-by-alphabet:before {
    content: "f15d";
}
.icon-sort-by-alphabet-alt:before {
    content: "f15e";
}
.icon-sort-by-attributes:before {
    content: "f160";
}
.icon-sort-by-attributes-alt:before {
    content: "f161";
}
.icon-sort-by-order:before {
    content: "f162";
}
.icon-sort-by-order-alt:before {
    content: "f163";
}
.icon-thumbs-up:before {
    content: "f164";
}
.icon-thumbs-down:before {
    content: "f165";
}
.icon-youtube-sign:before {
    content: "f166";
}
.icon-youtube:before {
    content: "f167";
}
.icon-xing:before {
    content: "f168";
}
.icon-xing-sign:before {
    content: "f169";
}
.icon-youtube-play:before {
    content: "f16a";
}
.icon-dropbox:before {
    content: "f16b";
}
.icon-stackexchange:before {
    content: "f16c";
}
.icon-instagram:before {
    content: "f16d";
}
.icon-flickr:before {
    content: "f16e";
}
.icon-adn:before {
    content: "f170";
}
.icon-bitbucket:before {
    content: "f171";
}
.icon-bitbucket-sign:before {
    content: "f172";
}
.icon-tumblr:before {
    content: "f173";
}
.icon-tumblr-sign:before {
    content: "f174";
}
.icon-long-arrow-down:before {
    content: "f175";
}
.icon-long-arrow-up:before {
    content: "f176";
}
.icon-long-arrow-left:before {
    content: "f177";
}
.icon-long-arrow-right:before {
    content: "f178";
}
.icon-apple:before {
    content: "f179";
}
.icon-windows:before {
    content: "f17a";
}
.icon-android:before {
    content: "f17b";
}
.icon-linux:before {
    content: "f17c";
}
.icon-dribbble:before {
    content: "f17d";
}
.icon-skype:before {
    content: "f17e";
}
.icon-foursquare:before {
    content: "f180";
}
.icon-trello:before {
    content: "f181";
}
.icon-female:before {
    content: "f182";
}
.icon-male:before {
    content: "f183";
}
.icon-gittip:before {
    content: "f184";
}
.icon-sun:before {
    content: "f185";
}
.icon-moon:before {
    content: "f186";
}
.icon-archive:before {
    content: "f187";
}
.icon-bug:before {
    content: "f188";
}
.icon-vk:before {
    content: "f189";
}
.icon-weibo:before {
    content: "f18a";
}
.icon-renren:before {
    content: "f18b";
}
.btn-orange {
    color: #fff;
    background-color: #fd8204;
    border-radius: 0;
    font-family: 'Ubuntumedium';
    font-size: 15px;
    text-transform: uppercase;
    padding: 8px 10px;
    margin-left: 35px;
    float: right;
}
.btn-orange span {
    float: left;
    margin-top: 2px;
    margin-right: 5px;
}
.btn-orange:hover {
    color: #fff !important;
}
.social table {
    float: right;
}
.padft {
    padding: 0 15px !important;
}
.fltmrg {
    float: none;
    margin: 0 auto;
}
.pad50px {
    padding: 0px 50px !important;
}
.blue-widget-section .widgettitle {
    color: #fff;
    font-size: 16px;
    font-family: 'Ubuntubold';
}
.blue-widget-section .textwidget img {
    max-width: 100%;
}
.blue-widget-section .textwidget p {
    font-size: 14px;
    font-family: 'Ubuntulight';
}
.blue-widget-section .textwidget {
    xmargin-top: 20px;
}
.white-widget-section .widgettitle {
    color: #0760bb;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'bebas_neueregular';
}
.white-widget-section .textwidget img {
    float: left;
    margin-right: 15px;
}
.white-widget-section .textwidget img.arr-img {
    float: none;
    margin-left: 10px;
}
.white-widget-section .textwidget p.green {
    color: #2c9a40;
    font-size: 15px;
    float: left;
    width: 80%;
    line-height: normal;
}
.white-widget-section .textwidget p.green a,
.white-widget-section .textwidget p.green a:hover {
    color: #2c9a40;
    font-size: 15px;
    text-decoration: none;
}
p.green i {
    color: #fd8204;
    margin-left: 5px;
}
.white-widget-section .textwidget p {
    font-size: 15px;
    font-family: 'Ubuntulight';
    color: #555555;
}
.paddtpbrd {
    padding-top: 10px;
    border-top: 3px solid #fec524;
}
.pad35t {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}
background:-moz-linear-gradient(top,
#eb8b14 0%,
#da6f0d 100%);
background:-webkit-gradient(linear,
left top,
left bottom,
color-stop(0%,
#eb8b14),
color-stop(100%,
#da6f0d));
background:-webkit-linear-gradient(top,
#eb8b14 0%,
#da6f0d 100%);
background:-o-linear-gradient(top,
#eb8b14 0%,
#da6f0d 100%);
background:-ms-linear-gradient(top,
#eb8b14 0%,
#da6f0d 100%);
background:linear-gradient(to bottom,
#eb8b14 0%,
#da6f0d 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eb8b14',
endColorstr='#da6f0d',
GradientType=0);
transition:all 0.4s linear 0s;
margin-top:23px;
margin-left:12px;

}
.navbar-nav>li:last-child:hover {
    background:none repeat scroll 0 0 #C17F00;
}
*/.pad-lft30 {
    padding:0 0 0 30px;
}
.pad-rgt30 {
    padding:0 30px 0 0;
}
.pad-rgt20 {
    padding:0 20px 0 0;
}
body {
    margin:0;
    padding:0;
    width:100%;
}
#inner-footer {
    padding:0;
    background-color:#000;
}
.b-bk p,
.b-bk h3 {
    color:#fff !important;
}
.navbar-default .navbar-brand {
    float:left;
    padding-top:0px;
}
.mrgt0 {
    margin-top:0 !important;
}
a {
    outline:none;
}
.blue-bg {
    background-color:#6ec4e7;
}
.blue-r {
    background-color:#0096aa
}
.cnt-c {
    font-size:17px;
}
.mmm .content-section1 p {
    font-size:18px;
}
.blue-r h3,
.blue-r p {
    color:#fff !important
}
.blue-dr {
    background-color:#00837e;
}
.blue-dr h3,
.blue-dr p {
    color:#fff !important
}
.drk-blue {
    background-color:#005487;
    color:#fff !important
}
.drk-blue h3,
.drk-blue p {
    color:#fff !important
}
.pur-blue {
    background-color:#7764a0;
    color:#fff !important
}
.pur-blue h3,
.pur-blue p {
    color:#fff !important
}
.dd-blue {
    background-color:#005cb9;
}
.dd-blue h3,
.dd-blue p {
    color:#fff !important
}
.title-section {
    font-size:45px;
    color:#fff;
    font-family:'bebas_neueregular';
    padding:25px;
    line-height:45px;
    min-height:185px;
}
.title-section1 {
    color:#fff;
    font-family:'bebas_neueregular';
    padding:25px;
    min-height:150px;
}
.mmg .content-section p {
    font-size:14px;
    text-align:justify
}
.mmg .content-section ul {
    display:block;
    margin:0 0 0 15px;
    padding:0;
}
.mmg .content-section ul li {
    margin-bottom:5px;
}
.content-section {
    font-size:15px;
    color:#555555;
    font-family:'Ubuntulight';
    padding:0 25px;
    line-height:24px;
}
.content-section1 {
    font-size:15px;
    color:#fff;
    font-family:'Ubuntulight';
    line-height:24px;
}
.content-section1 h3 {
    margin-top:0;
}
.mrgbt80 {
    margin-bottom:50px;
}
.content-section ul li {
    margin-bottom:20px;
}
.pad-lft0 {
    padding-left:0 !important;
}
.includ-foot {
    padding:35px 0 20px 0 !important;
    background-color:#ff8300;
}
span.ylw {
    font-family:'bebas_neueregular';
    color:#00837E;
    font-size:43px;
    line-height:43px;
    float:left;
    width:100%;
}
span.blu {
    font-family:'bebas_neueregular';
    color:#005487;
    font-size:43px;
    line-height:43px;
    float:left;
    margin-top:-13px;
    width:74%;
    text-align:right
}
span.blu1 {
    font-family:'bebas_neueregular';
    color:#005487;
    font-size:43px;
    line-height:43px;
    margin-top:-12px;
    float:left;
    width:100%
}
.txt p {
    float:left;
    width:100%;
    margin-bottom:15px;
}
.txt span {
    xfloat:left;
    width:60px;
    text-align:center;
}
.mrg-bot0 {
    margin-bottom:0px !important;
}
.txt a {
    font-family:'Ubuntubold';
    font-size:14px;
    color:#ffffff;
    text-decoration:none;
    xfloat:left;
    margin-right:10px;
    width:70%;
    text-transform:uppercase;
}
.txt a:hover {
    color:#2C9A40;
}
.txt a.cont {
    color:#fff
}
.txt a:hover.cont {
    color:#2C9A40;
}
.txx {
    float:left;
    width:30%;
}
.txt {
    float:left;
    width:70%;
}
.whole-subpage {
    background:none repeat scroll 0 0 #FFFFFF;
    box-shadow:0 0 7px #8A8A8A;
}
.tabs_content {
    border-left:1px solid #9B9B9B;
    margin:0 0 50px;
    padding-left:32px;
    padding-top:30px;
}
.submenu-section h4 {
    border-bottom:1px solid #E4E4E4;
    color:#3C3C3C;
    font-family:"ubuntulight";
    font-size:20px;
    font-weight:normal;
    margin:20px 30px 20px;
    padding:5px 0 20px;
}
.submenu-section ul.menu {
    margin:0;
    padding:0;
}
.submenu-section ul.menu li {
    cursor:pointer;
    position:relative;
    list-style:none;
}
.submenu-section ul.menu li a {
    color:#3C3C3C;
    display:block;
    font-size:17px;
    padding:10px 5px 10px 30px;
    text-decoration:none;
    font-family:'ubuntulight';
}
.submenu-section ul.menu li a:hover {
    background:none repeat scroll 0 0 #CCCCCC;
    color:#FFFFFF;
}
.submenu-section ul.menu li.current-menu-item a {
    background:none repeat scroll 0 0 #1F9F49 !important;
    color:#FFFFFF !important;
}
.menu:before {
    display:inline-block;
    width:0;
    height:0;
    margin-left:0px;
    vertical-align:middle;
    border-right:15px solid #2c9a40;
    border-top:15px solid rgba(44,
    154,
    64,
    0);
    border-bottom:15px solid rgba(44,
    154,
    64,
    0);
    position:absolute;
    left:-15px;
    top:0;
}
.tick-table {
    width:70%;
    margin:30px 0
}
.tick-table table tr th {
    color:#fff;
    font-family:'bebas_neueregular';
    font-size:25px;
    text-transform:uppercase;
    background-color:#005cb9;
    font-weight:normal;
}
.tick-table table tr td {
    color:#005cb9;
    font-family:'ubuntubold';
    font-size:18px;
    padding:13px 20px;
    border-bottom:1px solid #fec524;
}
.tick-table1 {
    margin:30px 0
}
.wd15 {
    width:15%;
}
.wd20 {
    width:20%;
}
.wd45 {
    width:65%;
}
.img-s {
    float:left;
    height:31px;
    margin-right:15px;
}
.btn-orange i {
    margin:0 0 0 3px;
}
.prod-pg {
    padding:15px;
}
.prod-pg h2 {
    color:#fff;
    font-size:35px;
    margin:0;
}
.pad-rt p {
    line-height:24px;
}
.features span {
    color:#005cb9;
    font-family:ubuntumedium;
    font-size:18px;
}
.features p {
    margin-bottom:10px;
}
.prod-pg span {
    color:#ffffff;
    font-family:ubuntumedium;
    font-size:20px;
}
.prod-pg p {
    color:#ffffff;
    font-family:ubuntulight;
    font-size:15px;
    margin-top:15px;
}
.features ul {
    margin:0;
    padding:0;
    margin-left:20px;
}
.features ul li {
    list-style:disc;
    margin-bottom:10px;
    font-family:ubuntulight;
    font-size:15px;
}
.ul-sec {
    border-top:3px solid #005CB9;
    padding-top:15px;
    margin-top:25px;
    float:left;
}
.ul-sec ul {
    margin:0;
    padding:0;
    margin-left:20px;
}
.ul-sec ul li {
    list-style:disc;
    margin-bottom:15px;
    font-family:ubuntulight;
    font-size:15px;
}
.ul-sec p {
    margin:15px 0;
}
.ul-sec p a {
    text-decoration:none;
    color:#2c9a40;
    font-style:italic;
}
.pad-rt {
    padding-right:25px !important;
}
.pad-lt {
    padding-left:25px;
    float:left;
}
.h3-marg h3 {
    margin-top:0 !important;
}
.mrgbt {
    margin-bottom:40px;
    margin-top:20px;
    float:left;
}
.mrgbt1 {
    margin-bottom:20px;
    margin-top:10px;
    float:left;
}
a.btnlink {
    background:none repeat scroll 0 0 #0D6CB5;
    box-shadow:2.5px 4.33px 0 0 #055898;
    color:#FFFFFF;
    font-family:'ubunturegular';
    padding:7px 25px;
    text-decoration:none;
    float:left;
    margin-top:10px;
}
a:hover.btnlink {
    color:#fff;
    text-decoration:none;
}
.txt p span {
    float:left;
}
.left-text-whole1 img {
    text-align:center;
}
.right-bottom2 {
    float:left;
    width:100%;
}
.right-bottom2 .btn-orange {
    float:left;
    margin-left:0 !important;
}
.right-bottom1 .btn-orange {
    float:left;
    margin-left:0 !important;
    margin-right:20px;
    font-size:21px;
}
.right-bottom1 .btn-orange:hover {
    font-size:21px;
}
.caret {
    display:none;
}
.logo-cmbg {
    background-color:#005cb9;
    padding:10px 0;
}
.fltn {
    float:none;
    margin:0 auto;
}
.mar-img img {
    margin-right:35px;
}
ul.ul-sty {
    color:#555555 !important;
    font-family:ubuntulight;
    font-size:15px;
    margin:0 0 10px;
}
ul.ul-sty li {
    list-style:disc;
    margin-bottom:10px;
}
.rw-sect {
    float:left;
    width:100%;
    margin-bottom:50px;
}
.link-sect {
    float:left;
}
.link-sect a {
    float:left;
    width:100%;
    margin-left:30px;
    color:#00802A;
    font-size:22px;
    font-family:ubuntulight;
    text-decoration:none;
}
.img-sect {
    float:left;
    margin:0 25px 0 0;
}
.link-sect a.download {
    background-image:url(images/cloudbook-download.jpg);
    background-repeat:no-repeat;
    background-position:left 0;
    padding-left:34px;
    font-family:ubuntulight;
    color:#3A3A3A;
    font-size:18px;
    margin-top:15px;
}
.down-sect {
    border-bottom:1px solid #ccc;
    xpadding-top:15px;
    float:left;
    width:100%;
}
a,
input,
img {
    outline:none;
}
header {
    position:relative;
    z-index:2;
}
.container {
    position:relative;
    z-index:1;
}
.video-img img {
    margin:0 !important
}
.down-sect p.lead,
.down-sect p {
    color:#555555 !important;
    font-family:ubuntulight !important;
    font-size:18px !important;
    margin:15px 0 !important;
}
.paddtpbrd h4 {
    margin-top:0 !important;
}
.mrgbtt {
    margin-bottom:5px;
}
h1.page-title {
    display:block;
    color:#005CB9;
    font-family:'ubuntulight';
    font-size:34px;
    margin:0;
}
.tick-table1 table tr td ul li h3 {
    margin:0 !important;
    font-size:19px !important
}
.tick-table table tr td ul li h3 {
    margin:0 !important;
    font-size:19px !important
}
.text-sec a {
    color:#2c9a40;
    text-decoration:none;
    font-size:13px;
    font-family:'ubuntulight' !important;
    font-size:17px;
}
.tab-img {
    margin:50px 0;
}
.tab-img img {
    float:left;
    margin-right:20px;
}
.tab-img1 img {
    float:left;
}
.tab-img1 ul li {
    list-style:none;
    margin-right:20px;
    float:left;
    min-height:200px;
}
.im-ss {
    margin:20px 0;
    text-align:center;
}
table.log-tab tr td {
    border-bottom:none;
}
.tex-whl p {
    color:#555555;
    font-family:ubuntulight;
    font-size:15px;
    margin:20px 0 10px;
}
.centt td {
    vertical-align:center !important;
}
.pd-top25 {
    padding-top:25px;
}
.pd-bot25 {
    padding-bottom:25px;
}
.blog-cont h4 a:hover {
    text-decoration:none
}
#spend_filter {
    float:right;
    width:14%;
}
#spend_filter a.btn {
    width:100%
}
#spend_filter .btn:hover,
#spend_filter .btn:focus {
    color:inherit !important
}
li.limre,
li.licmt {
    list-style:none;
    float:left;
    padding-right:10px
}
li.limre a,
li.licmt a {
    color:#7E7E7E;
    display:inline-block;
    float:left;
    text-decoration:none;
    text-transform:uppercase;
}
li.limre a img,
li.licmt a img {
    vertical-align:middle;
    padding:0 11px 2px 0;
    filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter:gray;
    -webkit-filter:grayscale(100%);
    transition:all .4s linear;
    -o-transition:all .4s linear;
    -moz-transition:all .4s linear;
    -webkit-transition:all .4s linear;
    border:0
}
li.limre a img:hover,
li.licmt a img:hover {
    filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
    -webkit-filter:grayscale(0%)
}
li.limre a:hover,
li.licmt a:hover {
    color:#1F9F49;
}
.blog-cont .more-link {
    display:none
}
.blog-cont .links {
    padding-bottom:12px;
}
.blog-cont .links ul {
    margin-left:0;
    padding-left:0;
}
.bg-slider-blue {
    background:#fff;
}
.cc-container {
    max-width:1140px;
}
.pst .txxt p {
    padding-top:6px;
}
.fade1 .cnn h2 {
    margin-top:0 !important
}
.fade1 img {
    max-height:70px;
    margin-top:0 !important
}
.fade1 img.twit {
    max-height:44px !important
}
.fade1 div.textwidget {
    width:100% !important
}
.l-ico .glyphicon {
    color:#5eb447;
    font-size:21px;
    margin-right:8px;
    top:5px;
}
.blue {
    color:#116cb3 !important;
}
.table-bordered.bp td img {
    max-width:200px !important;
    height:auto;
    text-align:center;
    vertical-align:middle;
    display:table;
}
table.press-kit {
    width:100%;
    text-align:center;
    margin-top:20px;
}
table.press-kit h3 {
    margin:0;
}
.table-bordered.bp td img {
    max-width:200px !important;
    height:auto;
    text-align:center;
    vertical-align:middle;
    display:table;
}
.management-whole .social a {
    margin-right:5px;
}
.management-whole .social a img {
    width:25px;
    border:none;
}
.management-whole .social {
    margin-top:10px;
}
.management-whole h2 {
    margin-bottom:0;
    text-tranform:uppercase
}
.management-whole p.text-muted {
    margin-bottom:0;
}
.management-whole img {
    width:240px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    padding:4px;
    border:1px solid #ccc;
}
.management-whole h3 {
    text-transform:uppercase;
    margin-bottom:0
}
.management-whole .row-table {
    margin:50px 0 80px;
}
.directors .col-sm-3 {
    text-align:center;
}
.directors {
    margin:50px 0;
}
.directors img {
    width:100px;
}
.directors h3 {
    font-size:14px;
}
.directors p {
    font-size:12px;
    margin-top:5px;
}
.directors {
    float:left;
    width:100%;
}
.page-id-531 h1.page-title {
    display:none;
}
.cnntt {
    margin-top:15px;
}
@media (min-width:992px) {
    .modal-lg {
        width: 600px;
    }
}
@media (max-width:768px) {
    .management-whole .social {
        width: 100%;
    }
    .management-whole .social a {
        float: left;
        margin-top: 20px;
    }
    .management-whole .directors .social a {
        float: none
    }
    .directors .col-sm-3 {
        margin-bottom: 60px;
    }
    .management-whole .col-xs-4 {
        margin-bottom: 50px;
    }
    .management-whole .col-xs-4,
    .management-whole .col-xs-8 {
        width: 100%;
    }
}
@media (max-width:600px) {
    .management-whole {
        margin-top: 70px;
    }
}
.padd p {
    font-family:ubuntulight;
    font-size:14px;
}
label.pwer {
    margin-bottom:0px
}
.im-sec .im img {
    width:100%;
}
.im-sec {
    background-color:#e1ddde;
    margin-bottom:5px;
}
.im-sec .pdff {
    padding:10px 0;
    display:inline-block
}
#showloadpopup .modal-header {
    background-color:#FFF;
    padding:10px;
    border-bottom:none;
    border-radius:10px
}
#showloadpopup .modal-content {
    border-radius:10px
}
#showloadpopup .footer-logo {
    margin:0px;
    margin-bottom:5px;
}
#showloadpopup .top-sec {
    padding:25px 10px 0px 10px;
}
#showloadpopup .cntsec {
    margin:0px 23px 23px;
    display:inline-block;
    border:2px solid #ccc;
    display:inline-block;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.bgbackground .pg-canvas {
    height:710px !important;
    width:100% !important
}
#showloadpopup .modal-footer {
    border:none;
}
.san-dsk h1 {
    color:#015cb9;
    font-size:20px;
    margin:0px;
    padding:0px;
    font-family:'ubuntubold';
}
.san-dsk h3 {
    font-size:14px;
    margin-top:10px;
    line-height:18px;
    font-family:ubuntulight;
}
.row.case-styd {
    margin-left:0px;
    margin-right:0px;
}
.row.cludbyt {
    margin-left:0px !important;
    margin-right:0px !important;
}
.case-styd {
    padding-top:15px;
    border-top:1px solid rgb(197,
    197,
    197);
    margin-top:15px;
}
.txt-logo label {
    font-size:20px;
    width:100%;
}
.img-responsive {
    display:inline-block;
    height:auto;
}
.padd span {
    font-size:14px;
    padding-top:0px;
    padding-bottom:5px;
    font-style:italic;
}
.padd strong {
    font-size:13px;
}
button.btn.btn-lg.white {
    width:100%;
    margin-top:5px;
    background-color:#FFFFFF;
    border:2px solid rgb(197,
    197,
    197);
    -webkit-border-radius:0px;
    -moz-border-radius:0px;
    border-radius:0px;
    padding:2px;
    font-size:15px;
}
.cloud-img span.t,
.case span.t {
    font-size:12px;
    margin-right:15px;
}
.cloud-img span img,
.case span img {
    float:right;
    margin-top:3px;
}
span.arr {
    position:absolute;
    right:4px;
    top:4px;
}
button.white {
    position:relative;
}
@media(max-width:1272px) {
    button.btn.btn-lg.white {
        width: 100%
    }
}
@media(max-width:1199px) {
    button.btn.btn-lg.white {
        width: 100%;
    }
}
@media(max-width:1100px) {
    .bg-wht.welcome .nav-pills li {
        padding: 0px !important;
        width: 32% !important;
        float: none !important;
        display: inline-block !important;
        text-align: center !important;
        margin-bottom: 50px !important;
    }
    .bg-wht.welcome .nav-pills {
        text-align: center;
    }
}
@media(max-width:991px) {
    .modal-dialog.wdth {
        width: 90% !important;
    }
    .collection {
        margin-top: 20px;
    }
    span.distblcel {
        padding-left: 15px;
        width: 50%;
    }
    h5.distblcel {
        padding-left: 15px;
        width: 50%;
    }
    #carousel-example-generic3 .carousel-inner>.item img {
        width: 100%;
    }
    .award p span {
        color: #fff;
        font-size: 24px;
        line-height: 28px;
    }
}
@media(max-width:820px) {
    .bg-wht.welcome .nav-pills li {
        width: 47% !important;
    }
}
@media(max-width:767px) {
    #carousel-example-generic3 .carousel-inner>.item img {
        width: 335px;
    }
    .bg-wht.welcome .nav-pills li {
        width: 45% !important;
    }
    .blog .thumbnail img {
        width: 100%;
    }
    ul.nav li.dropdown>ul.dropdown-menu .dropdown-menu {
        left: 0 !important
    }
    #main article img.sandisk {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #main article .btn-d img {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    #main article img {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .san-dsk h1 {
        margin-top: 0px;
    }
    .padd {
        padding-left: 0px;
    }
    .txt-logo label {
        padding-left: 0px;
        padding-top: 20px;
    }
    .san-dsk {
        border-left: none !important;
    }
    .txt-logo {
        border-left: none !important;
    }
    .modal-dialog.wdth {
        width: 100% !important;
    }
    .banner-tl h2 {
        font-size: 25px;
    }
    .blu-header h2 {
        font-size: 26px;
    }
    .pro .pro-content,
    .pro1 .pro-content {
        min-height: 50px;
    }
    .pro .tick-table1 table tr td.subhd,
    .pro1 .tick-table1 table tr td.subhd {
        font-size: 14px !important;
    }
    .pro .tick-table1 table tr th {
        font-size: 16px;
    }
    .tick-table1 table tr th {
        font-size: 16px;
    }
}
@media(max-width:650px) {
    .san-dsk h3 {
        font-size: 10px;
    }
    .san-dsk h1 {
        font-size: 18px;
    }
    .im-sec .pdff img {
        width: 50%;
    }
    .cloud-img span.t,
    .case span.t {
        font-size: 12px;
    }
    .cloud-img span img,
    .case span img {
        margin-top: 5px;
    }
    .padd span,
    .padd p {
        font-size: 13px;
    }
}
@media(max-width:510px) {
    .lftt,
    .rtt {
        width: 100%;
    }
    .rtt {
        margin-top: 20px;
    }
    .san-dsk h1 {
        font-size: 17px;
    }
    .san-dsk h3 {
        font-size: 12px;
    }
    .im-sec .pdff img {
        width: 100%;
    }
    .blu-header h2 {
        font-size: 22px;
    }
    ul.Lst li {
        font-size: 13px;
    }
    .banner-tl h2 {
        font-size: 23px;
    }
    .blu-header h3 {
        font-size: 18px;
    }
}
@media(max-width:480px) {
    .san-dsk h1 {
        font-size: 13px;
    }
    .san-dsk h3 {
        font-size: 11px;
    }
    h5.distblcel {
        font-size: 12px;
    }
}
img {
    max-width:100%;
}
.home .bgwht,
.home .bg-slider-blue {
    background-color:transparent;
}
.top-bar {
    display:none;
}
.home .slider {
    display:none
}
.home #main {
    margin:0px !important
}
.home .tpanimate {
    xborder-bottom:1px solid #ffffff !important;
}
.home.page .tpanimate,
.home.age .page-child .navbar-fixed-top {
    background:none;
    background-size:100%;
    background-color:#fff!important;
}
.page-id-531 .page-header h1 {
    display:none;
}
.tpanimate,
.page-child .navbar-fixed-top,
.page-template-default .navbar-fixed-top,
.page .navbar-fixed-top,
.single .navbar-fixed-top {
    xbackground:url('/wp-content/uploads/2016/12/bg.jpg');
    background-size:100%;
    xbackground-color:#bec6d1 !important;
    background-repeat:no-repeat;
    background-color:#005cb9;
}
.bgbackground {
    xbackground:url('/wp-content/uploads/2016/12/bg.jpg');
    xbackground-size:100%;
    background-repeat:no-repeat;
    xpadding-top:180px;
    background-position:top;
    float:left;
    xwidth:100%;
    background-size:cover;
    min-height:680px;
    background:#005cb9;
}
.home .bg-blue1 {
    margin-top:0px !important
}
.award p span {
    color:#fff;
    font-size:26px;
    line-height:28px;
}
.award p a {
    color:#fff;
    font-size:18px;
    padding:8px 26px;
    border-radius:2px;
}
.graybg {
    background:url('/wp-content/uploads/2016/12/graybg.jpg');
}
.teambg {
    background:url('/wp-content/uploads/2016/12/teambg.jpg');
    padding:0
}
.pad70_0 {
    padding-top:70px !important;
    padding-bottom:70px !important;
}
.pad40_0 {
    padding-top:0px !important;
    padding-bottom:0px !important;
}
.scaleup .scalergt .media-right.img {
    top:-70px
}
.scaleup .scalelft .media-body {
    padding-right:230px;
    position:relative;
    top:100px
}
.scaleup .scalelft .media-body:before,
.scalelft .media-body:after {
    top:0 !important
}
.scalelft .media-body {
    padding-right:230px;
    position:relative;
    top:0px
}
.scalergt .media-body {
    padding-left:230px;
    position:relative;
}
.media-left a,
.media-right a {
    position:relative;
    z-index:3;
    float:left;
}
.scalelft .media-body:before {
    content:"";
    position:absolute;
    right:110px;
    width:110px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:10px;
    top:50%;
    z-index:2
}
.mrgtp50p {
    margin-top:50px;
}
.scalergt .media-right:after {
    content:"";
    position:absolute;
    right:110px;
    xwidth:10px;
    background:url(/wp-content/uploads/2016/12/brd.jpg);
    height:50%;
    bottom:50%;
    z-index:2;
}
.scalelft .media-body:after {
    content:"";
    position:absolute;
    right:110px;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:100%;
    top:50%;
    z-index:2
}
.scalelft .media-left:after {
    content:"";
    position:absolute;
    left:110px;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:50%;
    top:50%;
    z-index:2
}
.scalergt.scale-rgt-sec.scaleup .media-body:after {
    left:110px !important;
}
.scalergt .media-body:after {
    content:"";
    position:absolute;
    xleft:110px;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:100%;
    bottom:50%;
    z-index:2
}
.scalergt .media-body:before {
    content:"";
    position:absolute;
    left:110px;
    width:110px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:10px;
    top:50%;
    z-index:2
}
.media {
    margin:30px 0;
}
.media-body,
.media-left,
.media-right {
    display:table-cell;
    vertical-align:middle;
}
.media-left,
.media-right {
    position:relative;
    z-index:3
}
.media-right,
.media>.pull-right {
    padding-left:10px;
}
.media-left,
.media>.pull-left {
    padding-right:10px;
}
.media-heading {
    margin-top:0;
    margin-bottom:5px;
}
.media,
.media-body {
    overflow:inherit;
    zoom:1;
}
.blog .thumbnail {
    height:auto !important;
    padding:0 !important;
    border-radius:0px
}
.textwidget .thumbnail {
    height:auto !important
}
.pdbt0 {
    padding-bottom:0 !important
}
.greenbg {
    background-color:#2c9a41;
    color:#fff;
}
.greenbg h2,
.greenbg p {
    color:#fff;
}
.footer-bottom-copy {
    float:left;
}
#inner-footer {
    background-color:#0b1723;
    padding:20px 0
}
.copyright>div {
    margin-top:0 !important
}
.copyright {
    background-color:#005cb9;
    color:#fff;
    padding:10px 0;
    clear:both
}
.bg-blue1 {
    background-color:#005cb9
}
.brdlogo {
    position:relative;
    xmargin-bottom:60px;
    display:inline-block;
    width:100%
}
.brdlftlogo {
    position:relative;
    margin-bottom:60px;
    display:inline-block;
    width:100%
}
.brdlftlogo:after {
    background:url('/wp-content/uploads/2016/12/brdlogo.png') #f0f0f0;
    content:"";
    position:absolute;
    bottom:-40px;
    width:40px;
    height:40px;
    text-align:center;
    left:0%;
}
.brdlftlogo:before {
    content:"";
    position:absolute;
    bottom:-24px;
    width:100%;
    height:1px;
    text-align:center;
    left:0px;
    background-color:#999999
}
.news .brdlftlogo:after {
    background-color:#fff;
}
.clr333 {
    color:#333333
}
.lblue {
    color:#005cb9
}
.lgreen {
    color:#309b3d
}
.tphead {
    font-family:'Conv_Sqr721e',
    sans-serif;
    font-size:38px;
    color:#000;
    margin-bottom:5px
}
.scndtop {
    color:#000;
    font-size:35px;
    font-family:'Conv_Sqr721c';
    margin-top:0
}
.right-top1 p.secp {
    color:#000
}
.right-top1 p {
    line-height:25px
}
.slidebtn {
    font-size:22px !important;
}
.welcome h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
}
.award p span {
    font-family:'Conv_Sqr721e',
    sans-serif;
}
.scaleup h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#000
}
.qos h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.devbox h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.products h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.team h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.news h2.brdlftlogo {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.blog h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.clients h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#333333
}
.request h2 {
    font-family:'Conv_Sqr721e',
    sans-serif;
    color:#fff;
    margin-top:0
}
.request p {
    font-size:15px;
    color:#fff
}
.products p {
    font-size:15px;
}
.scaleup p {
    font-size:15px;
    color:#000;
    padding:15px 0px;
}
.welcome h4 {
    margin-bottom:10px;
}
.welcome p {
    font-size:18px;
    line-height:24px;
    font-family:'open_sansregular';
    padding:12px 0px;
    color:#000000;
}
.navbar-default {
    padding-bottom:20px;
}
.btn-green {
    background-color:#2c9a41;
    color:#fff;
    border-radius:4px;
    font-family:'open_sanssemibold';
    padding:10px 30px;
    font-size:16px;
    white-space:pre-wrap;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green:visited {
    background-color:#2c9a41;
    color:#fff;
    border-radius:4px;
}
.btn-greenbrd {
    background-color:#fff;
    color:#2c9a41;
    border-radius:5px;
    padding:10px 15px;
    font-size:18px;
    border:2px solid #2c9a41
}
.btn-greenbrd:hover,
.btn-greenbrd:focus,
.btn-greenbrd:active,
.btn-greenbrd:visited {
    background-color:#2c9a41;
    color:#fff;
    border-radius:5px;
}
.btn-dblue {
    background-color:#005cb9;
    color:#fff;
    border-radius:2px;
    padding:10px 15px;
    font-size:18px;
}
.btn-dblue:hover,
.btn-dblue:focus,
.btn-dblue:active,
.btn-dblue:visited {
    background-color:#004a94;
    color:#fff;
    border-radius:2px;
}
.navbar-default .navbar-nav>li>a {
    color:#0060b5;
    font-weight:bold;
    font-family:'open_sansregular';
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.current-menu-ancestor>a {
    color:#0060b5;
    position:relative
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color:#fff !important;
}
.navbar-default .navbar-nav>li>a:hover:before,
.navbar-default .navbar-nav>li>a:focus:before {
    content:"";
    background-color:#fff;
    height:2px;
    width:100%;
    position:absolute;
    bottom:0px;
    left:0;
}
.navbar-default .navbar-nav>.active>a:before,
.navbar-default .navbar-nav>.active>a:hover:before,
.navbar-default .navbar-nav>.active>a:focus:before,
.navbar-default .navbar-nav>.current-menu-ancestor>a:before {
    content:"";
    background-color:#fff;
    height:2px;
    width:100%;
    position:absolute;
    bottom:0px;
    left:0;
}
.navbar-default .navbar-nav>.active>a:after,
.navbar-default .navbar-nav>.active>a:hover:after,
.navbar-default .navbar-nav>.active>a:focus:after,
.navbar-default .navbar-nav>.current-menu-ancestor>a:after {
    content:"";
    background:url('/wp-content/uploads/2016/12/menu.png') no-repeat;
    background-position:center;
    height:24px;
    width:100%;
    position:absolute;
    bottom:30px;
    left:0;
    width:100%;
    display:none;
}
#menu-header-menu {
    margin-top:34px;
}
.navbar-default .navbar-nav>li>a {
    line-height:normal
}
.nav>li>a {
    padding:10px 0
}
.navbar-brand {
    margin-top:15px;
}
.nav>li {
    padding:0 9px;
}
.navbar-nav>li>a .caret {
    display:inline-block;
    border:none;
    margin-right:10px;
}
.navbar-nav>li>a .caret:before {
    content:"\f107";
    font:normal normal normal 14px/1 FontAwesome;
    margin-left:5px;
    top:10px;
    position:absolute
}
.top-social {
    margin-top:10px;
}
.top-social a {
    color:#fff;
    margin:0 5px;
    font-size:18px;
}
.team {
    background:url('/wp-content/uploads/2016/12/teambg.png');
    background-repeat:no-repeat;
    background-position:left 40px;
    float:left;
    width:100%;
}
.request {
    background:url('/wp-content/uploads/2016/12/requestbg.png') #2c9a41;
    background-repeat:no-repeat;
    background-position:left 40px;
}
#inner-footer {
    background:url('/wp-content/uploads/2016/12/footer.png') #0b1723;
    background-repeat:no-repeat;
    background-position:right 40px;
}
.qos,
.qos p {
    color:#333;
    font-size:16px;
}
.thumbnail {
    height:auto !important
}
.devbox p {
    color:#000;
    font-size:15px;
}
.selectcustomers .brdlogo:after {
    background-color:#f1f1f1
}
.team .brdlogo:after {
    background-color:#f6f6f6
}
.arrows {
    font-size:15px;
    margin-top:5px;
}
.arrows a {
    border-radius:50%;
    border:2px solid #999999;
    width:30px;
    height:30px;
    float:left;
    line-height:27px;
    text-align:center;
    text-decoration:none;
    color:#999999;
    margin:3px;
    font-weight:bold;
    font-size:13px;
}
.arrows a.active {
    border:2px solid #78b184;
    color:#78b184
}
.datebox .green {
    background-color:#2d9a41;
    color:#fff;
    float:left;
    width:100%;
    font-size:25px;
    text-align:center;
    padding:5px 0;
    color:#fff;
}
.datebox .blue {
    background-color:#005cb9;
    color:#fff !important;
    float:left;
    width:100%;
    font-size:15px;
    text-align:center;
    padding:5px 0;
}
.datebox {
    width:50px;
}
.news .media {
    margin:0px;
    padding:20px 0;
}
.news .first {
    border-bottom:1px dotted #000
}
.testibox .media-left a {
    border:3px solid #2d9a41;
    border-radius:50%;
    margin-bottom:15px;
}
.testibox .media-left a img {
    border:1px solid #fff;
    border-radius:50%
}
.testimonials img {
    border:3px solid #2d9a41;
    border-radius:50%
}
.testimonials .middle,
.testimonials {
    width:100%
}
.testibox p {
    font-size:15px;
    font-style:italic;
}
.testibox p:before,
.testimonials .middle>p:before {
    content:open-quote;
    font-family:georgia;
    font-size:69px;
    position:relative;
    line-height:0px;
    top:35px;
    margin-right:15px;
    color:#d2e2f2;
    xbackground-image:url('/wp-content/uploads/2016/12/quote1.png');
}
.testibox p:after,
.testimonials .middle>p:after {
    content:close-quote;
    line-height:0px;
    top:35px;
    position:relative;
    font-family:georgia;
    font-size:69px;
    margin-left:15px;
    color:#d2e2f2;
    xbackground-image:url('/wp-content/uploads/2016/12/quote2.png');
}
.testimonials .middle>p {
    font-size:20px;
    margin-right:20px;
}
.blog .brdlogo:after {
    background-color:#f0f0f0
}
.request input {
    padding:17px;
    height:53px;
    border:none;
    color:#333
}
#widget-footer .widgettitle {
    font-size:22px;
    position:relative;
    padding-bottom:15px;
    margin-bottom:15px;
}
#widget-footer .widgettitle:before {
    content:"";
    position:absolute;
    background-color:#3c454e;
    height:1px;
    width:100%;
    bottom:0
}
#widget-footer .widgettitle:after {
    content:"";
    position:absolute;
    background-color:#2c9a41;
    height:1px;
    width:40px;
    bottom:0;
    left:0
}
#widget-footer .widgettitle::last-word {
    color:#2c9a41
}
#widget-footer .contact {
    color:#fff;
    line-height:28px;
}
#widget-footer .phone:before {
    content:"\f095";
    font:normal normal normal 14px/1 FontAwesome;
    font-size:18px;
    margin-right:10px;
    color:#2c9a41;
}
#widget-footer .mail:before {
    content:"\f0e0";
    font:normal normal normal 14px/1 FontAwesome;
    font-size:18px;
    margin-right:10px;
    color:#2c9a41;
}
#menu-footermenu {
    list-style:none;
    padding:0;
    margin:0;
    xborder-right:1px solid #080808;
}
#menu-footermenu a {
    color:#fff;
}
#menu-footermenu li:hover a {
    color:#2c9a41;
    text-decoration:none;
}
#menu-footermenu li {
    line-height:28px;
}
#menu-footermenu li:before {
    content:"\f105";
    font:normal normal normal 14px/1 FontAwesome;
    font-size:18px;
    margin-right:10px;
    color:#fff
}
#menu-footermenu li:hover:before {
    color:#23b8d6;
    text-decoration:none;
}
.mgnlft24 {
    margin-left:24px;
}
table.cnss-social-icon tr td a img {
    border:2px solid #fff !important;
    border-radius:50%;
}
.news .carousel-control {
    position:relative!important;
    display:block !important;
    background-image:none !important;
    text-shadow:none !important;
    opacity:1 !important
}
.blog .carousel-control,
.cararrow .carousel-control {
    display:block !important;
    background-image:none !important;
    text-shadow:none !important;
    opacity:1 !important
}
.blog .carousel-control.left,
.cararrow .carousel-control.left {
    left:-10%;
    font-size:65px;
    color:#ccc;
    top:30%
}
.blog .carousel-control.right,
.cararrow .carousel-control.right {
    right:-10%;
    font-size:65px;
    color:#ccc;
    top:30%
}
.news .carousel-inner {
    min-height:0 !important
}
.products .nav-pills li a {
    background-color:#fff;
    border:2px solid #2c9a41;
    xcolor:#2c9a41;
    padding-left:15px;
    padding-right:10px;
}
.products .nav-pills li.active a {
    background-color:#2c9a41;
    border:2px solid #2c9a41;
    color:#fff;
}
.tab-content>div {
    display:none
}
.tab-content>div.active {
    display:block
}
h3,
.h3 {
    color:#000000;
    font-family:'open_sanssemibold';
    font-size:20px;
}
#carousel-example-generic2 .carousel-inner {
    text-align:center !important;
}
#carousel-example-generic2 .carousel-inner>.item>img,
#carousel-example-generic2 .carousel-inner>.item>a>img {
    display:block;
    max-width:100%;
    height:auto;
    line-height:1;
    margin:0 auto;
}
.bg-wht.welcome .nav-pills li {
    padding:0px !important;
}
.nav.navbar-nav>li {
    padding:0 16px;
}
.nav.navbar-nav>li:last-child {
    padding-right:0px;
}
.nav.navbar-nav>li:first-child {
    padding-left:0px;
}
.btn-green.slidebtn.btn-sm.support {
    font-size:18px !important;
    font-family:'open_sanssemibold';
    padding:6px 20px;
}
p.community-edit span {
    float:left;
    width:75%;
    text-transform:none !important;
}
.textwidget .our-demo {
    width:25%;
    float:left;
    padding-top:4px;
}
.textwidget .our-demo a {
    font-family:'open_sanssemibold';
    padding:10px 30px;
}
.right-image-bg img {
    width:500px;
    margin-left:35px;
    max-width:100%;
}
img {
    max-width:initial;
}
.btn-greenbrd.benifit {
    font-family:'open_sanssemibold';
    padding:10px 30px;
}
.bg-wht.welcome .nav-pills li .prod1 img.image1 {
    display:none;
}
.bg-wht.welcome .nav-pills li .prod1 img.image2 {
    display:inline-block;
}
.bg-wht.welcome .nav-pills li .prod2 img.image1 {
    display:none;
}
.bg-wht.welcome .nav-pills li .prod2 img.image2 {
    display:inline-block;
}
.bg-wht.welcome .nav-pills li .prod3 img.image1 {
    display:none;
}
.bg-wht.welcome .nav-pills li .prod3 img.image2 {
    display:inline-block;
}
.bg-wht.welcome .nav-pills li .prod4 img.image1 {
    display:none;
}
.bg-wht.welcome .nav-pills li .prod4 img.image2 {
    display:inline-block;
}
.bg-wht.welcome .nav-pills li .prod5 img.image1 {
    display:none;
}
.bg-wht.welcome .nav-pills li .prod5 img.image2 {
    display:inline-block;
}
.bg-wht.welcome .nav-pills li h3 {
    min-height:43px;
}
a.left.carousel-control.active {
    color:#78b184;
}
a.right.carousel-control.active {
    color:#78b184;
}
.brdlftlogo .arrows a {
    border-radius:3px !important;
    Width:auto !important;
    height:auto !important;
    padding:5px 10px;
    line-height:NORMAL !important;
    border:none !important;
    font-size:12px;
    color:#fff;
}
#owl-carousel .caption h3 {
    min-height:50px;
}
#owl-carousel .caption h3+p {
    min-height:30px;
}
#owl-carousel .caption p.description {
    min-height:70px;
}
.post_content p.lead {
    color:#333333 !important;
    font-family:'open_sansregular';
}
.page-id-3285 h1.page-title {
    display:none;
}
.dropdown-menu>li.current-menu-item>a:hover,
.dropdown-menu>li.current-menu-item>a:focus {
    text-decoration:none;
    color:#fff;
    background-color:#2c9a40;
}
.dropdown-menu>li.current-menu-item>a {
    text-decoration:none;
    color:#fff;
    background-color:#2c9a40;
}
.dropdown-menu>li.current-menu-ancestor>a {
    text-decoration:none;
    color:#fff;
    background-color:#2c9a40;
}
.contact-image a span {
    font-size:12px
}
.contact-image .europe-office {
    border:none;
    display:block;
    position:absolute;
    top:78px;
    left:390px;
}
.our-team .scalelft.sec1 .media-left {
    padding:0px 0px 60px 0px;
}
.our-team .scalergt.sec2 .media-right {
    padding:40px 0px;
}
.our-team .scalelft.sec3 .media-right {
    padding:40px 0px;
}
.our-team .scalelft.sec3 .media-left {
    padding:40px 0px;
}
.our-team .scalergt.sec4 .media-right {
    padding:60px 0px;
}
.our-team .scalelft.sec1 .media-body {
    padding:0px 0px 40px 30px;
}
.our-team .scalelft.sec3 .media-body {
    padding:40px 0px 40px 30px;
}
.our-team .scalergt.sec2 .media-body {
    padding:40px 30px 40px 0px;
}
.our-team .scalergt.sec4 .media-body {
    padding:40px 30px 40px 0px;
}
.our-team .scalelft .media-left:after {
    display:none;
}
.profile-sec {
    padding-top:40px;
}
.section-title h2 {
    color:#333333;
    font-size:39px;
    margin:0px;
    position:relative;
    padding-bottom:10px;
    font-family:'Conv_Sqr721e',
    sans-serif;
}
.board-members .section-title h2 {
    padding-bottom:35px;
}
.board-members .log-pt h2 {
    color:#000000;
    font-size:20px;
    margin:0px;
    padding:15px 0px;
    font-family:'open_sanssemibold';
}
.board-members .log-pt p {
    font-size:16px;
    color:#343434;
    font-family:'open_sansregular';
}
.padtp40 {
    padding-top:40px;
}
.section-title {
    position:relative;
}
.section-title .bdr-img {
    position:absolute;
    bottom:-11px;
}
.section-title h2 span {
    color:#005cb9;
}
.our-team .media .media-heading {
    font-size:24px;
    color:#000000;
    font-family:'open_sanssemibold';
}
.bdr-btm {
    display:block;
    content:"";
    width:100%;
    height:1.1px;
    background:#999999;
    margin:10px 0px 20px 40px;
}
.bdr-btm1 {
    display:block;
    content:"";
    width:50%;
    height:1.1px;
    background:#999999;
    margin:0 auto;
}
.our-team .media p {
    font-size:17px;
    color:#333333;
    line-height:27px;
}
.our-team .media label.post {
    color:#656565;
    font-size:17px;
    padding-bottom:7px;
    font-family:'open_sansregular';
}
.social-icon ul li a i {
    color:#666666;
    font-size:20px;
}
.social-icon ul {
    margin:0px;
    padding-top:10px;
}
.our-team .media.scalelft {
    margin:0px !important;
    float:left;
    width:100%;
}
.our-team .media.scalergt {
    margin:0px;
    float:left;
    width:100%;
}
.our-team .scalelft.sec1 .media-body.bdr-none::before {
    display:none;
}
.our-team .scalergt.sec2 .media-body::before {
    content:"";
    position:absolute;
    left:111px !important;
    width:101%;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:10px;
    top:0%;
    z-index:2;
}
.our-team .scalelft.sec1 .media-body.bdr-none::after {
    content:"";
    position:absolute;
    left:-129px;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:100%;
    top:0%;
    z-index:2;
    background-position:top;
    min-height:280px;
}
.our-team .scalergt.sec2 .media-body::after {
    content:"";
    position:absolute;
    right:-127px !important;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    min-height:345px;
    height:100%;
    top:0%;
    z-index:2;
    left:initial !important;
}
.our-team .scalelft.sec3 .media-body::before {
    content:"";
    position:absolute;
    right:113px;
    width:101%;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:10px;
    top:0%;
    z-index:2;
}
.our-team .scalelft.sec3 .media-body::after {
    content:"";
    position:absolute;
    left:-128px;
    width:10px;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    min-height:341px;
    height:100%;
    top:0%;
    z-index:2;
}
.our-team .scalergt.sec4 .media-body::before {
    content:"";
    position:absolute;
    left:112px;
    width:101.5%;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    height:10px;
    top:0%;
    z-index:2;
}
.our-team .scalergt.sec4 .media-body::after {
    content:"";
    position:absolute;
    right:-125px;
    width:10px;
    left:initial !important;
    background:url('/wp-content/uploads/2016/12/brd.jpg');
    min-height:250px;
    height:28% !important;
    top:0%;
    z-index:2;
}
.our-employees .section-title h2 {
    padding-bottom:20px;
}
.our-employees .log-pt h2 {
    color:#000;
    font-size:20px;
    font-family:'open_sanssemibold';
}
.our-employees .log-pt p {
    color:#000;
    font-size:14px;
    font-family:'open_sansregular';
}
.our-investors .section-title h2 {
    padding-bottom:35px;
}
.employ-sec {
    float:left;
    width:100%;
    padding:40px 0px;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;
    -webkit-flex-flow:row wrap;
    justify-content:space-around;
}
.employ-sec.bdrbtm {
    border-bottom:3px dotted #e0e0e0;
}
.inverstor-sec {
    padding-top:0px;
    float:left;
    width:100%;
}
.inverstor-sec .sec-bg .img-sec {
    padding:10px;
    border-bottom:1px solid #cdcdcd;
}
.inverstor-sec .sec-bg .img-sec img {
    width:80%;
}
.inverstor-sec .sec-bg {
    border:1px solid #cdcdcd;
    background:#ffffff;
    padding:10px;
    float:left;
    width:100%;
}
.inverstor-sec .sec-bg .icon-sec {
    float:left;
    width:100%;
    position:relative;
    padding-top:20px;
}
.inverstor-sec .sec-bg .icon-sec img {
    cursor:pointer;
    display:inline;
    position:absolute;
    top:14px;
    left:45%;
    margin-top:0px !important
}
.inverstor-sec .sec-bg .less-cnt {
    display:none;
}
.inverstor-sec .sec-bg .icon-sec .invst-less {
    display:none;
}
.inverstor-sec .sec-bg .less-cnt1 {
    display:none;
}
.inverstor-sec .sec-bg .icon-sec .invst-less1 {
    display:none;
}
.inverstor-sec .sec-bg .less-cnt2 {
    display:none;
}
.inverstor-sec .sec-bg .icon-sec .invst-less2 {
    display:none;
}
.inverstor-sec .sec-bg .less-cnt3 {
    display:none;
}
.inverstor-sec .sec-bg .icon-sec .invst-less3 {
    display:none;
}
.pro-img2 {
    display:none;
}
.our-team .more-cnt {
    padding:10px 0px;
    width:50%;
    float:right !important
}
.our-team .less-cnt {
    width:100%;
    display:none;
    padding:5px 0px 5px 0px;
}
.our-team .less-cnt1.one {
    width:100%;
    display:none;
    padding:5px 0px 5px 0px;
}
.our-team .more-cnt .less-icon {
    display:none;
    cursor:pointer;
}
.our-team .more-cnt.one .less-icon1 {
    display:none;
    cursor:pointer;
}
.our-team .more-cnt.one .more-icon1 {
    cursor:pointer;
}
.our-team .more-cnt .more-icon {
    cursor:pointer;
}
.pad10 {
    padding:10px 0px;
}
.w100 {
    width:100%;
}
.social-icon.tgle {
    float:left;
    margin-top:12px;
}
.social-icon.tgle1 {
    float:left;
    margin-top:12px;
}
.inverstor-sec .sec-bg h3 {
    color:#000;
    font-size:18px;
    font-family:'open_sanssemibold';
}
.inverstor-sec .sec-bg P {
    color:#333;
    font-size:16px;
}
.scaleup .media .media-right.img1 {
    display:none;
}
.bg-wht.welcome .nav-pills li {
    display:block;
    width:19%;
    float:left;
    margin:0px 2px !important;
}
.bg-wht.welcome .nav-pills {
    float:none;
    text-align:center;
}
.bg-wht.welcome .nav-pills li img {
    max-width:100%;
}
.fltmrg.blue-widget-section.max-wd.npad {
    background:none;
}
.qos .blue-widget-section h4 {
    font-size:19px;
    font-family:'open_sanssemibold';
}
.selectcustomers #carousel-example-generic2 .carousel-inner>.item h4 {
    font-size:25px;
    font-family:'open_sanssemibold';
    padding:10px 0px;
}
.selectcustomers #carousel-example-generic2 .carousel-inner>.item p {
    font-size:19px;
}
.selectcustomers #carousel-example-generic2 .carousel-inner>.item h4.associate {
    font-size:17px;
    padding-bottom:20px;
}
.selectcustomers #carousel-example-generic2 .carousel-inner>.item h4.associate strong {
    font-size:22px;
}
.selectcustomers #carousel-example-generic2 .carousel-inner>.item a.btn-green {
    font-size:18px;
}
.page-template-fullwidth-banner .sm-txt {
    visibility:hidden;
    height:9px;
}
.products.cararrow .nav-pills li.active:after,
.products.cararrow .nav-pills li.active:before {
    top:87%;
    left:50%;
    border:solid transparent;
    content:" ";
    height:0;
    width:0;
    position:absolute;
    pointer-events:none;
}
.products.cararrow .nav-pills li.active:after {
    border-color:rgba(44,
    154,
    65,
    0);
    border-top-color:#2c9a41;
    border-width:20px;
    margin-left:-20px;
}
.products.cararrow .nav-pills li.active:before {
    border-color:rgba(44,
    154,
    65,
    0);
    border-top-color:#2c9a41;
    border-width:24px;
    margin-left:-24px;
}
.products.cararrow .nav-pills li a {
    font-size:18px;
    font-family:'open_sanssemibold';
    color:#000000;
}
.products.cararrow .nav-pills li.active a {
    color:#ffffff;
}
.products.cararrow .nav-pills li.focus a {
    color:#ffffff;
}
.products.cararrow .carousel .carousel-inner>.item h4 {
    font-family:'open_sanssemibold';
    font-size:25px;
}
.products.cararrow .carousel .carousel-inner>.item p {
    font-size:16px;
    padding:10px 0px;
}
.products.cararrow .carousel .carousel-inner .item img {
    max-width:100% !important;
}
.teambg h4 {
    font-size:20px;
    font-family:'open_sanssemibold';
}
.teambg p {
    font-size:16px;
    padding-bottom:15px;
}
.news #success .carousel-inner>.item h5.blue {
    font-family:'open_sanssemibold';
    font-size:15px;
}
.greenbg.request p {
    font-size:16px;
}
.greenbg.request p.frm-fill strong {
    font-family:'open_sanssemibold';
    font-size:18px;
}
.greenbg.request .form-group .form-control {
    font-size:15px;
    font-weight:600;
}
.greenbg.request .form-group .btn-dblue.btn-lg {
    padding:10px 50px;
    font-family:'open_sanssemibold';
    background:#005cb9;
}
.footmenu-bott .widgettitle span.widgettitle-sword {
    color:#2c9a41;
}
#widget-footer .widgettitle {
    font-size:25px;
    font-family:'open_sanssemibold';
}
#widget-footer #menu-footermenu li {
    line-height:30px;
    font-size:16px;
    font-family:'open_sansregular';
}
#widget-footer #menu-footermenu li a {
    color:#cccccc;
    font-family:'open_sansregular';
}
#widget-footer .contact {
    color:#fff;
    line-height:28px;
    font-size:16px;
    color:#cccccc;
    xborder-right:1px solid #080808;
}
#nav_menu-7 .contact {
    border:none;
}
#widget-footer .contact strong {
    color:#ffffff;
    font-size:18px;
}
#widget-footer .contact .mail a {
    font-size:16px;
    color:#cccccc;
}
.copyright .footmenu {
    font-size:16px;
}
.brdlogo.board-member:after {
    background-color:#eee;
}
.graybg.blog .owl-buttons {
    position:absolute;
    top:40%;
    width:100%;
}
.graybg.blog .owl-prev {
    left:-80px;
    position:absolute;
}
.graybg.blog .owl-next {
    right:-80px;
    position:absolute;
}
.graybg.blog .owl-prev i,
.graybg.blog .owl-next i {
    font-size:65px;
    color:#ccc;
    font-weight:normal !important
}
.our-team .media-body,
.our-team .media-left,
.our-team .media-right {
    vertical-align:top;
}
.team-invester-pag img {
    max-width:initial !important;
    margin:0px !important;
}
#widget-footer .widget {
    background-image:url('/wp-content/uploads/2016/12/ftr-bdr.jpg');
    background-repeat:no-repeat;
    background-position:center right;
}
#widget-footer .widget:last-child {
    background-image:none;
    padding-left:15px !important;
}
.clients .owl-carousel .owl-item figure a {
    max-width:100%;
    margin-right:20px;
    border:1px solid #cdcdcd;
    border-radius:4px;
    display:inline-block;
    padding:10px;
    -webkit-transition:all 350ms;
    -ms-transition:all 350ms;
    transition:all 350ms;
}
body.page-id-18 .newban-bg {
    padding-top:45px;
}
.clients .owl-carousel .owl-item figure .img-logo {
    max-width:100%;
    margin-right:20px;
    border:1px solid #cdcdcd;
    border-radius:4px;
    display:inline-block;
    padding:10px;
    -webkit-transition:all 350ms;
    -ms-transition:all 350ms;
    transition:all 350ms;
}
.navbar-default .navbar-toggle {
    border-color:#ffffff;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color:#ffffff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color:#c9d0da;
}
.graybg.blog .owl-carousel .owl-item a {
    font-size:15px;
    font-family:'open_sansregular';
}
a {
    font-family:'open_sansregular';
}
.clients .owl-carousel .owl-prev {
    left:-80px;
    position:absolute;
}
.clients .owl-carousel .owl-next {
    right:-80px;
    position:absolute;
}
.clients .owl-carousel .owl-buttons {
    position:absolute;
    top:5%;
    width:100%;
}
.clients .owl-carousel .owl-prev i {
    font-size:65px;
    color:#ccc;
    font-weight:normal !important;
}
.clients .owl-carousel .owl-next i {
    font-size:65px;
    color:#ccc;
    font-weight:normal !important;
}
.clients .owl-carousel .owl-item {
    text-align:Center;
}
.selectcustomers .carousel .carousel-control.left {
    top:43%;
    left:-15%;
}
.selectcustomers .carousel .carousel-control.right {
    top:43%;
    right:-15%;
}
.news .brdlftlogo .arrows .prev.carousel-control:hover i {
    color:#999999;
}
.news .brdlftlogo .arrows .prev.carousel-control:focus i {
    color:#999999;
}
.home .bg-blue1 .blue-widget-section h4.widgettitle {
    display:none;
}
.invst-img img {
    width:100%;
}
#breadcrumbs {
    list-style:none;
    margin:10px 0;
    overflow:hidden;
}
#breadcrumbs li {
    display:inline-block;
    vertical-align:middle;
    margin-right:15px;
}
#breadcrumbs .separator {
    font-size:18px;
    font-weight:100;
    color:#ccc;
}
.news .news-sec {
    background-image:url('/wp-content/uploads/2016/12/nws-bdr.png');
    background-repeat:no-repeat;
    background-position:center right;
}
.news .news-sec {
    padding-right:35px;
}
.news .success-sec {
    padding-left:35px;
}
.news .news-sec .media .media-body {
    padding-left:10px;
}
.news .success-sec .media .media-body {
    padding-left:10px;
}
ul#breadcrumbs {
    display:none;
}
.scaleup .media {
    margin:30px 0 0px 0px;
}
.news h2.brdlftlogo {
    font-size:35px;
    margin:0px 0px 25px 0px;
}
.welcome .log-pt:hover .btn-greenbrd.benifit {
    background-color:#2c9a41;
    color:#fff;
    border-radius:5px;
}
.products.cararrow .carousel-inner {
    min-height:300px;
}
.news .icon-chevron-left:before {
    content:"\f053";
    font-family:fontawesome;
}
.news .icon-chevron-right:before {
    content:"\f054";
    font-family:fontawesome;
}
.blog .carousel .owl-buttons .disabled i {
    color:#ccc;
}
.blog .carousel .owl-buttons i {
    color:#78b182;
}
.clients .owl-carousel .owl-buttons i {
    color:#78b182;
}
.clients .owl-carousel .owl-buttons .disabled i {
    color:#ccc;
}
.clients .owl-carousel .fa-angle-left:before {
    content:"\e605";
    font-family:'simple-line-icons';
}
.clients .owl-carousel .fa-angle-right:before {
    content:"\e606";
    font-family:'simple-line-icons';
}
.blog .carousel .fa-angle-left:before {
    content:"\e605";
    font-family:'simple-line-icons';
}
.blog .carousel .fa-angle-right:before {
    content:"\e606";
    font-family:'simple-line-icons';
}
.success_msg {
    float:left;
    width:100% text-align:center;
}
.storage-app .cnt-sec {
    padding-top:55px;
}
.products.cararrow .carousel-control.right {
    right:-15%;
}
.products.cararrow .carousel-control.left {
    left:-15%;
}
.news .news-sec .carousel .item .media-left {
    vertical-align:top;
}
.news .success-sec .carousel .testibox .media-left a img {
    width:100px;
}
.news .success-sec .carousel .testibox .media-body {
    vertical-align:top;
}
.divider-bdr {
    display:block;
    margin:0 auto;
    content:"";
    height:1px;
    margin-top:30px;
    margin-bottom:60px;
    text-align:center;
    background:#999999;
    width:56%;
    position:relative;
}
.divider-bdr img {
    position:absolute;
    top:-20px;
    background:#ffffff;
}
.divider-bdr img.img {
    background:#f1f1f1;
}
.divider-bdr img.img1 {
    background:#f7f7f7;
}
.divider-bdr img.img2 {
    background:#f1f1f1;
}
img.team-img {
    padding:3px;
    border:1px solid #ccc;
}
.footmenu-bott .contact h2 strong {
    font-size:18px;
    margin:0px;
}
.footmenu-bott .contact h2 {
    margin:0px;
    padding:0px;
    line-height:25px;
}
.scaleup .media.scalergt.scale-rgt-sec {
    margin:0px;
}
.scaleup .media.scalergt.scale-rgt-sec .media-body.text-right {
    width:100%;
}
.scaleup p {
    font-size:18px;
    color:#000;
    padding:15px 0px;
    line-height:31px;
}
.member-sec {
    float:left;
    width:100%;
}
.navbar-fixed-top {
    xbackground:url('/wp-content/uploads/2016/12/bg.jpg');
    background-size:100%;
    background-repeat:no-repeat;
    xbackground-color:#005cb9 !important;
}
.page-id-18 .cnt-ssecc .subhead p.lead {
    color:#fff !important
}
.ms-slide-info {
    position:absolute !important;
    bottom:0%;
    width:auto !important;
    height:100% !important;
    min-height:initial !important;
}
.ms-info {
    position:relative;
    width:100%;
    display:inline-block;
}
.cnt-box1 img {
    width:185px;
}
.cnt-box3 img {
    width:185px;
}
.home-slider {
    margin-top:122px;
    padding:25px 0px 35px 0px;
}
.cnt-box1 {
    float:left;
    margin-top:29%;
    margin-left:39%;
}
.team-sec-page .team-title {
    color:#525252 !important;
}
.team-sec-page .team-cnt-box {
    margin-top:40px;
    position:relative;
    xbackground:#f2f2f2;
    display:inline-block;
    width:100%;
    height:100%;
    xpadding:100px 35px;
    overflow:hidden;
}
.team-sec-page .team-image-sec {
    z-index:2;
    position:relative;
    background:#f2f2f2;
    display:inline-block;
    width:100%;
    height:100%;
    padding:100px 35px;
    overflow:hidden;
}
.anim {
    width:100%;
    height:100%;
    -o-transition:all .5s;
    -ms-transition:all .5s;
    -moz-transition:all .5s;
    -webkit-transition:all .5s;
    transition:all .5s;
    -webkit-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    backface-visibility:hidden;
    top:0px;
    left:0px;
}
.team-sec-page .team-cnt-sec {
    position:absolute;
    top:0%;
    left:0;
    width:100%;
    text-align:center;
    opacity:0;
    z-index:1;
    -webkit-transform:rotateY(-180deg);
    -ms-transform:rotateY(-180deg);
    -moz-transform:rotateY(-180deg);
    transform:rotateY(-180deg);
    background:#005cb9;
    padding:15px;
    vertical-align:middle !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    align-content:stretch !important;
}
.team-cnt-box:hover .team-image-sec {
    z-index:2;
    -webkit-transform:rotateY(180deg);
    -ms-transform:rotateY(180deg);
    -moz-transform:rotateY(180deg);
    transform:rotateY(180deg);
}
.team-cnt-box:hover .team-cnt-sec {
    -webkit-transform:rotateY(0deg);
    -ms-transform:rotateY(0deg);
    -moz-transform:rotateY(0deg);
    transform:rotateY(0deg);
    opacity:1;
    height:100%;
    top:0px;
    color:#ffffff !important;
}
.team-cnt-box:hover .team-cnt-sec p {
    color:#ffffff !important;
    font-weight:normal;
}
.team-sec-page {
    padding:50px 0px 60px 0px;
}
.team-image-sec h2 {
    color:#000;
    font-weight:bold;
    font-size:32px;
    margin:50px 0px 10px 20px;
}
.team-image-sec p {
    font-size:20px;
    color:#000;
    font-weight:normal;
}
.member-sec .col-sm-6 {
    margin-bottom:30px
}
.member-sec .log-pt {
    min-height:270px;
    height:100%;
}
.inverstor-sec .investor-logo {
    margin-bottom:30px;
    min-height:75px;
    height:100%;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color:rgba(0,
    92,
    185,
    0) !important;
}
@media(max-width:1515px) {
    .team-image-sec h2 {
        font-size: 25px;
    }
    .team-image-sec p {
        font-size: 18px;
        margin: 0px 0px 10px 20px;
    }
}
@media(max-width:1483px) {
    .our-team .scalelft.sec3 .media-body::before {
        right: 113px;
    }
    #widget-footer .contact {
        font-size: 15px;
    }
    #widget-footer #menu-footermenu li {
        font-size: 15px;
    }
    #widget-footer .widgettitle {
        font-size: 21px;
        font-family: 'open_sanssemibold';
    }
    .tphead {
        font-size: 30px;
    }
    .scndtop {
        font-size: 30px;
    }
    .right-top1 p.secp {
        font-size: 15px;
    }
    p.community-edit span {
        font-size: 21px !important;
    }
    .pad70_0 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}
@media(max-width:1455px) {
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 350px !important;
    }
}
@media(max-width:1450px) {
    .news h2.brdlftlogo {
        font-size: 30px;
    }
    h2.brdlogo {
        font-size: 30px;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .board-members .section-title h2 {
        padding-bottom: 10px;
    }
    .our-investors .section-title h2 {
        padding-bottom: 10px;
    }
    .home .navbar-fixed-top {
        background-image: none;
    }
}
@media(max-width:1420px) {
    .team-sec-page .team-image-sec img {
        width: 140px;
    }
    .team-image-sec h2 {
        font-size: 23px;
        margin: 35px 0px 10px 20px;
        text-align: left;
    }
    .team-image-sec p {
        font-size: 17px;
        margin: 0px 0px 10px 15px;
    }
}
@media(max-width:1390px) {}
@media(max-width:1360px) {
    .our-employees .section-title h2 {
        padding-bottom: 12px;
    }
    .news h2.brdlftlogo {
        font-size: 30px;
    }
    .nav.navbar-nav>li {
        padding: 0 11px;
    }
    .nav.navbar-nav li a {
        font-size: 13px !important;
    }
    .bg-wht.welcome .nav-pills li {
        margin: 0px 3px 0px 3px !important;
    }
    .divider-bdr {
        width: 68%;
    }
}
@media(max-width:1350px) {
    .our-team .scalergt.sec2 .media-body::before {
        width: 102%;
    }
    .our-team .scalergt.sec4 .media-body::before {
        left: 112px;
        width: 101%;
    }
    p.community-edit span {
        font-size: 23px !important;
        width: 70%;
    }
    .products.cararrow .nav-pills li a {
        font-size: 16px;
    }
    .textwidget .our-demo {
        width: 30%;
        margin-left: 0px;
    }
}
@media(max-width:1344px) {
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 380px !important;
    }
}
@media(max-width:1325px) {
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 412px !important;
    }
}
@media(max-width:1310px) {
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 390px !important;
    }
    .bg-wht.welcome .nav-pills li h3 {
        font-size: 18px;
        min-height: 43px;
    }
    h2.brdlogo {
        font-size: 25px;
    }
    h2,
    .h2 {
        font-size: 27px;
    }
    .request h2 {
        font-size: 22px;
    }
    .section-title h2 {
        font-size: 25px;
    }
}
@media(max-width:1280px) {
    .arrows {
        font-size: 15px;
        margin-top: 0px;
    }
    .news h2.brdlftlogo {
        font-size: 26px;
    }
    .divider-bdr {
        width: 49%;
    }
    .divider-bdr img {
        left: 47%;
    }
    .navbar-default .navbar-brand {
        padding-top: 10px;
    }
    h2.brdlogo {
        font-size: 27px;
    }
    img.team-img {
        width: 100%;
    }
    .products.cararrow .carousel-inner .carousel-control.right {
        right: -20%;
    }
    .products.cararrow .carousel-inner .carousel-control.left {
        left: -20%;
    }
    .qos .blue-widget-section h4 {
        font-size: 18px;
        font-family: 'open_sanssemibold';
    }
    .news h2.brdlftlogo {
        font-size: 25px;
    }
    .selectcustomers .carousel .carousel-control.left {
        top: 42%;
        left: -20%;
    }
    #widget-footer .contact {
        font-size: 14px;
    }
    #widget-footer #menu-footermenu li {
        font-size: 14px;
    }
    #widget-footer .widgettitle {
        font-size: 20px;
    }
    .selectcustomers .carousel .carousel-control.right {
        top: 42%;
        right: -20%;
    }
    .right-image-bg img {
        margin-left: 82px;
    }
    .products.cararrow .nav-pills li a {
        font-size: 16px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4 {
        font-size: 20px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item p {
        font-size: 17px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4.associate {
        font-size: 15px;
    }
}
@media(max-width:1270px) {
    .nav.navbar-nav>li {
        padding: 0 10px;
    }
    .nav.navbar-nav li a {
        font-size: 12px !important;
    }
    .welcome p {
        font-size: 13px;
    }
}
@media(max-width:1250px) {
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 330px !important;
    }
    .team-image-sec h2 {
        font-size: 23px;
        margin: 30px 0px 10px 20px;
        text-align: left;
    }
    .team-sec-page .team-image-sec img {
        width: 125px;
    }
    .bg-wht.welcome .nav-pills li h3 {
        min-height: 60px;
    }
    .scaleup p {
        font-size: 16px;
        line-height: 25px;
    }
    .news .arrows {
        font-size: 15px;
        margin-top: 0px;
    }
    .our-team .media .media-heading {
        font-size: 20px;
    }
    .board-members .log-pt h2 {
        font-size: 20px;
    }
    .our-team .media label.post {
        color: #656565;
        font-size: 15px;
        padding-bottom: 7px;
        font-family: 'open_sansregular';
    }
    .board-members .log-pt h2 {
        color: #000000;
        font-size: 17px;
    }
}
@media(max-width:1204px) {
    .our-team .scalelft.sec3 .media-body::before {
        width: 103%;
    }
}
@media (max-width:1199px) {
    .nav.navbar-nav>li:last-child .dropdown-menu {
        right: 0px;
        left: initial;
    }
    .divider-bdr {
        width: 42%;
    }
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 265px !important;
    }
    .our-team .scalergt.sec2 .media-body::before {
        width: 101%;
    }
    .media-body::before {
        width: 102%;
    }
    .bdr-btm {
        margin: 10px 0px 20px 0px;
    }
    .our-team .scalelft.sec3 .media-body::before {
        width: 101%;
    }
    .selectcustomers.blog .carousel-control.left {
        left: -6%;
    }
    .graybg.blog .owl-prev {
        left: -30px;
        position: absolute;
    }
    .graybg.blog .owl-next {
        right: -30px;
        position: absolute;
    }
    .graybg.blog .carousel .owl-buttons i {
        font-size: 35px;
    }
    .clients .owl-carousel .owl-buttons i {
        font-size: 35px;
    }
    .selectcustomers.blog .carousel-control.right {
        font-size: 30px;
    }
    .selectcustomers.blog .carousel-control.left {
        font-size: 30px;
    }
    .products.cararrow .carousel-control.left {
        font-size: 30px;
    }
    .products.cararrow .carousel-control.right {
        font-size: 30px;
    }
    .selectcustomers.blog .carousel-control.right {
        right: -6%;
    }
    .products.cararrow .carousel-control.left {
        left: -10%;
        font-size: 30px;
        top: 30%;
    }
    .products.cararrow .carousel-control.right {
        right: -10%;
    }
    .clients .owl-carousel .owl-prev {
        left: -11px;
        position: absolute;
    }
    .clients .owl-carousel .owl-next {
        right: -11px;
        position: absolute;
    }
    .clients .owl-carousel .owl-buttons {
        top: 30%;
    }
}
@media(max-width:1100px) {
    .divider-bdr {
        margin-top: 20px;
    }
    .bg-wht.welcome .nav-pills li h3 {
        min-height: 25px;
    }
    .bg-wht.welcome .nav-pills li h3 {
        min-height: 20px;
    }
    .right-image-bg img {
        margin-left: 25px;
    }
    .selectcustomers.blog .carousel-control.left {
        left: 0%;
        top: 20%;
    }
    .selectcustomers.blog .carousel-control.right {
        right: 0%;
        top: 20%;
    }
    .teambg {
        padding-bottom: 60px;
    }
}
@media(max-width:1150px) {
    .right-image-bg img {
        width: 520px;
        margin-left: 0px;
    }
}
@media (max-width:1036px) {
    .our-team .scalergt.sec2 .media-body::before {
        width: 102%;
    }
    .media-body::before {
        width: 103%;
    }
    p.community-edit span {
        font-size: 21px !important;
    }
    .bgbackground {
        background-position: center top;
    }
    .selectcustomers.blog .carousel-control.left {
        left: -8%;
        top: 40%;
        font-size: 30px;
    }
    .selectcustomers.blog .carousel-control.right {
        right: -8%;
        top: 40%;
        font-size: 30px;
    }
    .products.cararrow .carousel-control.right {
        right: -11%;
        font-size: 30px;
    }
    .products.cararrow .carousel-control.left {
        left: -11%;
        font-size: 30px;
    }
    .clients .owl-carousel .owl-prev {
        left: -30px;
        position: absolute;
    }
    .clients .owl-carousel .owl-next {
        right: -30px;
        position: absolute;
    }
    .clients .owl-carousel .owl-prev i {
        font-size: 30px;
        font-weight: normal !important;
    }
    .clients .owl-carousel .owl-next i {
        font-size: 30px;
        font-weight: normal !important;
    }
    .graybg.blog .owl-prev {
        left: -30px;
        position: absolute;
    }
    .graybg.blog .owl-prev i {
        font-size: 30px;
    }
    .graybg.blog .owl-next i {
        font-size: 30px;
    }
    .graybg.blog .owl-next {
        right: -30px;
        position: absolute;
    }
    .divider-bdr {
        width: 48%;
    }
}
@media(max-width:991px) {
    .navbar-default .navbar-brand {
        padding-top: 0px;
    }
    .divider-bdr {
        width: 40%;
    }
    #menu-header-menu {
        margin-top: 16px !important;
    }
    .login-bg-sec .login-sec {
        width: 100% !important;
    }
    .team-sec-page .team-image-sec img {
        width: 100px;
    }
    .team-image-sec h2 {
        font-size: 18px;
    }
    _:-ms-fullscreen,
     :root .scale-storage .scalelft .media-left::after {
        min-height: 280px !important;
    }
    .divider-bdr img {
        left: 46%;
    }
    .news h2.brdlftlogo {
        font-size: 22px;
    }
    h2.brdlogo {
        font-size: 22px;
    }
    .section-title h2 {
        font-size: 22px;
    }
    .qos .blue-widget-section h4 {
        font-size: 15px;
        padding-bottom: 10px;
    }
    .inverstor-sec .sec-bg {
        margin-bottom: 30px;
    }
    .navbar-brand img {
        xmargin-top: 20px;
    }
    .news .arrows a {
        width: 25px;
        height: 25px;
        line-height: 23px;
        font-size: 10px;
    }
    .news .arrows {
        font-size: 15px;
        margin-top: 0px;
    }
    .textwidget .our-demo a {
        font-family: 'open_sanssemibold';
        padding: 6px 30px 6px 25px;
    }
    .clients .owl-carousel .owl-buttons {
        position: absolute;
        top: 30%;
        width: 100%;
    }
    .bg-wht.welcome .nav-pills li h3 {
        min-height: 25px;
        padding-top: 15px;
    }
    #widget-footer .widget.clr-both {
        clear: both;
    }
    #widget-footer .widget:nth-child(2) {
        background-image: none;
    }
    #widget-footer .contact {
        font-size: 14px;
    }
    #widget-footer .widgettitle {
        font-size: 20px;
    }
    h2,
    .h2 {
        font-size: 28px;
    }
    .products.cararrow .carousel .carousel-inner>.item h4 {
        font-size: 21px;
    }
    .products.cararrow .nav-pills li a {
        font-size: 15px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4 {
        font-size: 20px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item p {
        font-size: 16px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4.associate {
        font-size: 15px;
        padding-bottom: 20px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4.associate strong {
        font-size: 20px;
    }
    p {
        font-size: 14px !important;
    }
    .scaleup h2 {
        font-size: 20px;
    }
    p.community-edit span {
        font-size: 18px !important;
    }
    .tphead {
        font-size: 29px;
    }
    .scndtop {
        font-size: 27px;
        padding-top: 8px;
    }
    .right-top1 p.secp {
        font-size: 16px;
    }
    #widget-footer #menu-footermenu li {
        font-size: 14px;
    }
    .right-top1 p.secp br {
        display: none;
    }
}
@media (max-width:850px) {
    .our-team .scalergt.sec2 .media-body::before {
        width: 102%;
    }
    .media-body::before {
        width: 104%;
    }
    .textwidget .our-demo a {
        padding: 6px 25px 6px 20px;
    }
}
@media(max-width:825px) {
    .textwidget .our-demo a {
        padding: 6px 15px 6px 10px;
    }
    .scaleup .scalelft .media-body:after {
        height: 95%;
    }
}
@media(max-width:767px) {
    body.admin-bar .navbar-fixed-top {
        top: 13px;
    }
    .news .news-sec {
        padding-bottom: 35px;
    }
    .team-sec-page .team-image-sec img {
        width: 120px;
    }
    .team-image-sec h2 {
        font-size: 25px;
        margin: 47px 0px 10px 20px;
    }
    .inverstor-sec .investor-logo {
        margin-bottom: 15px;
        min-height: initial !important;
        height: auto !important;
    }
    .member-sec .log-pt {
        min-height: initial !important;
        height: 100%;
    }
    .divider-bdr {
        width: 52%;
    }
    .bgbackground .pg-canvas {
        height: 550px !important;
    }
    .hombann {
        top: 1.5% !important;
    }
    .hombann h1 {
        font-size: 35px;
    }
    .scaleup .scalelft .media-body:after {
        height: 89%;
    }
    .storage-app .cnt-sec {
        padding-top: 0px;
    }
    .products.cararrow .carousel .cnt-sec1 {
        padding-top: 35px;
    }
    .navbar-nav>li>.dropdown-menu li {
        padding: 5px 0px;
    }
    .bg-blue1 {
        padding-bottom: 10px;
    }
    .selectcustomers #carousel-example-generic2 .carousel-inner>.item h4 {
        font-size: 18px;
    }
    ul.nav>li.dropdown>ul.dropdown-menu>li.dropdown:hover ul.dropdown-menu li {
        padding: 0px 0px;
    }
    .products.cararrow .carousel .carousel-inner>.item h4 {
        font-size: 18px;
    }
    .teambg h4 {
        font-size: 18px;
        font-family: 'open_sanssemibold';
    }
    .news .news-sec {
        background-image: none;
    }
    .news .news-sec {
        padding-right: 15px;
    }
    .news .success-sec {
        padding-left: 15px;
    }
    .news .news-sec .media .media-body {
        padding-left: 10px;
    }
    .news .success-sec .media .media-body {
        padding-left: 10px;
    }
    .ftr-cnt-wdth {
        width: 50%;
        float: left;
    }
    .navbar-header.col-md-5.col-sm-4.paddlft0.mrg-lft {
        padding: 0px;
    }
    .textwidget .our-demo a {
        padding: 6px 25px 6px 20px;
    }
    .selectcustomers.blog .carousel-control.left {
        left: -10%;
    }
    .selectcustomers.blog .carousel-control.right {
        right: -10%;
    }
    .products.cararrow .carousel-control.right {
        top: 40%;
        right: -13%;
    }
    .products.cararrow .carousel-control.left {
        top: 40%;
        left: -13%;
    }
    ul.nav li.dropdown>ul.dropdown-menu .dropdown-menu {
        left: 0 !important;
        top: 10px;
        background: #f9f9f9;
    }
    .navbar-collapse {
        xbackground-color: #005cb9 !important;
    }
    .navbar-collapse {
        padding-left: 15px !important;
        padding-bottom: 70px;
    }
    #menu-header-menu {
        margin-top: 0px;
    }
    #widget-footer .widget {
        background-image: none;
    }
    .products.cararrow .nav-pills li {
        float: left;
        width: 49%;
    }
    .inverstor-sec .sec-bg .img-sec img {
        width: 35%;
    }
    .navbar-brand img {
        margin-top: 5px;
    }
    .bg-wht.welcome .nav-pills li h3 {
        min-height: auto;
    }
    .teambg {
        padding-bottom: 0px;
    }
    .teambg img.team-img {
        width: auto;
        margin-top: 30px;
    }
    .navbar-nav {
        margin: 0px;
    }
    .navbar-default .navbar-nav>.active>a:before,
    .navbar-default .navbar-nav>.active>a:hover:before,
    .navbar-default .navbar-nav>.active>a:focus:before,
    .navbar-default .navbar-nav>.current-menu-ancestor>a:before {
        height: 0px;
        display: none;
    }
    .navbar-default .navbar-nav>.active>a:after,
    .navbar-default .navbar-nav>.active>a:hover:after,
    .navbar-default .navbar-nav>.active>a:focus:after,
    .navbar-default .navbar-nav>.current-menu-ancestor>a:after {
        background: none;
    }
    .nav.navbar-nav>li {
        padding: 5px 0px !important;
        margin: 0px !important;
    }
    .right-top1 p.secp {
        font-size: 16px;
        padding: 10px 0px;
    }
    .right-image-bg img {
        width: 400px;
        margin-left: 0px;
    }
    .bgbackground {
        padding-top: 95px;
        min-height: auto !important;
    }
    .right-image-bg {
        text-align: center;
    }
    .textwidget .our-demo {
        width: 205px!important;
        margin: 0 auto;
        float: none;
    }
    p.community-edit span {
        width: 100%;
        text-align: center;
        padding-bottom: 15px;
    }
    .dropdown-menu>li>a {
        padding-left: 20px;
    }
}
@media (max-width:735px) {
    .our-team .scalergt.sec2 .media-body::before {
        width: 103%;
    }
    .media-body::before {
        width: 105%;
    }
    .our-team .scalergt.sec4 .media-body::before {
        width: 103%;
    }
    .our-team .scalelft.sec3 .media-body::before {
        width: 102%;
    }
    .scaleup .media.scalelft .media-left {
        width: 100%;
        display: block;
        float: left;
        text-align: center;
    }
    .scaleup .media.scalelft .media-body {
        padding-right: 0px;
        position: static;
        width: 100%;
        display: block;
        padding-left: 0px;
        float: left;
    }
    .scaleup .media.scalergt .media-left {
        width: 100%;
        display: block;
        float: left;
        text-align: center;
    }
    .scaleup .media.scalelft .media-left img {
        width: auto;
        text-align: center;
        display: inline-block;
        padding-bottom: 25px;
    }
    .scaleup h2 {
        text-align: center;
    }
    .scaleup p {
        text-align: center;
    }
    .scaleup .media.scalergt .media-right img {
        width: auto;
        text-align: center;
        display: inline-block;
        padding-bottom: 25px;
    }
    .scaleup .media.scalergt .media-right a {
        text-align: center;
        width: 100%;
    }
    .scaleup .media.scalelft .media-left a {
        text-align: center;
        width: 100%;
    }
    .scaleup .media.scalergt .media-right {
        width: 100%;
        display: block;
        float: left;
        text-align: center;
        padding-left: 0px !important;
    }
    .scaleup .media.scalergt {
        padding-top: 10px;
        float: left;
        width: 100%;
    }
    .scaleup .media .media-body {
        text-align: center;
    }
    .scaleup .media.scalergt .media-body {
        padding-right: 0px;
        position: static;
        width: 100%;
        display: block;
        padding-left: 0px;
        float: left;
    }
    .scaleup .media .media-body:before {
        display: none;
    }
    .scaleup .media .media-left:before {
        display: none;
    }
    .scaleup .media .media-left:after {
        display: none;
    }
    .scaleup .media .media-right:before {
        display: none;
    }
    .scaleup .media .media-right:after {
        display: none;
    }
    .scaleup .media .media-body:after {
        display: none;
    }
    .scaleup .media .media-right.img1 {
        display: block;
    }
    .scaleup .media .media-right.img {
        display: none;
    }
    .scaleup .media.scalelft {
        marin-bottom: 50px;
    }
}
@media (max-width:705px) {
    .our-team .scalelft.sec3 .media-body::before {
        width: 103%;
    }
    .products.cararrow .nav-pills li a {
        font-size: 16px;
        font-family: 'open_sanssemibold';
    }
}
@media (max-width:660px) {
    .our-team .scalergt.sec2 .media-body::before {
        width: 104%;
    }
    .newsletter-section h2 {
        font-size: 20px !important;
    }
}
@media(max-width:620px) {
    .products.cararrow .nav-pills li {
        float: left;
        width: 100%;
    }
    .ftr-cnt-wdth {
        width: 100%;
        float: left;
    }
    .products.cararrow .nav-pills li.active:before {
        display: none;
    }
    .products.cararrow .nav-pills li.active:after {
        display: none;
    }
    .divider-bdr {
        width: 75%;
    }
}
@media(max-width:570px) {
    .tphead {
        font-size: 25px;
    }
    .scndtop {
        font-size: 24px;
        padding-top: 8px;
    }
    .teambg img.team-img {
        width: 90%;
    }
    .team-image-sec h2 {
        font-size: 25px;
        margin: 43px 0px 10px 20px;
    }
    .team-sec-page .team-image-sec img {
        width: 110px;
    }
    .our-team .profile-sec .media-left {
        width: 100%;
        display: block;
        float: left;
        padding: 30px 0px !important;
        text-align: center;
    }
    .inverstor-sec .sec-bg .img-sec img {
        width: 70%;
    }
    .our-team .profile-sec .media-right {
        width: 100%;
        display: block;
        float: left;
        padding: 30px 0px !important;
        text-align: center;
    }
    .our-team .profile-sec .media-body::before {
        display: none;
    }
    .our-team .profile-sec .media-body::after {
        display: none;
    }
    .our-team .profile-sec .media-body {
        padding: 0px 0px 30px 0px !important;
    }
    .our-team .profile-sec .media-object {
        display: inline-block;
        margin: 0 auto;
    }
    .our-team .profile-sec .media-left a {
        width: 100%;
    }
    .our-team .profile-sec .media-right a {
        width: 100%;
    }
    .our-team .media .media-heading {
        text-align: center;
    }
    .our-team .media label.post {
        width: 100%;
        text-align: center;
    }
    .social-icon ul {
        width: 100%;
    }
    .pro-img1 {
        display: none !important;
    }
    .pro-img2 {
        display: block;
    }
    .our-team .media.scalelft {
        border-bottom: 2px dotted #ddd;
    }
    .our-team .media.scalergt {
        border-bottom: 2px dotted #ddd;
    }
    .our-team .media.scalergt:last-child {
        border: none;
    }
    .bgbackground {
        padding-top: 85px;
        min-height: 730px;
    }
}
@media(max-width:502px) {
    .bgbackground .pg-canvas {
        height: 580px !important;
    }
}
@media(max-width:490px) {
    .inverstor-sec .sec-bg .img-sec img {
        width: 100%;
    }
    .team-sec-page .team-image-sec img {
        width: 110px;
        margin: 0 auto;
        float: none !important;
    }
    .team-sec-page .team-image-sec .pull-left {
        width: 100%;
        text-align: center;
    }
    .team-image-sec h2 {
        margin: 5px 10px 10px 10px;
        text-align: center !important;
    }
    .invst-wdth {
        width: 100%;
    }
    .bgbackground .pg-canvas {
        height: 620px !important;
    }
    .bgbackground {
        min-height: 700px;
    }
    .selectcustomers.blog .carousel-control.left {
        left: -13%;
    }
    .selectcustomers.blog .carousel-control.right {
        right: -13%;
    }
    .products.cararrow .carousel-control.left {
        left: -13%;
    }
    .products.cararrow .carousel-control.right {
        right: -13%;
    }
    .success-sec .media .media-left {
        float: left;
        width: 100%;
        display: inline-block;
        text-align: Center;
    }
    .success-sec .media .media-left a {
        text-align: Center;
        float: none;
        border: none;
        display: inline-block;
    }
    .news .success-sec .carousel .testibox .media-left a img {
        width: 115px;
        xborder: 3px solid #2d9a41;
    }
    .news .success-sec .media .media-body {
        padding-top: 15px;
        width: 100%;
    }
}
@media(max-width:430px) {
    .team-sec-page .team-image-sec img {
        width: 110px;
        margin: 0 auto;
        float: none !important;
    }
    .team-sec-page .team-image-sec .pull-left {
        width: 100%;
        text-align: center;
    }
    .team-image-sec h2 {
        margin: 5px 10px 10px 10px;
    }
}
@media(max-width:410px) {
    .navbar-default .navbar-brand {
        float: left !important;
        width: 70% !important;
    }
    .divider-bdr img {
        left: 42%;
    }
    .team-invester-pag img {
        max-width: 100% !important;
    }
    .news h2.brdlftlogo {
        font-size: 18px;
    }
    .news .arrows a {
        width: 19px;
        height: 19px;
        line-height: 16px;
        font-size: 8px;
    }
    .bgbackground {
        padding-top: 105px;
        min-height: 700px;
    }
    h2.brdlogo {
        font-size: 19px;
    }
    .section-title h2 {
        font-size: 19px;
    }
    h4,
    .h4 {
        font-size: 16px;
        font-family: 'open_sanssemibold';
    }
}
@media(max-width:370px) {
    .bgbackground .pg-canvas {
        height: 570px !important;
    }
    .btn-green.slidebtn.btn-sm.support {
        font-size: 18px !important;
        font-family: 'open_sanssemibold';
        padding: 6px 10px;
    }
    .news h2.brdlftlogo {
        font-size: 17px;
    }
    .icon-arrow-left:before h2.brdlogo {
        font-size: 17px;
    }
    .our-employees .log-pt h2 {
        font-size: 17px;
    }
    .board-members .log-pt h2 {
        font-size: 17px;
    }
    .our-team .media .media-heading {
        font-size: 17px;
    }
    .section-title h2 {
        font-size: 17px;
    }
    .bgbackground {
        padding-top: 105px;
        min-height: 700px;
    }
    .our-employees .log-pt h2 {
        font-size: 17px;
    }
    .selectcustomers.blog .carousel-control.right {
        right: -20%;
    }
    .selectcustomers.blog .carousel-control.left {
        left: -20%;
    }
}
@media(max-width:335px) {
    .bgbackground .pg-canvas {
        height: 550px !important;
    }
    .bgbackground {
        padding-top: 105px;
        min-height: 690px;
    }
    .news h2.brdlftlogo {
        font-size: 18px;
    }
    h2.brdlogo {
        font-size: 18px;
    }
    .section-title h2 {
        font-size: 18px;
    }
    .board-members .log-pt h2 {
        font-size: 16px;
    }
    .our-employees .log-pt h2 {
        font-size: 16px;
    }
    .our-team .media .media-heading {
        font-size: 16px;
    }
}
@media(ma-width:325px) {
    h2.brdlogo {
        font-size: 18px;
    }
    .news .arrows {
        margin-top: -4px;
    }
}
.page-id-3342 #testimonial0 {
    padding:10px 30px 10px 10px !important;
}
#particles {
    width:100%;
    height:100%;
    overflow:hidden;
}
.home .bgwht,
.home .bg-slider-blue,
.home .navbar-fixed-top {
    xbackground:none !important;
}
.home img.inner {
    display:none !important
}
img.homelogo {
    display:none !important
}
.home img.homelogo {
    display:block !important
}
.home.page .tpanimate {
    background-color:#005cb9;
}
.hombann {
    position:absolute;
    top:3%;
    width:100%;
}
button,
a {
    outline:none !important
}
.home .right-bottom1 .btn-green {
    background-color:#005cb9;
}
.home .tphead,
.home .scndtop,
.home .right-top1 p.secp {
    color:#fff !important
}
.btn-d a {
    background:#005cb9 !important;
    border:1px solid #005cb9 !important;
}
#newsletterpopup .modal-header {
    display:inline-block;
    width:100%;
    background-color:#005cb9 !important
}
#newsletterpopup .modal-body {
    padding:0 15px 15px 15px;
    display:inline-block;
    width:100%;
}
.newsletter-section h2 {
    font-weight:bold;
    font-size:25px;
    display:inline-block;
    width:100%;
    text-align:center;
}
#newsletterpopup .modal-header .close {
    opacity:1
}
.newsletter-section h2 {
    margin-bottom:20px;
}
#newsletterpopup .modal-header i:before {
    color:#fff !important;
}
.tnp-field label {
    font-size:15px;
    width:100%;
}
.tnp-field input {
    margin-bottom:15px;
    padding:3px 3px 3px 10px;
}
.tnp-field input[type="submit"] {
    position:inherit;
    margin-bottom:0;
    background:none;
    border:none;
    color:#fff;
    padding:10px;
}
#newsletterpopup .success-message {
    margin:0 0 15px 0;
    color:green;
    font-size:15px;
    font-weight:bold;
}
.newsletter-section p {
    font-size:18px;
    width:70%;
    margin:0 auto;
}
img.bannerim {
    width:335px !important;
    max-width:100% !important;
    height:auto !important;
}
img.bannerbtn {
    width:185px !important;
    max-width:100% !important;
    height:auto !important;
}
img.bannerbtn1 {
    width:243px !important;
    max-width:100% !important;
    height:auto !important;
}
.page-template-videos-template #newsletterpopup {
    display:none !important;
}
.page-template-videos-template .modal-backdrop.in {
    display:none !important;
}
.page-template-videos-template.modal-open {
    overflow-y:scroll !important
}
.top-social a.download {
    font-size:12px;
    padding:5px 10px;
    background:#1f9f49;
    border-radius:3px;
    color:#fff;
    font-weight:bold;
}
_:-ms-fullscreen,
:root .scale-storage .scalergt .media-body::before {
    top:auto;
}
_:-ms-fullscreen,
:root .scale-storage .scalelft .media-left::after {
    min-height:327px;
}
.panel-group.careers {
    margin-top:65px;
}
.panel-group.careers .panel-heading {
    background-color:#f1592a !important;
    color:#fff !important;
}
.panel-group.careers .panel-title>a {
    font-size:29px;
    text-align:center;
    padding:17px 15px;
    font-weight:600;
    z-index:999;
}
.panel-group.careers .panel-title>a:hover {
    text-decoration:none;
}
.panel-group.careers .panel-title>a:after {}
.panel-group.careers .panel-title>a:focus {
    text-decoration:none;
}
.collapsing {
    position:relative;
    height:0;
    overflow:hidden;
    -webkit-transition-timing-function:ease;
    -o-transition-timing-function:ease;
    transition-timing-function:ease;
    -webkit-transition-duration:.35s;
    -o-transition-duration:.35s;
    transition-duration:.35s;
    -webkit-transition-property:height,
    visibility;
    -o-transition-property:height,
    visibility;
    transition-property:height,
    visibility;
}
.collapse {
    -webkit-transition-timing-function:ease;
    -o-transition-timing-function:ease;
    transition-timing-function:ease;
    -webkit-transition-duration:.35s;
    -o-transition-duration:.35s;
    transition-duration:.35s;
    -webkit-transition-property:height,
    visibility;
    -o-transition-property:height,
    visibility;
    transition-property:height,
    visibility;
}
@media(max-width:1199px) {
    .panel-group.careers {
        margin-top: 20px;
    }
    .panel-group.careers .panel-title>a {
        font-size: 22px !important;
    }
}
@media(max-width:991px) {
    .panel-group.careers .panel-title>a {
        font-size: 17px !important;
    }
}
@media(max-width:767px) {
    .panel-group.careers .panel-title>a {
        text-align: left !important;
        padding: 17px 50px 17px 15px;
    }
    .panel-group.careers .panel-title i {
        right: 22px !important;
    }
    .panel-group.careers {
        margin-top: 43px !important;
    }
}
.home-slider {
    display:none;
}
.home .home-slider {
    display:block !important
}
.scaleup-storage h2 {
    font-family:'Ubunturegular' !important;
    color:#0151b2 !important;
    text-align:center;
}
.scaleup-storage {
    padding:180px 0px;
}
.scaleup-storage p {
    font-size:20px;
    text-align:center;
    padding-top:12px;
}
.read-our-blog h3 {
    color:#003369;
    font-size:40px;
    font-family:'Ubunturegular' !important;
}
.read-our-blog p {
    font-size:90px !important;
    color:#003369;
    font-family:'Ubunturegular' !important;
    line-height:80px;
}
.vms-sec .cnt-txt {
    padding:40px 40px 40px 40px;
}
.vms-sec {
    display:inline-block;
    width:100%;
    background:#f6f6f6;
}
.vms-sec h2 {
    color:#000000 !important;
    font-size:32px;
}
.vms-sec h2 .lblue {
    color:#0151b2 !important;
}
.vms-sec p {
    font-size:20px !important;
    color:#5d5d5d !important;
}
.vms-sec h4 {
    font-size:21px;
    font-family:'open_sansregular';
    line-height:28px;
}
.btn-org,
.btn-org:hover,
.btn-org:focus {
    background:#e47526;
    color:#fff;
    border-radius:50px;
    text-transform:uppercase;
    padding:9px 35px;
}
.video-sec {
    height:100%;
    overflow:hidden;
}
.video-sec iframe {
    height:100% !important;
    min-height:100% !important;
}
.quote-txt {
    display:inline-block;
    width:100%;
    text-align:center;
    background:#dc7928;
    padding:5px 0px;
}
.quote-txt p {
    color:#ffffff !important;
    font-size:40px !important;
    padding:0px;
    margin:0px;
}
.wp-editor-area kc-param {
    display:block !important;
}
.bg-blue {
    background:#025bb5 !important;
}
.selectcustomers-slider {
    padding:40px 40px;
}
.selectcustomers-slider #carousel-example-generic2 .carousel-inner>.item h4 {
    font-size:30px;
    font-family:'open_sanssemibold';
    padding:10px 0px;
}
.selectcustomers-slider .carousel-inner {
    min-height:initial !important;
    height:100%;
}
.selectcustomers-slider .carousel-inner .item {
    margin-bottom:60px;
}
.selectcustomers-slider .carousel-indicators {
    text-align:center !important;
    bottom:0px;
    margin-bottom:0px;
}
.selectcustomers-slider .carousel-indicators li,
.selectcustomers-slider .carousel-indicators li:hover,
.selectcustomers-slider .carousel-indicators li.active {
    background:#cecece !important;
    box-shadow:none !important;
    border-radius:50px !important;
}
.selectcustomers-slider .carousel-indicators li.active:after {
    background:#005ab4 !important;
    border-radius:50px;
}
#inner-footer {
    float:left;
    width:100%;
}
.prouduct-slide-sec .nav-pills li a {
    background-color:#ffffff;
    border:2px solid #033361 !important;
    color:#033361 !important;
    border-radius:50px;
}
.prouduct-slide-sec .nav-pills li {
    width:49%;
}
.prouduct-slide-sec .nav-pills li.active a {
    background-color:#033361;
    border:2px solid #033361 !important;
    color:#ffffff !important;
}
.prouduct-slide-sec .nav-pills li.active a:after {
    border:none !important;
}
.prouduct-slide-sec .nav-pills li.active a:before {
    border:none !important;
}
.prouduct-slide-sec .carousel-indicators {
    text-align:center !important;
}
.prouduct-slide-sec .item p {
    font-size:16px !important;
}
.prouduct-slide-sec .carousel-indicators li,
.prouduct-slide-sec .carousel-indicators li:hover,
.prouduct-slide-sec .carousel-indicators li.active {
    background:#cecece !important;
    box-shadow:none !important;
    border-radius:50px !important;
}
.prouduct-slide-sec .carousel-indicators li.active:after {
    background:#005ab4 !important;
    border-radius:50px;
}
.products.cararrow .nav-pills li.active:before {
    border:none !important;
}
.products.cararrow .nav-pills li.active:after {
    border:none !important;
}
.join-us .cnt-txt {
    padding:40px 40px;
}
.join-us .cnt-txt h4 {
    font-size:23px;
    line-height:27px;
    color:#000 !important;
}
.join-us .cnt-txt p {
    font-size:18px;
    margin:20px 0px;
}
.read-our-blog .blog-txt {
    text-align:center;
    padding:40px 40px;
}
.latest-news h2.brdlftlogo:before,
.latest-news h2.brdlftlogo:after {
    display:none !important;
}
.latest-news h2.brdlftlogo {
    text-align:Center;
    color:#dc7928 !important;
    font-family:'open_sansregular';
    font-weight:500;
}
.latest-news h2.brdlftlogo span {
    color:#dc7928 !important;
}
.latest-news h2.brdlftlogo .arrows {
    display:none !important;
}
.latest-news .success-sec {
    padding:60px 60px;
    background:#dc7928;
    vertical-align:top;
}
.latest-news .news-sec {
    padding:60px 60px;
}
.latest-news .success-sec .brdlftlogo span,
.latest-news .success-sec h2.brdlftlogo {
    color:#fff !important;
}
.latest-news .news-sec .media-heading {
    margin-top:0;
    margin-bottom:5px;
    color:#dc7928 !important;
    font-size:20px !important;
}
.latest-news .news-sec p.lead,
.latest-news .news-sec p {
    font-family:ubunturegular !important;
    font-size:16px !important;
    font-weight:normal !important;
}
.latest-news .news-sec .datebox .blue {
    background-color:#dc7928 !important;
    color:#fff !important;
    width:70px !important;
    text-align:center !important;
    margin-top:0px !important;
    margin:0 auto;
    display:block !important;
    border-radius:50px !important;
    position:absolute !important;
    bottom:15px !important;
    left:15px;
}
.latest-news .news-sec .datebox .green {
    background-color:#dc7928 !important;
    color:#fff !important;
    width:80px !important;
    position:absolute !important;
    margin-top:0px !important;
    top:16px !important;
    left:11px !important;
    border-radius:50px !important;
}
.latest-news .news-sec a.datebox {
    width:100px;
    height:100px;
    background:#dc7928;
    border-radius:50px;
    text-align:center;
}
.latest-news .testibox .media-left a {
    border:3px solid #ffffff;
    border-radius:50%;
    margin-bottom:15px;
    background:#ffffff;
}
.latest-news .testibox .media-left h5.blue strong {
    display:none !important;
}
.latest-news .testibox p {
    font-size:21px;
    font-style:normal;
    font-family:ubunturegular;
    color:#ffffff;
    font-weight:normal;
}
.latest-news .testibox p:before {
    display:none !important;
}
.latest-news .testibox p:after {
    display:none !important;
}
.latest-news .success-sec .btn-wht {
    margin-top:39%;
}
.latest-news .success-sec .item {
    margin-top:12%;
}
.latest-news .first {
    border:none !important;
}
.btn-wht {
    border-radius:50px;
    text-transform:uppercase;
    padding:9px 35px;
    color:#dc7928;
}
.tbl-sec {
    display:table;
    position:relative;
    width:100% !important;
    float:none !important;
}
.tbl-cell {
    display:table-cell;
    float:none !important;
    vertical-align:middle;
}
.request {
    background:#ebebeb !important;
}
.request h2 {
    color:#005fc5 !important;
    font-size:45px !important;
    font-family:'Ubunturegular' !important;
    font-weight:500 !important;
}
.greenbg.request p {
    font-size:18px !important;
    color:#005fc5 !important;
    font-family:'Ubunturegular' !important;
}
.request input {
    color:#005cb9 !important;
    xborder:2px solid #005fc5 !important;
    border-radius:50px !important;
    background:#fff !important;
}
.greenbg.request .form-group .btn-dblue.btn-lg {
    background:#dc7928 !important;
    border-radius:50px !important;
    text-transform:uppercase !important;
    font-family:'Ubuntulight' !important;
    font-size:20px !important;
}
.copyright {
    background-color:#005ab4 !important;
    padding:35px 0px 15px 0px !important;
}
.address ul {
    margin-top:40px;
    list-style:none;
    padding:0px;
}
.address ul i {
    font-size:18px;
    background:#ffffff;
    padding:9px;
    border-radius:50px;
    color:#005fc5;
    width:35px;
    height:35px;
    float:left;
}
.address ul span {
    font-size:17px;
    margin-left:10px;
    float:left;
    color:#ffffff !important;
}
.address ul,
.address ul li {
    float:left;
    width:100%;
    margin-bottom:10px;
}
.contact-txt h3 {
    margin:0px;
    color:#ffffff !important;
    font-size:40px !important;
    padding:62px 0px 0px 0px;
}
.social table {
    float:left;
    !important;
}
.address ul i.fa.fa-map-marker {
    padding:9px 13px !important;
}
.address ul i.fa.fa-phone {
    padding:10px 11px !important;
}
.social ul li a {
    background:#ffffff;
    padding:10px 20px;
    border-radius:50px;
    color:#005fc5;
    font-size:25px;
    margin-right:35px;
}
.social ul li:last-child a {
    margin-right:0px !important;
    background:#ffffff;
    padding:11px 17px !important;
    border-radius:50px;
    color:#005fc5;
    font-size:25px;
}
.social ul li:nth-child(2) a {
    background:#ffffff;
    padding:11px 16px !important;
    border-radius:50px;
    color:#005fc5;
    font-size:25px;
}
.social ul {
    margin-top:70px;
}
.navbar-nav>li>a .caret:before {
    top:13px !important;
    position:absolute;
    content:"\f0d7" !important;
    font-family: 'FontAwesome';
}
.join-us-img {
    background-size:cover;
    background-position:center;
    min-height:550px;
    background-image:url('/wp-content/uploads/2016/12/team.png');
    background-repeat:no-repeat;
}
.customer-slide {
    background-size:cover;
    background-position:center;
    min-height:550px;
    background-image:url('/wp-content/uploads/2017/07/customer-slide.jpg');
    background-repeat:no-repeat;
}
.read-blog-img {
    background-size:cover;
    min-height:550px;
    background-image:url(/wp-content/uploads/2017/09/blog-image1.jpg);
    background-repeat:no-repeat;
    background-position:left center;
}
.tpanimate {
    border-bottom:1px solid #ddd !important;
    webkit-box-shadow:0px 0px 9px 0px rgba(0,
    0,
    0,
    0.30);
    -moz-box-shadow:0px 0px 9px 0px rgba(0,
    0,
    0,
    0.30);
    box-shadow:0px 0px 9px 0px rgba(0,
    0,
    0,
    0.30);
}
.logo-sec .owl-controls.clickable {
    width:100%;
    margin-top:45px;
    text-align:center;
}
.logo-sec .owl-controls .owl-page {
    display:inline-block;
    margin-right:5px;
}
.logo-sec .owl-controls .owl-page span {
    width:12px;
    height:12px;
    background:#cecece;
    display:inline-block;
    border-radius:50px;
}
.logo-sec .owl-controls .owl-page.active span {
    background:#005ab4 !important;
}
@media(max-width:1280px) {
    .news h2.brdlftlogo {
        font-size: 30px !important;
    }
}
@media(max-width:1030px) {
    .contact-txt h3 {
        margin: 0px;
        color: #ffffff !important;
        font-size: 30px !important;
        padding: 62px 0px 0px 0px;
        text-align: center;
    }
    .social ul li a {
        margin-right: 0px;
    }
}
@media(max-width:991px) {
    .address ul span {
        font-size: 13px;
    }
}
@media(max-width:900px) {
    .latest-news .news-sec {
        padding: 60px 35px;
    }
    .latest-news .news-sec .media-left {
        float: left !important;
        width: 100% !important;
    }
    .latest-news .news-sec .media-body {
        float: left !important;
        width: 100% !important;
    }
    .latest-news .success-sec {
        padding: 60px 35px;
    }
}
@media(max-width:850px) {
    .address ul span {
        font-size: 12px;
    }
}
@media(max-width:767px) {
    .contact-txt h3 {
        font-size: 30px !important;
        padding: 10px 0px 0px 0px;
        text-align: left;
    }
    .address ul {
        margin-top: 0px !important;
    }
    .address {
        margin-top: 30px;
    }
    .social ul li {
        padding: 0px 10px 0px 0px !important;
    }
    .latest-news .success-sec .btn-wht {
        margin-top: 0% !important;
    }
    .latest-news .btn-sec {
        float: left !important;
        text-align: center;
        width: 100%;
    }
    .latest-news .news-sec .media-left {
        text-align: center !important;
    }
    .latest-news .news-sec a.datebox {
        float: none;
        display: inline-block;
        margin: 0 auto;
        text-align: center;
    }
    .social ul {
        margin-top: 30px;
        text-align: center;
    }
    .tbl-cell {
        display: inline-block !important;
        float: left !important;
        vertical-align: middle;
        width: 100%;
    }
    .tbl-sec {
        display: inline-block !important;
        width: 100% !important;
        float: left !important;
    }
}
.copyright {
    background-image:url(/wp-content/uploads/2017/09/footer-bg-img1.jpg);
    background-size:cover;
    background-color:rgb(0,
    90,
    180);
    background-repeat:no-repeat;
    background-position:center center;
    padding:35px 0px 15px !important;
    float:left;
    width:100%;
}
.btn-lgt-blue.download a,
.btn-lgt-blue.download a:hover,
.btn-lgt-blue.download a:focus {
    white-space:pre-wrap;
    text-transform:uppercase;
    background-color:rgb(0,
    90,
    180) !important;
    color:#fff !important;
    xfont-size:13px !important;
    font-weight:bold;
    border-radius:50px;
    padding:10px 15px;
}
.social ul {
    margin-top:40px;
}
#bookmarks {
    display:none;
    position:fixed;
    right:4rem;
    top:25%;
    z-index:10;
}
#bookmarks .bookmark {
    display:block;
    background-color:rgb(177,
    174,
    174);
    width:14px;
    height:14px;
    cursor:pointer;
    border-width:2px;
    border-style:solid;
    border-color:rgb(177,
    174,
    174);
    border-image:initial;
    border-radius:14px;
    margin:10px 0px;
}
.selected {
    background-color:#ffffff !important;
}
.welcome {
    padding:70px 0px 80px;
}
.nav-wdth {
    padding:0px 40px !important;
}
.active-side {
    right:0px !important;
}
.sidebar-sec {
    position:fixed;
    right:-50px;
    top:18%;
    z-index:10;
    display:inline-block;
    background:rgb(255,
    255,
    255);
    border-width:1px;
    border-style:solid;
    border-color:rgb(221,
    221,
    221);
    border-image:initial;
    transition:all 0.35s;
}
.sidebar-sec .social-links {
    position:relative;
    margin:0px;
    list-style:none;
    padding:10px 10px 0 10px;
    background:rgb(255,
    255,
    255);
}
.sidebar-sec .sidebar-icon {
    font-size:41px;
    position:absolute;
    left:-29px;
    width:56px;
    height:60px;
    text-align:center;
    color:rgb(0,
    90,
    180);
    font-weight:bold;
    z-index:0;
    top:34%;
    cursor:pointer;
    border-width:1px;
    border-style:solid;
    border-color:rgb(221,
    221,
    221);
    border-image:initial;
    background:rgb(255,
    255,
    255);
    border-radius:50px;
    padding:8px 25px 6px 2px;
}
.sidebar-sec .social-links li {
    margin-bottom:15px;
    width:30px;
    height:30px;
    text-align:center;
    vertical-align:middle;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    align-content:stretch;
    background:rgb(0,
    90,
    180);
    border-radius:50px;
}
.sidebar-sec .social-links li a {
    color:rgb(255,
    255,
    255);
    font-size:16px;
    background:rgb(0,
    90,
    180);
    border-radius:50px;
}
.navbar-toggle {
    position:relative;
    float:right;
    margin-right:0px;
    margin-top:28px;
    margin-bottom:8px;
    background-color:transparent;
    background-image:none;
    padding:9px 10px;
    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-image:initial;
    border-radius:4px;
}
.navbar-default .navbar-toggle {
    border-color:rgb(0,
    90,
    180) !important;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color:rgb(0,
    90,
    180) !important;
}
.btn-lgt-blue.download a:before,
.btn-lgt-blue.download a:hover:before,
.btn-lgt-blue.download a:focus:before {
    height:0px !important;
}
#contact_form .error {
    color:#ec0000;
}
#success_msg {
    color:#29ab1a;
    margin-bottom:15px;
    text-align:center;
    font-size:15px;
    font-weight:500;
}
.bookpage .paginate {
    position:fixed;
    right:-2px;
    xtop:50%;
    bottom:5%;
    font-size:1.4em;
    z-index:10;
    padding:25px 15px 25px 15px;
    margin:0;
    list-style:none;
    background:#ffffff;
    border-radius:33px 0px 0px 33px;
    border:1px solid #ddd;
}
.scale-cnt-sec p {
    font-size:18px;
}
@media (max-width:1430px) {
    .nav.navbar-nav li a {
        font-size: 13px;
    }
    #menu-header-menu {
        margin-top: 26px !important;
    }
}
@media (max-width:1280px) {
    .navbar-default .navbar-brand {
        padding-top: 0px;
    }
}
@media (max-width:1350px) {
    .navbar-default .navbar-brand {
        float: left;
        width: 300px;
        margin-top: 10px;
    }
    #menu-header-menu {
        margin-top: 22px !important;
    }
    .navbar-nav>li>a .caret:before {
        top: 12px !important;
        position: absolute;
        content: "\f0d7" !important;
    }
}
@media(max-width:1200px) {
    .navbar-brand {
        padding: 0px 8px 0px 8px !important;
    }
}
@media (max-width:1199px) {
    .nav.navbar-nav li a {
        font-size: 11px !important
    }
    .btn-lgt-blue.download a,
    .btn-lgt-blue.download a:hover,
    .btn-lgt-blue.download a:focus {
        font-size: 11px !important;
    }
    .quote-txt p {
        font-size: 35px !important;
    }
    .nav-wdth {
        padding: 0px 10px !important;
    }
}
@media(max-width:1099px) {
    .navbar-default .navbar-brand {
        margin-top: 10px !important;
        padding-top: 15px;
    }
    .navbar-default #menu-header-menu {
        margin-top: 24px;
    }
    .navbar-default {
        padding-bottom: 10px;
    }
    .scrollsect {
        xheight: auto !important;
    }
}
@media(max-width:991px) {
    .navbar-default .navbar-brand {
        float: left;
        width: auto;
        margin-top: 9px !important;
        padding-top: 0px;
    }
    .navbar-default #menu-header-menu {
        margin-top: 19px;
    }
    .quote-txt p {
        font-size: 30px !important;
    }
}
@media (max-width:860px) {
    .nav.navbar-nav li a {
        font-size: 9px !important;
    }
    .navbar-nav>li>a .caret:before {
        top: 9px !important;
    }
    .btn-lgt-blue.download a,
    .btn-lgt-blue.download a:hover,
    .btn-lgt-blue.download a:focus {
        font-size: 9px !important;
    }
}
@media (max-width:767px) {
    .nav.navbar-nav li a {
        font-size: 11px !important;
    }
    .bg-wht.welcome .nav-pills li img {
        max-width: 100%;
        margin: 0px 0px 20px 0px;
    }
    .textmiddle {
        height: auto !important;
    }
    a.user-icon.two {
        display: block !important;
        float: left;
        margin-top: 8px !important;
    }
    a.user-icon.one {
        display: none !important;
    }
    .selectcustomers-slider {
        padding: 40px 0px;
    }
    .logo-sec .item {
        margin-bottom: 25px;
    }
    .news .news-sec .media .media-body {
        margin-bottom: 20px;
    }
    .join-us .cnt-txt {
        padding: 40px 15px;
    }
    .latest-news .news-sec {
        padding: 40px 15px;
    }
    .latest-news .news-sec .media-heading {
        margin-top: 15px;
    }
    .customer-slide,
    .join-us-img {
        background-size: cover !important;
    }
    .welcome {
        padding: 40px 0px 40px;
    }
    .scaleup-storage {
        padding: 40px 0px;
    }
    .quote-txt p {
        font-size: 25px !important;
    }
    .sidebar-sec .sidebar-icon {
        padding: 8px 35px 6px 6px !important;
    }
    .btn-lgt-blue.download a,
    .btn-lgt-blue.download a:hover,
    .btn-lgt-blue.download a:focus {
        font-size: 11px !important;
    }
    .navbar-default .navbar-brand {
        margin-top: 10px !important;
    }
    .navbar-default .navbar-brand {
        padding-top: 20px;
        padding-bottom: 17px;
        margin-top: 0px;
    }
    .navbar-default .navbar-brand {
        padding-left: 0px;
    }
}
.paginate {
    position:fixed;
    right:39px;
    xtop:50%;
    font-size:1.4em;
    z-index:10;
    padding:0;
    margin:0;
    list-style:none;
}
.paginate a {
    display:block;
    height:11px;
    color:white;
    position:relative;
    float:left;
    width:11px;
    border:1px solid #737373;
    border-radius:50%;
    margin-bottom:5px;
}
.paginate a.active {
    background-color:#005ab4
}
.paginate a .hover-text {
    position:absolute;
    right:15px;
    top:7px;
    opacity:0;
    -webkit-transition:opacity 0.5s ease;
    transition:opacity 0.5s ease;
    padding-right:15px;
}
.paginate a:hover .hover-text {
    opacity:1;
    display:none;
}
.scrollsect.footer {
    height:auto !important
}
.trackscript img {
    display:none
}
.height-auto {
    height:auto !important
}
.header {
    position:fixed;
    top:0
}
.textmiddle {
    display:flex;
    flex-direction:column;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:stretch;
    align-content:stretch;
}
.clients .owl-carousel .fa-angle-left:before {
    content:"\e605";
    font-family:'simple-line-icons';
}
.clients .owl-carousel .fa-angle-right:before {
    content:"\e606";
    font-family:'simple-line-icons';
}
.blog-link:hover,
.blog-link:focus {
    text-decoration:none;
}
.team-sec-page .tab-content.team-tabs {
    display:none;
    width:100%;
    margin-top:20px;
    xbackground:#f6f6f6;
    padding:15px 10px 15px 0px;
    xborder:1px solid #efefef;
    float:left;
}
.team-sec-page .tab-content.team-tabs p,
.team-sec-page .tab-content.team-tabs p.lead {
    font-size:15px;
    color:#555555 !important;
    text-align:left !important;
}
.team-sec-page .tab-content.team-tabs .cnt-txt {
    font-size:15px;
    color:#555555 !important;
    text-align:left !important;
}
.team-sec-page .nav-tabs .log-pt p {
    font-size:14px !important;
    color:#343434 !important;
    font-family:'open_sansregular' !important;
    padding-top:0px;
}
.board-members .log-pt p {
    font-size:14px;
}
.team-sec-page .nav-tabs .log-pt h2 {
    color:#000000;
    font-size:17px;
    margin:0px;
    padding:15px 0px 3px 0px;
    font-family:'open_sanssemibold';
}
.team-sec-page .nav-tabs {
    border:none !important;
}
.team-sec-page .tab-content.team-tabs .fa-times {
    font-size:28px;
    color:#c3c3c3;
    margin-left:20px;
    margin-bottom:1px;
    text-align:right;
    cursor:pointer;
}
.navbar-fixed-top {
    background-color:#fff !important;
}
.board-members .log-pt h2 {
    color:#000000;
    font-size:20px;
    margin:0px;
    padding:15px 0px 5px 0;
    font-family:'open_sanssemibold';
}
.fltnon {
    float:none !important
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color:#0060b5 !important;
}
@media screen and (max-width:1285px) {
    .home-slider {
        margin-top: 100px;
    }
}
@media screen and (max-width:767px) {
    .customer-slide,
    .join-us-img {
        background-size: 100% !important;
    }
    .join-us-img,
    .customer-slide,
    .read-blog-img {
        min-height: 280px;
    }
    .customer-slide,
    .join-us-img {
        background-size: 100%
    }
    .paginate {
        display: none
    }
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #ffffff !important;
    }
}
.circular-large {
    width:300px;
    height:300px;
    margin:0 auto;
    border-radius:150px;
    -webkit-border-radius:150px;
    -moz-border-radius:150px;
    box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8);
    -webkit-box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8);
    -moz-box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8)
}
.circular-medium§ {
    width:150px;
    height:150px;
    margin:0 auto;
    border-radius:75px;
    -webkit-border-radius:75px;
    -moz-border-radius:75px;
    box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8);
    -webkit-box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8);
    -moz-box-shadow:0 0 8px rgba(0,
    0,
    0,
    .8)
}
.circular-small {
    width:100px;
    height:100px;
    margin:0 auto;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    box-shadow:0 0 4px rgba(0,
    0,
    0,
    .8);
    -webkit-box-shadow:0 0 4px rgba(0,
    0,
    0,
    .8);
    -moz-box-shadow:0 0 4px rgba(0,
    0,
    0,
    .8)
}
.fade1 div.textwidget {
    width: 100% !important
}
.menu-ss li:first-child a:hover {
    background-color: #006bbf;
    color: #ffffff;
}
.navbar-default .navbar-nav>li:first-child>a:hover,
.navbar-default .navbar-nav>li:first-child>a:focus {
    color:#fff !important
}

/****/
.btn:active,
.btn.active {
    box-shadow:none !important;
}
.the_champ_sharing_container.the_champ_horizontal_sharing {
    display: none !important;
}
.the_champ_sharing_container.the_champ_vertical_sharing.the_champ_hide_sharing.the_champ_bottom_sharing {
    display: none !important;
}
.login-sec .theChampFacebookLoginSvg {
    background: url('/wp-content/uploads/2017/08/login-icon-fb.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.login-sec .theChampFacebookLoginSvg:after {
    content: "Facebook";
    font-size: 20px;
    float: left;
    margin-top: 67px;
    width: 100%;
    color: #555555;
    font-family: 'open_sansregular';
    font-size: 14px;
    font-style: normal;
}
.login-sec ul.the_champ_login_ul li {
    width:auto !important;
    width:25% !important;
    list-style-type: none!important;
    text-align: center !important;
    display: inline-block !important;
}
.login-sec .theChampLogin {
    height: 60px!important;
    width: 60px!important;
    float: none!important;
    cursor: pointer!important;
    border: none!important;
    display: inline-block !important;
}
.login-bg-sec .login-sec .social-login h3 {
    margin-bottom:40px;
}
.login-bg-sec .login-sec .social-login .social-links {
    padding-bottom: 15px;
}
.login-sec .theChampTwitterLoginSvg {
    background: url(/wp-content/uploads/2017/08/login-icon-twt.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.login-sec .theChampTwitterLoginSvg:after {
    content: "Twitter";
    font-size: 20px;
    float: left;
    margin-top: 67px;
    width: 100%;
    color: #555555;
    font-family: 'open_sansregular';
    font-size: 14px;
    font-style: normal;
}
.login-sec .theChampTwitterBackground {
    background:none !important;
}
.login-sec .theChampLinkedinLoginSvg {
    background: url(/wp-content/uploads/2017/08/login-icon-lkd.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.login-sec .theChampFacebookBackground {
    background: none !important;
}
.login-sec .theChampLinkedinLoginSvg:after {
    content: "LinkedIn";
    font-size: 20px;
    float: left;
    margin-top: 67px;
    width: 100%;
    color: #555555;
    font-family: 'open_sansregular';
    font-size: 14px;
    font-style: normal;
}
.login-sec .theChampLinkedinBackground {
    background: none !important;
}
.login-sec .theChampGoogleLoginSvg {
    background: url(http://www.cloudbyte.com/wp-content/uploads/2017/08/login-icon-mail.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.login-sec .theChampGoogleLoginSvg:after {
    content: "Gmail";
    font-size: 20px;
    float: left;
    margin-top: 67px;
    width: 100%;
    color: #555555;
    font-family: 'open_sansregular';
    font-size: 14px;
    font-style: normal;
}
.login-sec .theChampGoogleBackground {
    background: none !important;
}
ul.dropdown-menu.login {
    float: right !important;
    left: auto !important;
    right: 0 !important;
    position: absolute;
    top: 100% !important;
    margin-top:3px;
    min-width: initial !important;
    padding: 3px 15px;
    width: auto !important;
}
a.user-icon {
    position: relative!important;
}
.dropdown {
    position: relative !important;
}
.dropdown-menu.login li a:hover,
.dropdown-menu.login li a:focus {
    background:none !important;
    color:#333 !important;
}
.cleanlogin-preview a.cleanlogin-preview-logout-link {
    text-align: right;
    float: right;
    text-decoration: none;
    background: #0059b3 !important;
    padding: 6px 15px !important;
    color: #fff !important;
    border-radius: 50px !important;
}
.login-bg-sec {
    background-image: url(http://www.cloudbyte.com/wp-content/uploads/2017/07/login-bg.jpg);
    background-size: cover;
    xbackground-position: 100%;
    margin-bottom: -5px;
    padding: 60px 0px;
}
.product-download-bg {
    background-image: url(http://www.cloudbyte.com/wp-content/uploads/2017/07/dwn-bg.jpg);
    background-size: cover;
    xbackground-position: 100%;
    margin-bottom: -5px;
    padding: 60px 0px;
}
.product-download-bg a.btn.btn-download {
    background: #dc7928;
    padding: 10px 45px;
    color: #fff;
    font-size: 22px;
    border-radius: 50px;
    margin-top: 35px;
}
.login-bg-sec .login-sec {
    background: #f6f6f6;
    border-radius: 40px;
    width: 780px;
    float: right;
    padding: 40px;
    max-width: 100%;
}
.cleanlogin-container {
    border:none !important;
    box-shadow:none !important;
    max-width: initial !important
}
.cleanlogin-container input {
    border: none;
    border-bottom: 1px solid #ddd;
    height: 40px;
    font-size: 16px;
    background: none;
    padding: 10px !important;
}
.cleanlogin-container fieldset {
    width: 100%;
    text-align: center;
}
input.cleanlogin-field {
    background: #dc7928;
    color: #ffffff;
    font-size: 18px;
    height: auto !important;
    border-radius: 50px;
    width: 200px !important;
    margin: 0 auto !important;
    text-align: center;
    float: none !important;
}
.cleanlogin-field.cleanlogin-field-remember {
    display: none !important;
}
.login-bg-sec .btn-register-now,
.login-bg-sec .btn-register-now:hover,
.login-bg-sec .btn-register-now:focus {
    background: #0059b3;
    padding: 10px 60px;
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 300;
    text-decoration: none;
}
.login-sec table.cnss-social-icon tr td a img {
    border-radius:0px !important;
    width:100% !important;
    height:auto !important;
    border: none !important;
    opacity:2 !important;
}
.login-sec table.cnss-social-icon tr td a img:hover {
    opacity:2 !important;
}
table.cnss-social-icon {
    width: 100% !important;
}
.page-id-3823 .page-header {
    display:none !important;
}
.page-id-3851 .page-header {
    display:none !important;
}
a.user-icon {
    float: right;
    xwidth: 28px;
    margin-left: 12px;
    margin-top: 28px;
}
a.user-icon img {
    width:100% !important;
}
a.user-icon.two {
    display: none;
}
.dropdown.drp-one {
    float: right;
}
a.user-icon {
    position: relative !important;
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: right;
    margin-top: 44px;
    margin-left: 30px;
}
a.user-icon img {
    width:20px !important;
    float:left;
}
a.user-icon .user-name {
    margin: 0px 0px 0px 10px;
    color: #0060b5;
    font-weight: bold;
    font-family: 'open_sansregular';
    display: inline-block;
    float: left;
    max-width: 66px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.drp-two {
    display: none;
}
.careers-section {
    padding: 60px 0px;
    display: inline-block;
    width: 100%;
}
.careers-section .careers-service {
    padding:50px 0px 110px 0px !important;
}
.careers-section .careers-service h1 {
    font-size: 28px !important;
    color: #025bb5 !important;
    font-weight: normal !important;
}
.careers-section .careers-service h3 {
    font-family: 'open_sansregular' !important;
    font-size: 18px !important;
    color: #333 !important;
    line-height: 28px;
}
.careers-section .job-list {
    padding-top: 60px !important;
}
.careers-section .job-list .job-sec a,
.careers-section .job-list .job-sec a:hover,
.careers-section .job-list .job-sec a:focus {
    font-size: 22px;
    color: #08335d;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 6px;
    display: inline-block;
}
.careers-section .job-list .job-sec p {
    color: #333;
    font-family: 'open_sansregular';
    font-size: 18px;
    margin: 0 0 0px;
}
.careers-section .job-list .job-sec {
    margin-bottom: 70px;
}
.careers-section .job-list .job-sec .job-bx {
    padding: 20px;
    background: #f6f6f6;
    border-radius: 100px;
    min-height: 130px;
    vertical-align: middle !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    align-content: stretch !important;
    height:100%;
    xmargin: 10px 25px;
    margin:0 auto;
    margin-top:20px;
    width:80%;
}
.careers-section .careers-service center {
    padding:0px 30px;
}
.cnt_mdl {
    margin-bottom: 35px;
    display: inline-block;
    width: 100%;
}
.cnt_mdl input#applyjobs {
    background: #005ab4;
    color: #fff;
    padding: 8px 30px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
}
.cnt_mdl p {
    line-height:30px !important;
}
.awp_hrjobs_form {
    padding: 20px;
    background: #f6f6f6 !important;
    color: white;
    margin-bottom: 50px;
    border-radius: 3px;
    border: 1px solid #ddd;
}
.awp_hrjobs_form span.absp_contact_mandatory {
    color: red;
    margin-right: 5px !important;
}
.awp_hrjobs_form input#awp_jobsform_submit {
    background: #005ab4;
    color: #fff;
    padding: 7px 20px !important;
    font-size: 15px;
    width:auto !important;
}
.awp_hrjobs_form .formsection label {
    padding: 5px 0;
    color: #000 !important;
    font-size: 14px !important;
    text-align: left !important;
    font-weight: bold !important;
}
.awp_hrjobs_form input {
    border: 1px solid #e8e8e8 !important;
    padding: 5px !important;
    border-radius:3px;
    width: 100%;
    background: #fff;
    color: #000;
}
.awformmain select {
    color: #000;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #e8e8e8 !important;
}
.awformmain textarea {
    color: #000;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #e8e8e8 !important;
    resize:none !important;
}
.latest-news h2.brdlftlogo {
    margin-top:50px;
}
.awp_contactform_maindiv_ContactUs input,
.awp_contactform_maindiv_ContactUs select,
.awp_contactform_maindiv_ContactUs textarea {
    margin-left:0 !important;
    width:100% !important
}
.awp_contactform_maindiv_ContactUs input.awp_contactform_submit_ContactUs {
    width:auto !important
}
.member-sec ul {
    list-style: none;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    text-align:Center;
}
.member-sec ul li {
    width: 33%;
    display: inline-flex !important;
    vertical-align: middle;
    text-align: center;
    float:none !important;
}
.member-sec ul li .log-pt {
    width:100%;
}
.leadership ul {
    list-style: none;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    text-align:Center;
}
.leadership ul li {
    width:19% !important;
    display: inline-flex !important;
    vertical-align: middle;
    text-align: center;
    float:none !important;
}
.leadership ul li .log-pt {
    width:100%;
}

/***/
@media(max-width:1350px) {
    a.user-icon {
        margin-top: 24px;
    }
}
@media(max-width:1100px) {
    a.user-icon {
        margin-left: 12px;
    }
}
@media(max-width:880px) {
    .nav.navbar-nav li a {
        font-size: 9px !important;
    }
    a.user-icon {
        margin-top: 23px !important;
        margin-left: 10px;
    }
    .navbar-nav>li>a .caret:before {
        top: 10px !important;
        position: absolute;
        content: "\f0d7" !important;
    }
}
@media(max-width:790px) {
    .nav.navbar-nav>li {
        padding: 0 6px;
    }
}
@media(max-width:767px) {
    .login-bg-sec .login-sec {
        background: none !important;
        border-radius: 0px !important;
        width: 100% !important;
        float: left !important;
        padding: 0px !important;
        max-width: 100% !important;
    }
    .cleanlogin-container {
        background: #f6f6f6;
        border-radius: 40px;
        width: 100%;
        float: right;
        padding: 40px;
        max-width: 100%;
    }
    .login-bg-sec {
        background: none !important;
    }
    .login-bg-sec .social-login {
        background-image: url(http://www.cloudbyte.com/wp-content/uploads/2017/07/dwn-bg.jpg);
        background-size: cover;
        background-position: 54% 51px !important;
        margin-bottom: -5px;
        padding: 40px 0px;
        display: inline-block;
        width: 100%;
        background-repeat: no-repeat;
    }
    .social-login .social-links {
        padding: 0px 0px 30px 0px !important;
    }
    .login-bg-sec .col-lg-9.row {
        padding: 0px !important;
    }
    .login-bg-sec {
        padding: 60px 0px 0px 0px !important;
    }
    .login-bg-sec .btn-register-now {
        margin-top: 35px;
    }
}
@media(max-width:600px) {
    .login-bg-sec .btn-register-now,
    .login-bg-sec .btn-register-now:hover,
    .login-bg-sec .btn-register-now:focus {
        padding: 7px 25px;
        color: #fff;
        font-size: 16px;
    }
    p.lg-txt {
        font-size: 11px !important;
    }
    .login-bg-sec .social-links a img {
        width: 35px !important;
    }
    table.cnss-social-icon tr td {
        float: left !important;
        width: 50% !important;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size: 14px !important;
    }
}
@media(max-width:500px) {
    .login-bg-sec .social-login {
        background-position: 0% 43px;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size: 12px !important;
    }
}
@media(max-width:470px) {
    p.lg-txt {
        font-size: 9px !important;
    }
    .login-bg-sec .social-links a img {
        width: 35px !important;
    }
    .login-bg-sec .social-login {
        background-position: 77% 39px !important;
    }
}
@media(max-width:430px) {
    .bg-wht.welcome .nav-pills li {
        width: 100% !important;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size: 13px !important;
    }
}
@media(max-width:380px) {
    p.lg-txt {
        font-size: 7px !important;
    }
}

}

/*****/
@media(max-width:1360px) {
    .leadership ul li {
        width: 19% !important;
        margin: 0px 0px 0px 0px !important;
    }
}
@media(max-width:1350px) {
    a.user-icon {
        margin-top: 29px;
    }
    .panel-group.careers {
        margin-top: 55px;
    }
}
@media(max-width:1280px) {
    .careers-section .careers-service center {
        padding:0px 15px;
    }
    .panel-group.careers {
        margin-top: 43px;
    }
    .careers-section .careers-service h3 {
        font-size: 16px !important;
        line-height: 24px;
    }
}
@media(max-width:1250px) {
    .careers-section .job-list .job-sec .job-bx {
        xmargin: 10px 10px;
    }
}
@media(max-width:1200px) {
    .careers-section .careers-service h3 {
        font-size: 16px !important;
    }
}
@media(max-width:1199px) {
    .careers-section .careers-service h3 br {
        display:none;
    }
    .careers-section .job-list .job-sec .job-bx {
        xmargin: 10px 0px;
        margin-top:10px;
        margin-bottom:10px;
        width:100%;
    }
    a.user-icon .user-name {
        margin: 2px 0px 0px 10px;
        font-size: 11px;
    }
    .careers-section .job-list .job-sec a,
    .careers-section .job-list .job-sec a:hover,
    .careers-section .job-list .job-sec a:focus {
        font-size: 17px !important;
        margin-bottom: 5px;
    }
    .careers-section .job-list .job-sec a br {
        display:none;
    }
    .careers-section .job-list .job-sec p {
        font-size: 16px !important;
    }
}
@media(max-width:1100px) {
    a.user-icon {
        margin-left:12px;
        margin-top: 22px;
    }
    .leadership ul li {
        width: 19% !important;
    }
    .navbar-default .navbar-brand {
        width: 240px;
        margin-top: 10px;
    }
    #menu-header-menu {
        margin-top: 15px !important;
    }
}
@media(max-width:991px) {
    .nav.navbar-nav li a {
        font-size: 9px !important;
    }
    .leadership ul li {
        width: 47% !important;
    }
    .careers-section .careers-service center {
        padding:0px 0px;
    }
    .member-sec ul li {
        width: 47%;
    }
}
@media(max-width:880px) {
    .careers-section .careers-service h3 {
        font-size: 15px !important;
        line-height: 25px;
    }
    .nav.navbar-nav li a {
        font-size: 7px !important;
    }
    .careers-section .job-list .job-sec .job-bx {
        min-height:140px;
    }
    a.user-icon {
        margin-top: 19px !important;
        margin-left: 10px;
    }
    .navbar-nav>li>a .caret:before {
        top: 8px !important;
        position: absolute;
        content: "\f0d7" !important;
    }
    a.user-icon .user-name {
        margin: 4px 0px 0px 7px;
        font-size: 8px;
    }
}
@media(max-width:790px) {
    .nav.navbar-nav>li {
        padding: 0 6px;
    }
}
@media(max-width:767px) {
    a.user-icon .user-name {
        margin: 0px 0px 0px 7px;
        font-size: 13px;
    }
    .careers-service img {
        width: 80px !important;
    }
    .panel-group.careers {
        margin-top: 43px !important;
    }
    .careers-section {
        padding: 15px 0px;
        display: inline-block;
        width: 100%;
    }
    ul.dropdown-menu.login {
        width: 115px !important;
    }
    ul.dropdown-menu.login {
        float: left !important;
        left: -10px !important;
        right: 0 !important;
        margin-top: 7px!important;
    }
    .drp-two {
        display: block !important;
        float: left;
    }
    .drp-one {
        display:none!important;
        float: left!important;
    }
    .login-bg-sec .login-sec {
        background: none !important;
        border-radius:0px !important;
        width: 100% !important;
        float: left !important;
        padding:0px !important;
        max-width: 100% !important;
    }
    .careers-section .job-list .job-sec a,
    .careers-section .job-list .job-sec a:hover,
    .careers-section .job-list .job-sec a:focus {
        font-size:17px !important;
        margin-bottom: 5px;
    }
    .careers-section .job-list .job-sec p {
        font-size: 14px !important !important;
    }
    .careers-section .job-list .job-sec {
        margin-bottom: 25px;
    }
    .careers-section .job-list .job-sec .job-bx {
        min-height: initial;
    }
    .nav.navbar-nav li a {
        font-size: 11px !important;
    }
    .cleanlogin-container {
        background: #f6f6f6;
        border-radius: 40px;
        width: 100%;
        float: right;
        padding: 40px;
        max-width: 100%;
    }
    .login-bg-sec {
        background:none !important;
    }
    .login-bg-sec .social-login {
        background-image: url(http://www.cloudbyte.com/wp-content/uploads/2017/07/dwn-bg.jpg);
        background-size: cover;
        background-position: 69% 88px !important;
        margin-bottom: -5px;
        padding: 40px 0px;
        display: inline-block;
        width: 100%;
        background-repeat: no-repeat;
    }
    .social-login .social-links {
        padding:0px 0px 30px 0px !important;
    }
    .login-bg-sec .col-lg-9.row {
        padding:0px !important;
    }
    .login-bg-sec {
        padding: 60px 0px 0px 0px !important;
    }
    .login-bg-sec .btn-register-now {
        margin-top:35px;
    }
}
@media(max-width:600px) {
    .careers-section .careers-service h1 {
        font-size: 22px !important;
    }
    .leadership ul li {
        width: 100% !important;
    }
    .member-sec ul li {
        width:100%;
    }
    .panel-group.careers .panel-title>a {
        font-size: 14px !important;
        line-height: 21px;
    }
    .careers-section .careers-service h3 {
        font-size: 14px !important;
        line-height: 24px;
    }
    .login-bg-sec .btn-register-now,
    .login-bg-sec .btn-register-now:hover,
    .login-bg-sec .btn-register-now:focus {
        padding: 7px 25px;
        color: #fff;
        font-size: 16px;
    }
    p.lg-txt {
        font-size: 13px !important;
    }
    .login-bg-sec .social-links a img {
        width:35px !important;
    }
    table.cnss-social-icon tr td {
        float:left !important;
        width:50% !important;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size:14px !important;
    }
}
@media(max-width:500px) {
    .login-bg-sec .social-login {
        xbackground-position: 0% 43px;
    }
    .login-sec .theChampLogin {
        height: 42px!important;
        width: 42px!important;
    }
    .login-sec .theChampFacebookLoginSvg:after {
        margin-left: -9px !important;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size: 12px !important;
    }
    .careers-section .job-list .job-sec a,
    .careers-section .job-list .job-sec a:hover,
    .careers-section .job-list .job-sec a:focus {
        font-size:14x;
        margin-bottom: 5px;
    }
    .careers-section .job-list .job-sec p {
        font-size: 13px !important;
    }
}
@media(max-width:470px) {
    p.lg-txt {
        font-size: 13px !important;
    }
    .login-bg-sec .social-links a img {
        width:35px !important;
    }
    .login-bg-sec .social-login {
        background-position: 77% 80px !important;
    }
}
@media(max-width:430px) {
    .careers-section .job-list .job-sec a,
    .careers-section .job-list .job-sec a:hover,
    .careers-section .job-list .job-sec a:focus {
        font-size:12px !important;
        margin-bottom: 5px;
    }
    .careers-section .job-list .job-sec p {
        font-size: 11px !important;
    }
    .bg-wht.welcome .nav-pills li {
        width:100% !important;
    }
    .bg-wht.welcome .nav-pills li h4 {
        font-size: 13px !important;
    }
    .navbar-default .navbar-brand {
        width: 180px !important;
        margin-top: 13px !important;
    }
}
@media(max-width:380px) {
    p.lg-txt {
        font-size:13px !important;
    }
}
@media(max-width:1024px) {
    .btn-lg {
        font-size:15px;
    }
    .latest-news h2.brdlftlogo {
        margin-top:0
    }
    .bg-wht.welcome .nav-pills li img {
        width:120px
    }
    .welcome {
        padding-top:30px;
    }
    .news .news-sec {
        padding:30px 60px
    }
    .latest-news-section .news-sec {
        float:left;
        width:55%;
        padding:30px
    }
    .latest-news-section .success-sec {
        width:45%;
    }
}
@media(max-width:900px) {
    .latest-news .news-sec .media-body {
        float: left !important;
        width: 80% !important
    }
    .latest-news .news-sec .media-left {
        float: left !important;
        width: auto !important;
    }
    .latest-news .news-sec {
        padding:20px 35px !important
    }
    .latest-news h2.brdlftlogo {
        margin-bottom:0
    }
}
@media(max-width:768px) {
    .text-middle {
        display:inline-block !important
    }
    #elastiStor .item .col-sm-6 {
        width:100%;
        margin-top:0px;
        padding-top:0;
        text-align:center;
    }
    #elastiStor .item .col-sm-6 img {
        width:50%
    }
    .textmiddle.ourprod {
        justify-content: flex-start;
        align-items: flex-start;
        align-content: stretch;
    }
    .mob-wd {
        width:100%;
        margin-top:25px;
        text-align:center;
    }
    .textmiddle .tbl-cell {
        width:100% !important;
    }
    .latest-news .success-sec .btn-wht,
    .latest-news .success-sec .item {
        margin-top:0 !important
    }
    .log-pt {
        padding:0
    }
    .video-sec iframe {
        height:50% !important;
        min-height:50% !important
    }
    .customer-slide,
    .join-us-img,
    .read-blog-img {
        min-height:300px
    }
}
@media(min-width:767px) {
    .containerfull {
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        align-items:stretch;
        align-content:stretch;
        height:100%;
    }
}