/* Basic jQuery Slider (BJQS) v1.3 CSS */

.bjqs-wrapper {
    position: relative;
    overflow: hidden;
}

ul.bjqs {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.bjqs li {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 0;
}

ul.bjqs li:first-child {
    display: block;
    position: relative;
}

ul.bjqs li img {
    display: block;
    max-width: 100%;
}

/* Controls */
.bjqs-controls {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bjqs-prev,
.bjqs-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    z-index: 100;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    border-radius: 2px;
    text-decoration: none;
}

.bjqs-prev { left: 5px; }
.bjqs-next { right: 5px; }
.bjqs-prev:hover, .bjqs-next:hover { background: rgba(0,0,0,0.8); }

/* Markers */
.bjqs-markers {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 100;
}
.bjqs-markers li {
    display: inline-block;
    margin: 0 3px;
}
.bjqs-markers li a {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
}
.bjqs-markers li.active-marker a {
    background: rgba(255,255,255,0.95);
}
