/* Styles for scrolling layers  
	Specify width and height in hold and wn, and in clip for wn. 
	hold div height accommodates scrollbar in this example    
*/

div#hold	{ 
	position:relative; overflow:hidden;
	width:671px; height:210px;
	margin:0;
	}
div#wn	{ 
	position:absolute; 
	left:0; top:0; 
	width:671px; height:154px; 
	clip:rect(0px, 671px, 154px, 0px); 
	overflow:hidden;	
	z-index:3;
	margin:0;
	}
div#lyr1	{ 
	position:absolute; 
	left:0; top:0; 
	z-index:3;
	margin:0;
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:absolute; left:0; top:160px;
  width:671px; height:14px;
  font-size:1px; z-index:4;
  background: #FFF url('http://www.thekohlerstore.com/images/bg-scrollbar.gif') repeat-x;
  }
div#track { 
  position:absolute; left:0; top:0;
  width:671px; height:14px; z-index:5;
  background-color:#FFF;
  background-color:transparent;
  }
div#dragBar {
  position:absolute; left:13px; top:1px;
  width:74px; height:14px; z-index:6;
  background-color:#D6E4C0;
  background-image:url('http://www.thekohlerstore.com/images/explore-scrollbar.gif');
  background-repeat:no-repeat;
  cursor:pointer;
  }  