@charset "utf-8";
/* CSS Document */
#scrollpane{
	width:100%;
	height:820px; /*PJ: TODO need to detect viewport height?*/
	float:left;
	overflow:hidden;
	z-index:1;
}
.ScrollTrack{
	position:absolute;
	top:0px;
	height:100%;
	width:20px;
	background:#e8e8e7;/*DDDDDD*/
	cursor:pointer;
	z-index:2;
}
.Scroller{
	position:absolute;
	top:0px;
	width:10px;
	height:420px;
	background:#bdbdb9;/*333333*/
	z-index:3;
}
.ScrollTrack.right{
	right:0px;
}
.Scroller.right{
	right:0px;	
}
.ScrollTrack.left{
	left:0px;
}
.Scroller.left{
	left:0px;	
}
