/* http://www.menucool.com */

.sliderFrame, 
.sliderFrame div {
    box-sizing: content-box;
}

.sliderFrame 
{
    width: 1500px;
    margin: 0 auto; /*center-aligned*/
}

.jsImgSlider, 
.jsImgSlider .sliderInner {
    min-width: 1500px;
    width: 1500px;
    max-width: 1500px;
    height: 500px;
    border-radius: 3px;
}

.jsImgSlider {
    background-color: white;
    position: relative;
    margin: 0 auto; /*center-aligned*/
    transform: translate3d(0,0,0);
    box-shadow: 0px 1px 5px #999999;
}

/* the link style (if an image is wrapped by a link) */
.jsImgSlider a.imgLink, 
.jsImgSlider .video {
    z-index: 2;
    cursor: pointer;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.jsImgSlider .video {
    background: transparent url(video.png) no-repeat 50% 50%;
}

/* Caption styles */
.jsImgSlider .mc-caption {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 10px 0;/* 10px will increase the height.*/
    left: 0px;
    bottom: 0px;top: auto;
    overflow: hidden;
    font: bold 14px/20px Arial;
    color:#EEE;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.jsImgSlider .mc-caption a {
    color:#FB0;
}
.jsImgSlider .mc-caption a: hover {
    color:#DA0;
}


/* ------ built-in navigation bullets wrapper ------*/
.jsImgSlider .navBulletsWrapper { display: none; }
/* each bullet */
.jsImgSlider .navBulletsWrapper div { }
.jsImgSlider .navBulletsWrapper .active { }

/* --------- Others ------- */

.jsImgSlider img, 
.jsImgSlider>b, 
.jsImgSlider a>b {
    position: absolute; 
    border: none; 
    display: none;
}

.jsImgSlider .sliderInner {
    overflow: hidden;
    position: absolute; top: 0; left: 0;
}

.jsImgSlider > a, 
.jsImgSlider video, 
.jsImgSlider audio {
    display: none;
}

.jsImgSlider div {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}