/* scrollable div area */
#scrollable1 {
	float: left;
	width: 300px;
	height: 200px;
	border: 1px solid #ccc;
	overflow: hidden;
	white-space: nowrap;
}

/* vertical track */
#track1 {
	float: left;
	width: 15px;
	height: 200px;
	margin-left: 10px;
	background-color: #ccc;
}

/* vertical track handle */
#handle1 {
	width: 15px;
	height: 20px;
	background-color: #f00;
	cursor: move;
}