
/* for scroller background/border */ 
#bg {
  position: relative;
  z-index: 1000;
  width: 147px;
  height: 150px;
  border-color: #999;
  border-width: 1px;
  border-style: none; }

/* scroller "window" 
   set width, height (and clip) to match values sent to constructor */ 
div#wn {
  position: absolute;
  left: 0;
  top: 0;
  width: 147px;
  height: 150px;
  z-index: 1;
  clip: rect(0, 147px, 150px, 0);
  overflow: hidden; }

div#cnt {
  position: absolute;
  z-index: 1; }

/* layer that scrolls */ 
/* scroller items 
   set width and height to match scroller "window" 
   Be sure to set height adequate for your content! */ 
div#cnt div.item {
  width: 147px;
  height: 150px;
  color: #666; }

/* styles for scroller content (read important instructions regarding collapsing margins!) */ 
div#cnt div.item span {
  margin-top: 1em;
  display: block;
  text-align: right; }
