.jcarousel {
    position: relative;
    overflow: hidden;
    height: auto;
    margin: 0 -12px;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel li {
    margin-right: 0px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.jcarousel li figure{
    padding: 0 12px;
}
/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    top: 5px;
}

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

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

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    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: 10px;
    width: 10px;
    line-height: 10px;

    background: #fff;
    color: #4E443C;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;


    -webkit-box-shadow: 0 0 2px #4E443C;
    -moz-box-shadow: 0 0 2px #4E443C;
    box-shadow: 0 0 2px #4E443C;
}

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

    -webkit-box-shadow: 0 0 2px #F0EFE7;
    -moz-box-shadow: 0 0 2px #F0EFE7;
    box-shadow: 0 0 2px #F0EFE7;
}


.jcarousel-control-next::after {
    border: 2px solid #ffffff;
    bottom: 50%;
    content: "";
    display: inline-block;
    height: 13px;
    margin-bottom: -5px;
    position: absolute;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
    width: 13px;
}
.jcarousel-control-next::after {
    border-left: medium none;
    border-top: medium none;
    right: 7px;
}

.jcarousel-control-next{
    position: absolute;
    right: 0px;
    top:63px;
    background: #73bd64;
    color: #ffffff;
    width: 22px;
    height: 50px;
    z-index: 9;
}

.jcarousel-control-prev::after {
    border: 2px solid #ffffff;
    bottom: 18px;
    content: "";
    display: inline-block;
    height: 13px;
    position: absolute;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
    width: 13px;
}
.jcarousel-control-prev::after {
    border-right: medium none;
    border-bottom: medium none;
    right: 5px;
}

.jcarousel-control-prev{
    background: none repeat scroll 0 0 #9ea2a3;
    color: #ffffff;
    height: 50px;
    left: 0px;
    position: absolute;
    top: 63px;
    width: 22px;
    z-index: 9;
}

.jcarousel-wrapper{
    position: relative;
}