.jcarousel-wrapper {
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%; margin-top: 10px;
}

.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;
	text-align:center;
}

.jcarousel img {
    display: block;
    max-width: 180px;
    max-height: 180px;
    margin: auto;
    width: 100%;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 29px;
    text-align: center;
    text-indent: -9999px;
}

.jcarousel-control-prev {
    background: url(../images/left.png) no-repeat -19px -14px;
    left: -1px;
        
}

.jcarousel-control-next {
	background:url(../images/right.png) no-repeat center;
    right: -1px;
        
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -35px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 12px;
    width: 12px;
    line-height: 10px;

    background: #FFB300;
    color: #4E443C;
    border-radius: 12px;
    text-indent: -9999px;
    margin-right: 7px;
}

.jcarousel-pagination a.active {
    background: #fff;
    color: #fff;
    opacity: 1;
}
