/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 12;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 11;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
.jcarousel-next {
    z-index: 13;
    display: none;
}

.jcarousel-prev {
    z-index: 13;
    display: none;
}
.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 150px;
    height: 91px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */


/*
vartical
*/

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

.jcarousel-container-vertical {
    /*width: 150px;
    height: 100%;*/
    padding:0px;
}
.jcarousel-clip-vertical {
    width:  150px;
    height: 273px;
}
.jcarousel-next-vertical {
    position: absolute;
    /*bottom: -35px;
    left: 100px;*/
    z-index:20;
    left: 108px;
    top: 280px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("../images/info_board_arrow.png") no-repeat 0 0;
}
.jcarousel-next-vertical:hover {
    background-position: 2px;
}
.jcarousel-prev-vertical:hover {
    background-position: 2px;
}
.jcarousel-prev-vertical {
    position: absolute;
    left: 10px;
    top: 280px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("../images/info_board_arrow_left.png") no-repeat 0 0;
}
.jcarousel-prev-disabled-vertical{
    cursor:default;
    background: transparent url("../images/spacer.gif") no-repeat 0 0;
}
.jcarousel-next-disabled-vertical{
    cursor:default;
    background: transparent url("../images/spacer.gif") no-repeat 0 0;
}






