﻿/* root element for scrollable */
.vertical {  
                
                /* required settings */
                position:relative;
                overflow:hidden;             
                /* vertical scrollers have typically larger height than width */      
                height: 25px;      
                width: 410px;
                margin-top:10px;         
}

/* root element for scrollable items */
.scrollable2 .items {  
                position:absolute;   
                height:20000em;                  
                margin-top:7px;
}

/* single scrollable item */
.scrollable2 .item {

                margin:0px 0 6px 4px!important;
                padding:0 15px ;
                font-size:12px;
                height:23px;
}

/* elements inside single item */
.scrollable2 .item img {
                float:left;
                margin-right:20px;
                height:180px;
                width:240px;
}

.scrollable2 .item h3 {
                margin:0 0 5px 0;
                font-size:16px;
                color:#456;
                font-weight:normal;
}



/* the action buttons above the scrollable */
#actions {
                width:15px;
                margin:0px 0 10px 0; 
                margin-right:11px;
                margin-top:-22px;   
                display:inline;

}

#actions a {
                font-size:11px;                  
                cursor:pointer;
                color:#666;display:block;width:15px
}

#actions a:hover {
                text-decoration:underline;
                color:#000;
}

.disabled {
                visibility:hidden;                              
}

.next,.prev {
                float:right;
} 
.next{margin-top:13px}             
