.scrollable {
    /* required settings */
    position:relative;
    overflow:hidden;
    /* my single image max = 870 x 580 */
    /* @@TBD change to single image max view width+50 & height+50 */
    width: 870px;
    height:630px;
}
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}
.items div {
    float:left;
}
/* single scrollable item */
.scrollable img {
    float:left;
    margin:0px 0px 0px 0px;
    /* @@TBD background-color for empty image space */
    background-color:#787878;
    padding: 0px;
}
/* active item */
.scrollable .active {
    opacity:1; 
    position:relative;
    cursor:default;
}
#actionButtons {
	text-align:center;
	margin-top:0px;
}

