.cycle-slideshow {
    padding: 0;
    position: relative;
    z-index: 700;
}

.cycle-slideshow img, .cycle-slideshow div.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: block;
}

.cycle-slideshow img:first-child {
    position: static;
    z-index: 100;
}

.cycle-caption { position: absolute; color: white; bottom: 15px; right: 15px; z-index: 700; }

.cycle-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 600;
    color: #000;
    padding: 10px 0;
    background-color: #fff;
    opacity: 0.8;
    filter: alpha(opacity=80);
    font-size: 1.2em;
    font-weight: bold;
}
.cycle-overlay .row { margin: 0; }
.cycle-prev, .cycle-next {
    position: absolute;
    top: 0;
    width: 30%;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 800;
    height: 100%;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
}
.cycle-prev span, .cycle-next span {
    top: 45%;
}
.cycle-prev span { left: 15%; }
.cycle-next span { right: 15%; }
.cycle-prev,
.cycle-next {
    position: absolute;
    top: 0;
    width: 20%;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 800;
    height: 100%;
    cursor: pointer;
}
.cycle-prev {
    left: 0;
    background: url("../img/arrow-slider-left.png") 50% 50% no-repeat;
}
.cycle-next {
    right: 0;
    background: url("../img/arrow-slider-right.png") 50% 50% no-repeat;
}
.cycle-prev:hover,
.cycle-next:hover {
    opacity: 1;
    filter: alpha(opacity=70);
}
.cycle-prev:hover, .cycle-next:hover { opacity: 0.7; filter: alpha(opacity=70) }
.disabled { opacity: 0.7; filter:alpha(opacity=70); }

.cycle-paused:after {
    content: 'Paused';
    color: white;
    background: black;
    padding: 10px;
    z-index: 500;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 10px;
    opacity: 0.7;
    filter: alpha(opacity=70);
}



