.jcarousel-wrapper {
    margin: 10px;
    position: relative;
    /*border: 10px solid #fff;*/
    /*    width: 603px;*/
    height: 100px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
    -moz-box-shadow: 0 0 2px #999;
    box-shadow: 0 0 2px #999;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
}

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

.jcarousel li {
    float: left;
    /*    width: 150px;*/
    height: 100px;
    margin-right: 3px;
}

.jcarousel img {
    max-height: 100px;
    height: 100px;
}

.jcarousel .loading {
    text-align: center;
    line-height: 90px; /* Fake vertical aligning */
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 28px;
    width: 16px;
    height: 16px;
    text-align: center;
    background: #4E443C;
    color: #000;
    font-size: 1.4em;
    font-weight: bold;
    font-family:arial;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 0.6;
    cursor:pointer;
}

.jcarousel-control-prev {
    left: -25px;
}

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

.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    text-decoration: none;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .7;
    cursor:pointer;
}