/* optional container for scroller, to provide bgColor/border */
div#bg { position:relative; left:50px; top:10px; 
  z-index:100; width:650px; height:220px;
  /*background-color:#eae3d3; border:1px solid;*/
  clear:both;
  }
  
/* scroller "window" 
   set width, height (and clip) to match values sent to constructor */
div#wn { position:relative; left:0px; top:0px;
  width:650px; height:220px; z-index:1;
  clip:rect(0, 650px, 220px, 0); overflow:hidden;
  padding: 0px 0px 0px 0px;
  
  }

div#cnt { position:relative; z-index:1; padding: 0px 0px 0px 0px; } /* 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:650px; height:220px;
	text-align:justify;
	font-size: 70%;
	}

/* styles for scroller content (read important instructions regarding collapsing margins!) */
div#cnt h3 { font-size:12px; text-align:center; margin:0 0 .5em 0 }  
div#cnt p { font-size:11px; margin:.5em 0 0 0 }
div#cnt ul { margin:.5em 0 0 0; padding:0; font-size:11px; }
div#cnt ul li { margin: .3em 0 0 1em; list-style-type:none }