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

#maximage {
    position: relative;
    width: 100% !important;
    overflow: hidden;
    height: 100vh !important;
    background: #fff;
    z-index: -1;
    border: 60px solid #f6f1ec;
}

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;
    right: 120px;
    bottom: 100px;
    margin: auto;
    text-align: center;
    padding: 0;
    z-index: 7;

}
#cycle-nav ul {
    list-style-type: none;
    padding: 0;
    margin: auto;
    display: inline-block;
}
#cycle-nav li {
    float: left;
    text-align: center;
}
#cycle-nav li a {
    position: relative;
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    opacity: .5;
    color: #fff;
}

#cycle-nav li.activeSlide a {
    opacity: 1;
}

@keyframes slide {
    from {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.01);
        transform: scale(1.1, 1.1);
    }

}

@-webkit-keyframes slide {
    from {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.03, 1.03);
        -webkit-transform: scale(1.03, 1.03);
        transform: scale(1.03, 1.03);
    }
}