.jcarousel-wrapper {
    position: relative;
    margin: 50px 0;
    padding: 0 50px;
}

/** Carousel **/
.jcarousel {
    position: relative;
    overflow: hidden;
}
.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel li {
    width: 351px;
    margin: 0 37px;
    float: left;
}
/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 44px;
    height: 44px;
    background: #4E443C;
}

.jcarousel-control-prev {
    left: 0;
    background: url("../images/arrow.png") no-repeat 0 0;
}
.jcarousel-control-prev:hover {
    background: url("../images/arrow.png") no-repeat 0 -44px;
}

.jcarousel-control-next {
    right: 0;
    background: url("../images/arrow.png") no-repeat -44px 0;
}
.jcarousel-control-next:hover {
    background: url("../images/arrow.png") no-repeat -44px -44px;
}