/* optional container for scroller, to provide bgColor/border */
div#bg { position:relative; right:0px; top:0px; 
	z-index:100; width:200px; height:260px;
/* border:1px solid #cccccc;*/
  
  }
/* scroller "window" 
   set width, height (and clip) to match values sent to constructor */
div#wn { position:relative; left:2px; top:0px;
  width:200px; height:260px; z-index:1;
  clip: rect(0 200px 260px 0); overflow:hidden;
  }

div#cnt { position:relative; 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:200px; height:260px; color:#000000 }

/* styles for scroller content (read important instructions regarding collapsing margins!) */
div#cnt h3 {
	font-size:16px;
	margin:0 0 .5em 0;
/*	font-family: Verdana, Arial, Helvetica, sans-serif;*/
	text-align: left;
	color: #FF8800;

}  
div#cnt p {
	font-size:13px;
	margin:0em 0.1em 0 0;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
div#cnt ul { margin:.1em 0 0 0; padding:0; font-size:11px; }
div#cnt ul li { margin: .1em 0 0 1em; list-style-type:none }
