/*! Version: 2.0.73 (12-Oct-2012) */
.mc-hide-scrolls {
    overflow: hidden
}

#maximage {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh !important;
    background: #000;
}
#maximageinfo {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 70vh !important;
    background: #000;
}
div.mc-image {
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: slide 9s linear;
    -webkit-animation-play-state: play;
    animation: slide 9s linear;
    animation-play-state: play;
    height: 100% !important;
}

.mc-old-browser .mc-image {
    overflow: hidden
}

#cycle-nav {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 30px
}

#cycle-nav ul {
    list-style-type: none
}

#cycle-nav ul li {
    width: 20px;
    height: 20px;
    margin: 4px;
    border-radius: 100%
}

#cycle-nav ul li a {
    background: #fff;
    float: left;
    height: 10px;
    margin: 4px;
    width: 10px;
    border-radius: 100%
}

#cycle-nav ul li.activeSlide {
    border: 1px solid #fff;
    border-radius: 100%
}

@keyframes slide {

        from {
        -ms-transform: scale(1, 1); /* IE 9 */
        -webkit-transform: scale(1, 1); /* Safari */
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.05, 1.05); /* IE 9 */
        -webkit-transform: scale(1.05, 1.05); /* Safari */
        transform: scale(1.05, 1.05);
    }
}

@-webkit-keyframes slide {
    from {
        -ms-transform: scale(1, 1); /* IE 9 */
        -webkit-transform: scale(1, 1); /* Safari */
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.05, 1.05); /* IE 9 */
        -webkit-transform: scale(1.05, 1.05); /* Safari */
        transform: scale(1.05, 1.05);
    }
}