﻿/* 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#wn{ 
	position:relative; 
	left:0px; top:0px; 
	width:700px; height:150px; 
	clip:rect(0px, 700px, 150px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1{ 
	/*position:relative; visibility:hidden; */
	position: relative;
	left:0px; top:0px; 
	z-index:1; 
	}
div#track 
{
	
  position:relative; left:0px; top:0;
  width:700px; height:4px; z-index:1;margin:0px;padding:0px;
  background-color:#ffffff;
  }
div#dragBar {
  position:relative; left:0px;top: 0px;
  width:20px; height:4px; z-index:2;margin:0px;padding:0px;
  background-color:#c20e1a;
  } 
