
.SlideShowAudio {
    position: relative;
    height: 200px;
}

/*@media (max-width:992px) {
    .SlideShowAudio {
        height:290px;
    }
}

@media (max-width:768px) {
           .SlideShowAudio {
        height:160px;
    }
}*/

    .SlideShowAudio ul {
        display: none;
    }


    .SlideShowAudio .img-effect {
        height: auto;
        max-width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: none;
    }

    .SlideShowAudio .div-play {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        background-image: url(img/play.png);
        width: 48px;
        height: 48px;
        border: 0;
        margin-left: -24px;
        margin-top: -24px;
        cursor: pointer;
        -webkit-transition: top 1s, left 1s; /* Safari */
        transition: top 1s, left 1s;
    }

        .SlideShowAudio .div-play.active {
            background-image: url(img/pause.png);
            top: 30px;
            left: 60px;
            width: 24px;
            height: 24px;
            background-size: 24px;
        }


    .SlideShowAudio .div-vol {
        position: absolute;
        z-index: 10;
        background-image: url(img/mute.png);
        top: 30px;
        left: 30px;
        width: 24px;
        height: 24px;
        background-size: 24px;
        border: 0;
        margin-left: -24px;
        margin-top: -24px;
        cursor: pointer;
        display:none;
    }

        .SlideShowAudio .div-vol.mute {
            background-image: url(img/vol.png);
        }

    .SlideShowAudio .div-controls {
        position:absolute;
        left:0;
        top:0;
        width:65px;
        height:35px;
        background-color:#000;
        opacity:0.6;
        filter:alpha(opacity=60);
        z-index:5;
        display:none;
    }