.jcarousel-container {
    position: relative;
}
.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}
.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    width:  730px;
    height: 410px;
}
.jcarousel-list li {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 730px;
    height: 410px;
    position: relative;
}
.jcarousel-next {
    z-index: 3;
    display: none;
}
.jcarousel-prev {
    z-index: 3;
    display: none;
}
.jcarousel-container {
    -moz-border-radius: 10px;
}
.jcarousel-clip {
    width:  730px;
    height: 410px;
}
.jcarousel-item-placeholder {
    background: #000 url(../images/loader.gif) 50% 50% no-repeat;
}
/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 40%;
    right: 6px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: transparent url(../images/scroll_right.png) no-repeat 0 0;
}
.jcarousel-next-horizontal:hover {
    background-position: -16px 0;
}
.jcarousel-next-horizontal:active {
    background-position: -32px 0;
}
.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -48px 0;
}
.jcarousel-prev-horizontal {
    position: absolute;
    top: 40%;
    left: 5px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: transparent url(../images/scroll_left.png) no-repeat 0 0;
}
.jcarousel-prev-horizontal:hover {
    background-position: -16px 0;
}
.jcarousel-prev-horizontal:active {
    background-position: -32px 0;
}
.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -48px 0;
}