/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-skin-vert .jcarousel-container {
    position: relative;
    padding:23px 0;
    text-align:left;
}

.jcarousel-skin-vert .jcarousel-clip {
    z-index: 2;
    padding: 0 2px;
    margin:0;
    overflow: hidden;
    position: relative;
}

.jcarousel-skin-vert .jcarousel-clip-vertical {
    height:265px;
    width:221px;
    position:relative;
}

.jcarousel-skin-vert .jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-skin-vert .jcarousel-list li, .jcarousel-skin-vert .jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 221px;
    height: 44px;
}

/**
 * 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".
 */
.jcarousel-skin-vert .jcarousel-next {
    z-index: 3;
    display: none;
    background:url("../../../images/vert_slide_down.png") top left no-repeat;
    width:221px;
    height:25px;
    position:absolute;
    bottom:0;
    left:5px;
    cursor:pointer;
}

.jcarousel-skin-vert .jcarousel-prev {
    z-index: 3;
    display: none;
    background:url("../../../images/vert_slide_up.png") top left no-repeat;
    width:221px;
    height:25px;
    position:absolute;
    top:2px;
    left:5px;
    cursor:pointer;
}

