/* root element for scrollable */
.verticalUpgrade {

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

    /* vertical scrollers have typically larger height than width */
    height: 310px;
    width: 166px;
    background-color: #000;
}

/* 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 {
   
    
    
    
    height:100px;
}

/* elements inside single item */
.item img {
    float:left;
   margin-left: 10px;
    height:100px;
    width:166px;
}



/* the action buttons above the scrollable */
#actions {
    width:166px;
}

#actions a {
    font-size:11px;
    cursor:pointer;
    color:#666;
}

#actions a:hover {
    text-decoration:underline;
    color:#000;
}

.disabled {
    visibility:hidden;
}

.next {
    float:right;
}