.jcarousel-scope {
    position: relative;
    width: 600px;
    padding: 20px 40px 0px 40px;
}

.jcarousel-list li {
    width: 130px;
    height: 115px;
    margin-right: 26px;
}

/**
 * Custom item formatting.
 */
.jcarousel-list li img {
    border: 0px solid #808080;
}

.jcarousel-list li img:hover {
    border: 1px solid #d66e00;
}

/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 *
 * We set display:none to hide them from browsers having
 * javascript. jCarousel will show them automatically.
 */
.jcarousel-next {
    position: absolute;
    top: 50px;
    right: 0px;
    cursor: pointer;
}

.jcarousel-next-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.jcarousel-prev {
    position: absolute;
    top: 50px;
    left: 5px;
    cursor: pointer;
}

.jcarousel-prev-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

