/* Slideshow container */
.slideshow-container {
    max-width: 1100px;
    position: relative;
    margin: auto;
}

.slideshow-container a {
    display: block;
}

.slideshow-container a:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.slideshow-nav {
    text-align: center;
    clear: both;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

/* The dots/bullets/indicators */
.dot {
    /*cursor:pointer;*/
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    -ms-transition: background-color 0.6s ease;
    -o-transition: background-color 0.6s ease;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
}

.dot.active /*, .dot:hover*/ {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
