/*
 * 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;
}
.jspVerticalBar{
	position: absolute;
	top: 0;
	right: 4px;
	width: 5px;
	height: 100%;
}
.jspHorizontalBar{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
}
.jspVerticalBar *, .jspHorizontalBar *{
	margin: 0;
	padding: 0;
}
.jspCap{
	display: none;
}
.jspHorizontalBar .jspCap{
	float: left;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag{
	float: left;
	height: 100%;
}
.jspArrow{
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jspArrowUp{
	background: url("../images/scroll.png") left top no-repeat;
}
.jspArrowDown{
	background: url("../images/scroll.png") left bottom no-repeat;
}
.jspArrow.jspDisabled{
	cursor: default;
	opacity: 0.50;
	filter: alpha(opacity = 50);
}
.jspVerticalBar .jspArrow{
	width: 16px;
	height: 15px;
}
.jspHorizontalBar .jspArrow{
	width: 5px;
	float: left;
	height: 100%;
}
.jspVerticalBar .jspArrow:focus{
	outline: none;
}
.jspCorner{
	background: #eeeef4;
	float: left;
	height: 100%;
}
* html .jspCorner{
	margin: 0 -3px 0 0;
}

/* ----- scroll-pane ----- */
.scroll-pane{
	overflow: auto;
	outline: none !important;
}
.scroll-pane .jspVerticalBar{
	right: 5px;
	width: 6px;
}
.scroll-pane .jspTrack{
	background: #ffffff;
	position: relative;
}
.scroll-pane .jspDrag{
	position: relative;
	top: 0;
	left: 0;
	width: 6px;
	border: 0;
	border-radius: 10px;
	background: #56565a;
	cursor: pointer;
}

/* ----- scroll-pane_2 ----- */
.scroll-pane_2{
	overflow: auto;
	outline: none !important;
}
.scroll-pane_2 .jspVerticalBar{
	right: 4px;
	width: 6px;
}
.scroll-pane_2 .jspTrack{
	background: #ffffff;
	position: relative;
}
.scroll-pane_2 .jspDrag{
	position: relative;
	top: 0;
	left: 0;
	width: 6px;
	border: 0;
	border-radius: 10px;
	background: #d3d1d2;
	cursor: pointer;
}

/* ----- horizontal-only ----- */
.horizontal-only{
	height: auto;
	/*max-height: 530px;*/
	max-height: 1600px; /**/
	overflow: hidden;
}
.horizontal-only .jspHorizontalBar{
	height: 15px;
}
.horizontal-only .jspTrack{
	border-radius: 15px;
	background: #d3d1d2;
	position: relative;
}
.horizontal-only .jspDrag{
	position: relative;
	top: 2px;
	left: 0;
	height: 11px;
	border: 0;
	border-radius: 15px;
	background: #979597;
	cursor: pointer;
}