.scrollbar_block
{
    height:100%;
	width: 100%;
    position: relative;
}

.scrollbar_block .viewport
{
    height: 100%;
    overflow:hidden;
    position:relative;
}

.scrollbar_block .overview
{
    list-style:none;
    position:absolute;
    left:0;
    top:0;
    margin:0;
    padding: 0px 10px 10px 0;
}

.scrollbar_block .scrollbar
{	
	position: absolute;
	background-position: 0 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 5px;
}

.scrollbar_block .track
{
    height:100%;
	width: 5px;
	position: relative;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
}

.scrollbar_block .thumb
{
	height:20px;
	width: 5px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background: #ccc;
	border-radius: 2px;
}

.scrollbar_block .thumb .end
{
    overflow:hidden;
    height:5px;
    width:25px;
}

.scrollbar_block .disable
{
    display:none;
}

.noSelect
{
    user-select:none;
    -o-user-select:none;
    -moz-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
}