/* root element for scrollable */
.vertical {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 510px;
    width: 120px;
    border-top:1px solid #ddd;
    padding-bottom: 5px;
}

/* root element for scrollable items */
.items {
    position:absolute;

    /* this time we have very large space for height */
    height:20000em;
    margin: 0px;
}

/* single scrollable item */
.item {
    padding:10px 5px 15px;
    font-size:12px;
    overflow: hidden;
    vertical-align: middle;
}

/* elements inside single item */
.item img {
    float:left;
    margin-right:20px;
    height:180px;
    width:240px;
}

.item h3 {
    margin:0 0 5px 0;
    font-size:16px;
    color:#456;
    font-weight:normal;
}



.disabled {
    visibility:hidden;
}

.next {
    float:right;
}