.jcarousel-scope {
    position: relative;
    width: 345px;
    padding: 5px 33px;
}

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

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

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

/**
 * 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: 10px;
    right: 0px;
    cursor: pointer;
}

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

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

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

