<style type="text/css">

/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
.jcarousel-scope {
    position: relative;
    width: 245px;
    -moz-border-radius: 10px;
    background: #5AACF5;
    padding: 20px 40px;
}

/**
 * Similar styles will be applied by jCarousel. But we additionally
 * add it here for better displaying with browsers having
 * javascript disabled.
 */
.jcarousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jcarousel-list li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

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

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

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

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

</style>
