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