/* optional container for scroller, to provide bgColor/border */
div#bg {
	width:170px;
	padding:3px;
	margin-left:0px;
	margin-top:20px;
	background-color:#CAE7EF;
	border:1px solid #CCC;
	-moz-border-radius:16px;
  }
/* scroller "window" 
   set width, height (and clip) to match values sent to constructor */
div#wn { position:absolute; 
  width:150px; z-index:1;
  overflow:hidden;
  -moz-border-radius:16px; 
  }

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:150px; color:#165655 }

/* styles for scroller content (read important instructions regarding collapsing margins!) */
div#cnt h3 { font-size:12px; margin:0 0 .5em 0 }  
div#cnt p { font-size:11px; margin:.5em 0 0 0 }
