/*
 * 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: 21px;
}

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

.jspCap {
	display: none;}

.jspHorizontalBar .jspCap {
	float: left;}

.jspTrack {
	width: 5px;
	margin: 0 auto;
	position: relative;
	background: #e1e1e1;
	border-radius: 3px;
}

.jspDrag {
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	background: #7d7d7d;
	border-radius: 3px;
}

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

.jspVerticalBar .jspArrow {
	width: 21px;
	height: 15px;
}
.jspVerticalBar .jspArrow.jspArrowUp {
	background: url(../img/sprite.png) -62px -212px no-repeat;
}
.jspVerticalBar .jspArrow.jspArrowDown {
	background: url(../img/sprite.png) -62px -197px no-repeat;
}

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

.color_white .jspArrow, .color_black .jspArrow, .color_blue .jspArrow {display: none;}
.color_white .jspTrack, .color_black .jspTrack, .color_blue .jspTrack {width: 15px; background: none;}
.color_white .jspTrack {border: 3px solid #000;}
.color_black .jspTrack {border: 3px solid #fff;}
.color_blue .jspTrack {border: 3px solid #063462;}
.color_white .jspDrag {background: #000;}
.color_black .jspDrag {background: #fff;}
.color_blue .jspDrag {background: #063462;}