.jcarousel-container {
    height: 194px;
}

.jcarousel-container-horizontal {
    width: 624px;
    height: 194px;
    padding: 0 32px;
    border: 0px solid blue;
}

.jcarousel-clip-horizontal {
    width: 624px;
    border: 0px solid green;
    text-align: left;
}

.jcarousel-item {
    width: 152px;
    height: 194px;
    background-position: top center;
    background-repeat: no-repeat;
    border: 0px solid red;
    display: inline;
    padding: 0;
    line-height: 100%;
    position: relative;
}

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

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-prev-horizontal, .jcarousel-next-horizontal {
   position: absolute;
   top: 40px;
   width: 32px;
   height: 32px;
   cursor: pointer;
   border: 0px solid blue;
}

.jcarousel-prev-horizontal {
    left: 5px;
    /*background: transparent url(prev-horizontal.png) no-repeat 0 0;*/
}

.jcarousel-next-horizontal {
    right: 5px;
    /*background: transparent url(next-horizontal.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 {
    cursor: default;
    background-position: -96px 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 {
    cursor: default;
    background-position: -96px 0;
}

