/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{
	position:relative;
	overflow:hidden;
	width:79px;
	height:571px;
	z-index:100;
	background-color:#fff;
	float:left;
	border-top-width: 2px;
	border-right-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #FF0000;
	border-right-color: #FF0000;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:79px; height:571px; 
	clip:rect(0px, 79px, 571px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
	}
	
div.content .image {
	border-bottom: 2px solid #FF0000;
	float:left; 
}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar {
	position:relative;
	right:2px;
	top:0;
	width:12px;
	height:571px;
	float: right;
	font-size:1px;
	z-index:6;
	background-image: url(/img/track.gif);
	background-repeat: repeat;
  }
div#track {
	position:absolute;
	left:0;
	top:12px;
	width:12px;
	height:547px;
	z-index:1;
	background-image: url(/img/track.gif);
	background-repeat: repeat;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:9px;
  background-color:#FF0000;
  z-index:1;
  }  
div#up { 
	position:absolute; 
	left:0; 
	top:0; 
	z-index:2
	background: url("/img/track.gif") #336 repeat; 
}  
div#down { 
	position:absolute; 
	left:0; 
	bottom:0; 
	z-index:3 
	background: url("/img/track.gif") #336 repeat;
}  
