.jcarousel-wrapper {
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel img {
    display: block;
    width:100%;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 9px;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #eee;
    color: #999;
    text-decoration: none;
    font:32px Arial, sans-serif;
    line-height: 30px;
    font-size:14px;

}

.jcarousel-control-prev {
    right: 36px;
}

.jcarousel-control-next {
    right: 0;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom:-60px;
    left:0;
    right:0;
    margin: 0;
    z-index:99;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    height: 12px;
    width: 12px;
    line-height: 10px;
    margin:0 7px;

    background: rgba(0,0,0,0.2);
    border-radius: 100%;
    text-indent: -9999px;
}

.jcarousel-pagination a.active {
    background:rgba(0,0,0,0.5);
}


@media screen and (min-width:0px) and (max-width:768px) {

.jcarousel-control-prev {
    right: 51px;
}

.jcarousel-control-next {
    right: 15px;
}

.jcarousel-pagination {
    position: absolute;
    bottom:-60px;
    left:0;
    right:0;
    margin: 0;
    z-index:99;
}
}