.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;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    width: 100px;
    height: 104px;
}

.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-container-horizontal {
    width: 480px;
    padding: 0px 20px 0px 40px;
}

.jcarousel-clip-horizontal {
    width:  480px;
    height: 104px;
}

.jcarousel-item {
    width: 100px;
    height: 100px;
    padding-right: 20px;
}

.jcarousel-item-horizontal {
    margin-right: 0px;
}


.jcarousel-item-placeholder {
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 37px;
    right: 0px;
    width: 14px;
    height: 24px;
    cursor: pointer;
    background: transparent url(../pictures/album/static/b_next.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    position: absolute;
    top: 37px;
    right: 0px;
    width: 14px;
    height: 24px;
    cursor: default;
    background: transparent url(../pictures/album/static/b_next_dis.gif) no-repeat 0 0;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: 37px;
    left: 0px;
    width: 14px;
    height: 24px;
    cursor: pointer;
    background: transparent url(../pictures/album/static/b_prev.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    position: absolute;
    top: 37px;
    left: 0px;
    width: 14px;
    height: 24px;
    cursor: default;
    background: transparent url(../pictures/album/static/b_prev_dis.gif) no-repeat 0 0;
}

