/* Tiny Scrollbar */
#scrollbar{
}
#scrollbar .viewport {
	width: 288px;
	height: 214px;
	overflow: hidden;
	position: relative;
}
#scrollbar .overview {
	width:100%;
	position: absolute;
	right: 0;
	top: 0;
}
#scrollbar .scrollbar {
	background:#ddd;
	position: absolute;
	left:10px;
	width:8px;
	z-index:2;
}
#scrollbar .thumb {
	background:#bbb;
	height: 20px;
	width:8px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	left:0;
}
#scrollbar .thumb:hover {
	background:#999;
}
#scrollbar .disable {
	display: none;
}