/*
 * 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: 0;
	width: 16px;
	height: 100%;
	background: red;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #dde;
	position: relative;
}

.jspDrag
{
	background: #bbd;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.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;
}

/* custom class */
.jspHorizontalBar {
	height: 7px;
	background: none;
	bottom: 15px;
	background: url(../../../img/pc/plugin/jscrollpane/bg.png) repeat-x transparent;
}
.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: none;
}
.jspTrack {
	/*background: #eee;*/
	background-color: none;
	background: none;
	position: relative;
}
.jspTrack:after {
	position: absolute;
	width: 100%;
	height: 1px;
	color: black;
}
.jspContainer { padding-bottom: 15px; }
.jspDrag {
	background: rgba(230,230,230, 1);
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
.scroll-pane:hover .jspDrag {
	background: rgba(180,180,180, 1);
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
.jspDrag {
	border-radius: 7px;
}
.scroll-pane-controller { position: relative; }
.scroll-pane-controller .sp-next {
		box-shadow: -4px 0 6px rgba(0,0,0,.3);
		background-image: url(../../../img/pc/plugin/bxslider/controls_r.png);
		background-position: 67% 50%;
		box-shadow: -4px 0 6px rgba(0,0,0,.3);
		position: absolute;
		right: -1px;
		top: 50%;
		margin-top: -35px;
		width: 24px;
		height: 50px;
		background-color: #fff;
		background-repeat: no-repeat;
		z-index: 99;
		border-radius: 4px 0 0 4px;

		cursor: pointer;
}
.scroll-pane-controller .sp-prev {
		box-shadow: -4px 0 6px rgba(0,0,0,.3);
		background-image: url(../../../img/pc/plugin/bxslider/controls_l.png);
		background-position: 33% 50%;
		box-shadow: 4px 0 6px rgba(0,0,0,.3);
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -35px;
		width: 24px;
		height: 50px;
		background-color: #fff;
		background-repeat: no-repeat;
		z-index: 99;
		border-radius: 0 4px 4px 0;
		cursor: pointer;
		display: none;
}
.scroll-pane-controller .sp-next:hover {
	background-image: url(../../../img/pc/plugin/bxslider/controls_r_on.png);
}
.scroll-pane-controller .sp-prev:hover {
	background-image: url(../../../img/pc/plugin/bxslider/controls_l_on.png);
}
.scroll-pane-controller .jspPager {
	position:absolute;
	bottom:10px;
	left:50%;
}
.scroll-pane-controller .jspPager li {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: rgba(183, 183, 183, 0.5);
	margin-right: 10px;
}
.scroll-pane-controller .jspPager li:hover {
	background: rgba(255, 162, 0, 0.7);
}