/* 
Styles for scrolling layers  
Specify width and height in hold and wn, and in clip for wn 
*/
div#hold	{ 
	position:relative; overflow:hidden;
	left:0px; top:0px; 	
	width:350px; height:480px; z-index:100;
}
div#wn	{ 
	position:absolute; overflow:hidden;
	left:0px; top:0px; 
	width:350px; height:480px; z-index:1; 
	clip:rect(0px, 350px, 480px, 0px);
}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
	position:relative;
	left:0px; top:0px;
	width:20px; height:480px; z-index:1;
	font-size:1px;
}
div#track { 
	position:relative;
	left:0px; top:0px;
	width:12px; height:440px; z-index:1;
	background-color:#fff;
	font-size:1px;
}
div#dragBar {
	position:relative;
	left:0px; top:0px;
	width:9px; height:30px; z-index:1;
	background-color:#C0272C;
	font-size:1px;
}  
div#up { 
	position:relative;
	left:0px; top:-3px;
	z-index:2; 
}  
div#down { 
	position:relative;
	left:0px; top:3px;
	z-index:3;
}  
