.jcarousel-wrapper {
    float: left;
}

/** Carousel **/

/* Regular resolution: */
.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel, .jcarousel ul li img{
    width: 300px; /* do not use percents!!! */
}
/* Small resolution - mediaqueries */
@media screen and (min-width:801px) and (max-width:1199px) {
    .jcarousel, .jcarousel ul li img{
        width: 235px; /* do not use percents!!! */
    }
}
@media screen and (max-width:615px) {
    .jcarousel, .jcarousel ul li img{
        width: 235px; /* do not use percents!!! */
    }
}
@media screen and (min-width:616px) and (max-width:800px) {
    .jcarousel, .jcarousel ul li img{
        width: 170px; /* do not use percents!!! */
    }
}

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

.jcarousel li {
    float: left;
}
.jcarousel ul li span{
    display: block;
    position: relative;
    bottom: 20px;
    text-align: center;
    width: 100%;
    background-color: rgba(0,0,0,0.55);
    font-weight: bold;
    color: white;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    width: 30px;
    height: 30px;
    margin: 4px;
    text-align: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 1px #000;
    font: 24px/27px Arial, sans-serif;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}

.jcarousel-control-prev {
    float: left;
}

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

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    float: left;
    clear: left;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    
    font-size: 11px;
    line-height: 14px;
    min-width: 14px;
    
    background: #fff;
    color: #4E443C;
    border-radius: 14px;
    padding: 3px;
    text-align: center;
    
    margin-right: 2px;
    
    opacity: .75;
}

.jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}
