/* Tiny Scrollbar */
#scrollbar1 {
	width: 100%;
}
#scrollbar1 .viewport {
	margin:0 20px 0 0;
	max-height: 105px;
	overflow: hidden;
	position: relative;
}
#scrollbar1 .overview {
	list-style: none;
	position: relative;
	left: 0;
	top: 0;
	padding: 0;
	margin: 0;
	width:100%;}
#scrollbar1 .scrollbar {
	background: #acacac 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:#acacac;
	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;
}