/* Tiny Scrollbar */
.scrolls { width: 920px; margin: 20px 0 10px;  }
.scrolls .viewport { width: 900px; height: 550px; overflow: hidden; position: relative; }
.scrolls .overview { text-align:center; list-style: none; position: absolute; left: 0; top: 0; padding: 5px 0 0;; margin: 0; }
.scrolls .scrollbar{ 
 	background: none; /* url("../images/bg-scrollbar-track-y.png") no-repeat scroll 0 0 transparent; */
    float: right;
    position: relative;
    right: 5px;
    width: 15px;
	z-index: 100;
}

.scrolls .track { 
	background: none repeat scroll 0 0 #111111;
    border-radius: 6px;
    box-shadow: 0 0 3px #41717F;
    height: 100%;
    margin-left: 7px;
    padding: 0 1px;
    position: relative;
    width: 5px;
	}
.scrolls .thumb { 
	background: url("../images/bg-scrollbar-thumb.png") no-repeat scroll center 50% #41717F;
    border-radius: 5px;
    cursor: pointer;
    height: 20px;
    left: -6px;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 19px; 
}

.scrolls .thumb .end { background: #41717F; overflow: hidden; height: 5px; width: 25px; display:none; }
.scrolls .thumb:hover, .scrolls .thumb:active, .scrolls .thumb:hover .end{background-color:#FFCD05;}

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