/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/


/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; left:0; top:0;
	  width:11px; height:288px; 
  font-size:1px; z-index:1;
  }
div#track {
	position:absolute;
	left:5px;
	top:10px;
	width:1px;
	height:266px;
	background: url("img/track.gif") #fdeef5  repeat;/* #3e2f26 */
	z-index:1;
	
  }
div#dragBar {
  position:absolute; left:-5px; top:0px;
  width:2px; height:1px;
  background-color:#fdeef5;
  border-right: solid 1px #fdeef5;
  border-top: solid 1px #fdeef5;
  border-bottom: solid 1px #fdeef5;
  z-index:1;
  }  
div#up { position:absolute; left:0; top:0; z-index:2 }  
div#down { position:absolute; left:0; bottom:0; z-index:3 }  


div#hold	{
	position:relative;
	overflow:hidden;
	width:390px;
	height:400px;
	z-index:100;
	}
div#wn	{ 
	position:absolute;	
	left:0px; top:0px;
	width:390px; height:400px;
	clip:rect(0px, 395px, 400px, 0px); 
	overflow:hidden;
	z-index:1;
	}
div.contents {
	left:0px; top:0px;
	z-index:1;padding:12px;
	position:absolute; 
	}

