@charset "UTF-8";

.JScustomScroll .jspVerticalBar {
	background: none;
	width: 17px;
	
}
.JScustomScroll .jspHorizontalBar {
	background: none;
	height: 17px;
}

.JScustomScroll .jspTrack {
	background: #313131;
	box-shadow:0 0 1px 1px #333333 inset, 1px 1px 1px 1px #181818 inset;
}
	.JScustomScroll .jspHorizontalBar .jspTrack{
		background: -moz-linear-gradient(left,  #313131 0%, #000000 100%);
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,#313131), color-stop(100%,#000000));
		background: -webkit-linear-gradient(left,  #313131 0%,#000000 100%);
		background: -o-linear-gradient(left,  #313131 0%,#000000 100%);
		background: -ms-linear-gradient(left,  #313131 0%,#000000 100%);
		background: linear-gradient(to right,  #313131 0%,#000000 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#000000',GradientType=1 );
	}
	.JScustomScroll .jspVerticalBar .jspTrack{
		background: -moz-linear-gradient(top,  #313131 0%, #010101 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#313131), color-stop(100%,#010101));
		background: -webkit-linear-gradient(top,  #313131 0%,#010101 100%);
		background: -o-linear-gradient(top,  #313131 0%,#010101 100%);
		background: -ms-linear-gradient(top,  #313131 0%,#010101 100%);
		background: linear-gradient(to bottom,  #313131 0%,#010101 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#010101',GradientType=0 );
	}

.JScustomScroll .jspDrag {
	position:relative;
	box-shadow:2px 2px 2px -1px #000000;
}
	.JScustomScroll .jspHorizontalBar .jspDrag{
		background:url(bg_drag_h.png) repeat-x;
		
		height:15px;
		margin-top:1px;
	}
	.JScustomScroll .jspVerticalBar .jspDrag{
		background:url(bg_drag_v.png) repeat-y;
		
		width:15px;
		margin:auto;
	}

.JScustomScroll .jspCorner{
	background:none;
}

.JScustomScroll .jspDrag .jspDragTop{
	height:2px;
	width:15px;
	background:url(bg_drag.png) top left no-repeat;
	position: absolute;
	top:0px;
	left:0px;
}
.JScustomScroll .jspDrag .jspDragBottom{
	height:2px;
	width:15px;
	background:url(bg_drag.png) bottom left no-repeat;
	position: absolute;
	bottom:0px;
	left:0px;
}
.JScustomScroll .jspDrag .jspDragLeft{
	height:15px;
	width:2px;
	background:url(bg_drag.png) top left no-repeat;
	position: absolute;
	top:0px;
	left:0px;
}
.JScustomScroll .jspDrag .jspDragRight{
	height:15px;
	width:2px;
	background:url(bg_drag.png) top right no-repeat;
	position: absolute;
	top:0px;
	right:0px;
}