
/* 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#holder1	{ 
	position:relative; /*overflow:hidden;*/
	/*width:200px; height:182px;*/ z-index:100;
	}
div#holder1 h2	
{
    position:relative;
    top:20px;
    font-size: 20px;
	}
	
	
div#wn1	{ 
	position:absolute;
	top:60px; 
	width:190px; height:205px;
	clip:rect(0px, 190px, 205px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1 { 
	position:absolute;
	z-index:1; 
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:absolute; visibility:hidden;
  left:188px; top:65px;
  width:11px; height:167px;
  font-size:1px; z-index:2
  }
div#track 
{
    display: none;
  position:absolute; left:0; top:14px;
  width:12px; height:152px;
  /*background-color: #fff;*/
  z-index:1
  }
div#dragBar {
  position:absolute; left:0; top:0;
  width:10px; height:20px;
  /*background-color:#ceced6;*/
  z-index:1
  }  
div#up { position:absolute; left:0; top:-53px; z-index:2 }  
div#down { position:absolute; left:0; top:220px; z-index:3 }

