/* Styled scrollbars */
/* 颜色替换
 EB97B4:a9d0f2
 cc3f6e:78b2e3
 93004e:428bca
 7C2845:3071a9
 */
.iScrollHorizontalScrollbar {
	position: absolute;
	z-index: 9999;
	height: 7px;
	left: 2px;
	right: 8px;
	bottom: 0px;
	overflow: hidden;
}

.iScrollHorizontalScrollbar.iScrollBothScrollbars {
	right: 18px;
}

.iScrollVerticalScrollbar {
	position: absolute;
	z-index: 9999;
	width: 7px;
	bottom: 8px;
	top: 2px;
	right: 1px;
	overflow: hidden;
}

.iScrollVerticalScrollbar.iScrollBothScrollbars {
	bottom: 18px;
}

.iScrollIndicator {
	position: absolute;
	/*background: #78b2e3;*/
	background-color: #428bca;
	border-width: 1px;
	border-style: solid;
	/*border-color: #a9d0f2 #3071a9 #3071a9 #a9d0f2;*/
	border-color: #FFFFFF;
	border-radius: 3px;
	filter: alpha(opacity=80);
	opacity: .8;
}

.iScrollHorizontalScrollbar .iScrollIndicator {
	height: 100%;
	/*background: -moz-linear-gradient(left,  #78b2e3 0%, #428bca 100%);
	 background: -webkit-linear-gradient(left,  #78b2e3 0%,#428bca 100%);
	 background: -o-linear-gradient(left,  #78b2e3 0%,#428bca 100%);
	 background: -ms-linear-gradient(left,  #78b2e3 0%,#428bca 100%);
	 background: linear-gradient(to right,  #78b2e3 0%,#428bca 100%);*/
}

.iScrollVerticalScrollbar .iScrollIndicator {
	width: 100%;
	/*background: -moz-linear-gradient(top, #78b2e3 0%, #428bca 100%);
	 background: -webkit-linear-gradient(top,  #78b2e3 0%,#428bca 100%);
	 background: -o-linear-gradient(top, #78b2e3 0%,#428bca 100%);
	 background: -ms-linear-gradient(top, #78b2e3 0%,#428bca 100%);
	 background: linear-gradient(to bottom,  #78b2e3 0%,#428bca 100%);*/
}

/* end */