/*
 * 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 {
	width: 8px;
	height: 100%;
	position: absolute;
	right: 2px;
	top: 0;

}

.jspHorizontalBar {
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: 2px;
	left: 0;
}

.jspVerticalBar *,
.jspHorizontalBar * {
	padding: 0;
	margin: 0;
}

.jspCap {
	display: none;
}

.jspHorizontalBar .jspCap {
	float: left;
}

.jspTrack {
	position: relative;
}

.jspDrag {
	opacity: 0.5;
	cursor: pointer;
	background-color: #000;
	position: relative;
	left: 0;
	top: 0;

	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.store .current-content .jspDrag {
	background-color: #fff;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}

.jspArrow {
	background: #999;
	text-indent: -99999px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled {
	cursor: default;
}

.jspVerticalBar .jspArrow {
	height: 8px;
}

.jspHorizontalBar .jspArrow {
	width: 8px;
	height: 100%;
	float: left;
}

.jspVerticalBar .jspArrow:focus {
	outline: none;
}

.jspCorner {
	height: 100%;
	float: left;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0 -3px 0 0;
}

.jspDrag {
	filter: alpha(opacity = 50);
}
