/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/
body {
	background: #363124;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

div#hold	{ 
	position:relative; overflow:hidden;
	left:0px; top:0px; 
	width:500px; height:352px; 
	padding-left:0px;
	z-index:50; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:500px; height:352px; 
	clip:rect(0px 500px 352px 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; 
	left:0px; top:0px; 
	z-index:1; 
	padding-left:0px;
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; left:=-20px; top:0px;
  width:20px; height:352px; 
  font-size:1px; z-index:1;
  }
div#track { 
  position:absolute; left:0px; top:11px;
  width:20px; height:330px;
  background: #f2f0eb;
  z-index:1;
  }
div#dragBar {
  position:absolute; left:0px; top:0px;
  width:19px; height:40px;
  background:#c7ccd2;
  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 }  

