/*
 * 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;
}

.jspCap {
	display: none;
}

.jspHorizontalBar .jspCap {
	float: left;
}

.jspVerticalBar {/* スクロールバーの幅設定項目？ */
	position: absolute;
	top: 0;
	right: 0;
	width: 15px;
	height: 100%;
	background: #fff;
}

.jspHorizontalBar {/* スクロールバーの高さ設定項目？ */
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 15px;
	background: #fff;
}

.jspVerticalBar *,
.jspHorizontalBar * {
	margin: 0;
	padding: 0;
}

.jspTrack {/* スクロールバーの背景色の設定 */
	background: #e6e6e6;
	position: relative;
}

.jspDrag {/* コンテンツ部分のドラッグする箇所の設定 */
	background: #ccc url(../images/btnCenter.gif) no-repeat center center;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}

.jspArrow {
	background: #50506d;
	text-indent: -999999px;
	display: block;
	cursor: pointer;
}


.jspArrowUp {/* 矢印のイメージを使用するためCSS追加 */
	background: #000 url(../images/btnUp.gif) no-repeat;
}
.jspArrowDown {/* 矢印のイメージを使用するためCSS追加 */
	background: #000 url(../images/btnDown.gif) no-repeat;
}

.jspArrow.jspDisabled {/* スクロールバーが最上部と最下部になってる場合の設定項目 */
	cursor: default;
}

.jspVerticalBar .jspArrow {/* スクロールバーの上下アイコンの高さ設定 */
	height: 15px;
}

.jspHorizontalBar .jspArrow {/* スクロールバーの上下アイコンの横幅設定 */
	width: 15px;
	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;
}