.custom-scroll-advanced_container {
	overflow: hidden !important;
	position: relative;
}

.custom-scroll-advanced_inner {
	overflow: scroll;
	height: 100%;
	*position: absolute; /* ie7 fix */
	*left: 0;
	*right: 0;
}
.custom-scroll-advanced_inner::-webkit-scrollbar { width: 0; height: 0; }
.custom-scroll-advanced_inner{ -ms-overflow-style: none; }

.custom-scroll-advanced_bar-y{
	cursor: default;
	position: absolute;
	border-radius: 0px;
	z-index: 1;
	background: #0096df;

	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.custom-scroll-advanced_bar-x {display: none!important;}
.custom-scroll-advanced_bar-y {
	top: 0;
	right: 0;
	width: 16px;
}
.custom-scroll-advanced_bar-x {
	left: 0;
	bottom: 1px;
	height: 16px;
}

/* changes */

.custom-scroll-advanced_track-y {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 16px;
	background: #eeeeee;
	border-radius: 2px;
	box-shadow: inset 0 0 2px rgba(0,0,0,.1);
	transition: box-shadow .3s;
}
.custom-scroll-advanced_track-y > .arrow {
	position: absolute;
	right: 0;
	width: 16px;
	height: 16px;
}
.custom-scroll-advanced_track-y > .top {
	top: 0;
	background: url(../img/scrollbar.jpg) no-repeat 0 0;
}
.custom-scroll-advanced_track-y > .bottom {
	bottom: -1px;
	background: url(../img/scrollbar.jpg) no-repeat 0 -17px;
}
.custom-scroll-advanced_track-y > .arrow:hover {
	box-shadow: none;
}

.custom-scroll-advanced_track-y:hover {
	box-shadow: inset 0 0 2px rgba(255,255,255,.2);
}

.custom-scroll-advanced_hidden-y > .custom-scroll-advanced_track-y,
.custom-scroll-advanced_hidden-y > .custom-scroll-advanced_bar-y {
	height: 100%;
	top: 0;
	visibility: hidden;
}
