/* table cell containing scroller, good idea to set its width and height  */
td#scroller1 { width:165px; height:155px }

/* holder div contains scroller. set height and width of the scroller*/
#holder1 { position:relative; width:165px; height:155px; z-index:100}

div#wn1 { 
  position:absolute; width:165px; height:155px; z-index:1;clip:rect(0, 165px, 155px, 0); overflow:hidden;
  }
div#cnt1 {
	position:absolute;
	z-index:1;
	left: 0px;
	top: 0px;
}
/* Set width and height of item same as width and height of scroller (wn1) */
div.item {
	width:165px;
	height:200px;
	font-size:90%;
	color:#ffffff; background:#5d5c5c url(images/heading_textbg.jpg) repeat-x top;
}
div.item p{padding-bottom:0px; margin:0px;line-height:1.1em}