/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel-wrapper {
    position: relative;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}

/**
 *  Horizontal navication buttons
 */
.jcarousel-next,
.jcarousel-prev {
    position:absolute;
    top:162px;
    width:17px;
    height:29px;
    cursor: pointer;
}
    .jcarousel-next {
        background: url("/images/design/slide_next.png") no-repeat scroll 0 0 transparent;
        right:33px;
    }
    .jcarousel-prev {
        background: url("/images/design/slide_prev.png") no-repeat scroll 0 0 transparent;
        left:33px;
    }


.jcarousel-next:hover,
.jcarousel-next:focus,
.jcarousel-next:active,
.jcarousel-prev:hover,
.jcarousel-prev:focus,
.jcarousel-prev:active {
    background-position:0 -29px;
}

.jcarousel-next-disabled,
.jcarousel-next-disabled:hover,
.jcarousel-next-disabled:focus,
.jcarousel-next-disabled:active {
    cursor: default;
}

.jcarousel-prev-disabled,
.jcarousel-prev-disabled:hover,
.jcarousel-prev-disabled:focus,
.jcarousel-prev-disabled:active {
    cursor: default;
}
