/* Tiny Scrollbar */
.scrollbar_box {
	width: 100%;
	position: relative;
}
.scrollbar_box .viewport {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.scrollbar_box .overview {
	list-style: none;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0;
	margin: 0;
	width: 100%;
}
.scrollbar_box .scrollbar {
	background: #e5e5e5;
	position: absolute;
	right:7px;
	float: right;
	width: 2px;
	z-index:4;
}
.scrollbar_box .track {
	height: 100%;
	width: 13px;
	position: relative;
	padding: 0 1px;
}
.scrollbar_box .thumb {
	background:#dedede;
	border-radius:10px;
	height: 20px;
	width: 8px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	left:-3px;
}
.scrollbar_box .thumb .end {
	overflow: hidden;
	height: 5px;
	width: 25px;
}
.scrollbar_box .disable {
	display: none;
}
.noSelect {
	user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
}
