/* root element for scrollable */
.vertical {

    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 890px;
    width:240px;
    border-top:1px solid #ddd;
}

/* root element for scrollable items */
.items {
    
    position:absolute;
    /* this time we have very large space for height */
    height:20000em;
    margin: 0px;
}

.itemscontainer
{
float:left;
}
/* single scrollable item */
.item {
    border-bottom:1px solid #ddd;
    margin:10px 0px;
    padding:15px;
    font-size:12px;
    height:180px;

}

/* elements inside single item */
.item img {
    float:left;
    margin-right:20px;
    height:180px;
    width:230px;
}

.item h3 {
    margin:0 0 5px 0;
    font-size:14px;
    color:#456;
    font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
    width:234px;
    margin:30px 0 10px 0;
}

#actions a {
    font-size:12px;
    cursor:pointer;
    color:#666;
}

#actions apx{
    cursor:pointer;
    color:#666;
}

#actions a:hover {
    text-decoration:underline;
    color:#000;
}

.disabled {
    visibility:hidden;
}

.next {
    float:right;
}

.prev{
    float:left;
}