.jcarousel {
    width: 100%;
    /*margin-left: 10px;*/
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}

.jcarousel .image {
    margin-right: 20px;
    position: relative;
}

.jcarousel .title {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 -5px 7px rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.jcarousel .title a {
    color: #fff;
    padding: 4px;
    font-size: 11px;
    display: block;
}

.jcarousel img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.jcarousel-control-prev,
.jcarousel-control-next {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    margin: 0 auto;
    z-index: 100;
    top: 42%;
}

.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    background-color: rgba(63, 63, 63, 0.80);
}

.jcarousel-control-prev {
    left: 10px;
    background: url('images/arrow-left.png') no-repeat center center;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.jcarousel-control-next {
    right: 10px;
    background: url('images/arrow-right.png') no-repeat center center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.jcarousel-control-prev:hover {
    background-image: url('images/arrow-left-hover.png');
}

.jcarousel-control-next:hover {
    background-image: url('images/arrow-right-hover.png');
}

.jcarousel-pagination {
    position: absolute;
    top: 8px;
    right: 10px;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    height: 8px;
    width: 8px;
    line-height: 10px;
    background: #fff;
    color: #b8b5b5;
    border-radius: 10px;
    text-indent: -9999px;
    margin: 0 5px;
    -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: #b8b5b5;
    color: #fff;
    opacity: 1;
    -webkit-box-shadow: 0 0 2px #F0EFE7;
    -moz-box-shadow: 0 0 2px #F0EFE7;
    box-shadow: 0 0 2px #F0EFE7;
}
