/* root element for scrollable */ .vertical { /* required settings */ position:relative; overflow:hidden; /* vertical scrollers have typically larger height than width */ height: 370px; width: 530px; } /* root element for scrollable items */ .items { position:relative; /* this time we have very large space for height */ height:20000em; margin: 0px; width:530px; } /* the action buttons above the scrollable */ #actions { width:530px; text-align:left; } #actions a { font-size:14px; cursor:pointer; color:#315788; font-family:trebuchet MS; font-weight:bold; } #actions a:hover { text-decoration:underline; color:#315788; } .disabled { visibility:hidden; } .prevPage { } .nextPage { }