
/* スクロールバー要素
----------------------------------------------------------- */
.jspContainer {
	overflow: hidden;
	position: relative;
}
.jspPane {
	position: absolute;
}
.jspVerticalBar {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 13px;     /* 縦スクロールバーの幅を指定 */
	height: 100%;
	background: #ffffff;
}
.jspHorizontalBar {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 10px;     /* 横スクロールバーの幅を指定 */
	background: #ffffff;
}
.jspCap {
	display: none;
}
.jspHorizontalBar .jspCap {
	float: left;
}
.jspTrack {
	position: relative;
	background: url(../images/jscrollpaneBg.png) repeat-y 50% 0 #FFF; /* スクロールバーの背景色を指定 */
}
.jspDrag {
	/*background: #888;*/     /* スクロールバーの色を指定 */
	background: url(../images/jscrollpaneBar.png) repeat-y 50% 0 #FFF; /* スクロールバーの色を指定 */
	position: relative;
	top: 0px;
	left: 0px;
	cursor: pointer;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}
.jspArrow {
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0px;
	margin: 0px;
}
.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%;
}

/* IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0px -3px 0px 0px;
}
