﻿/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
	min-height:100%;
	/*width:100% !important;*/
}
.left-bar .jspPane { overflow-x: hidden !important; left: 0 !important; }/*leftBar改left-bar carrie 20160329*/

.jspVerticalBar
{
	position: absolute;
	top:0;
	right:0px;
	width: 9px;
	height:100%;
	border-radius:10px;
	z-index: 400;
}

/*.left-bar .jspVerticalBar {
	left: 0;
	right:auto;
}*/

.jspHorizontalBar
{
	position: absolute;
	bottom:0px;
	left: 0;
	width:100%;
	height: 8px;
	/*background:#eeeeee;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#B2EEEEEE', endColorstr='#B2EEEEEE');
	background:rgba(238,238,238,0.7);*/
	border-radius:10px;
}
.left-bar.jspScrollable .jspHorizontalBar {
	display: none !important;
}
.form-hide .jspHorizontalBar { display: none !important; }

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	position: relative;
	background: #f7f7f7;
	padding: 0 1px;
	/*border-radius:10px;*/
}
.jspVerticalBar:hover .jspTrack, .jspVerticalBar:focus .jspTrack 
{
	background: #e7e7e7;
}

.jspHorizontalBar:hover .jspTrack, .jspHorizontalBar:focus .jspTrack 
{
	background: #e7e7e7;
	/*border-top:1px solid #cccccc;*/
}

.jspDrag
{
	background: #bbbbbb;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	border-radius:0px;
	border:1px solid #aaaaaa;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.jspDrag.jspHover, .jspDrag.jspActive
{
	background: #aaaaaa;
	border:1px solid #999999;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	/*background: #eeeef4;*/
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}