/*
 * 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.
 */


.jspVerticalBar *,
.jspHorizontalBar * {
	margin: 0;
	padding: 0;
}

/* 本体 */
.jspContainer {
	overflow: hidden;
	position: relative;
}

.jspPane {
	position: absolute;
}

/* 縦スクロールバー本体 */
.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 100%;
}


.jspCap {
	display: none;
}


/* スクロールバーの背景 */
.jspTrack {
	/*background: #ddddee;*/
	background: #333;
	position: relative;
}

/* スクロールバーの色 */
.jspDrag {
	background: #666; /*グレー*/
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}


/* 全ての矢印ボタン */
.jspArrow {
	background: #111;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

/* 上矢印ボタン */
.jspArrowUp {
}

/* 下矢印ボタン */
.jspArrowDown {
}

/* 矢印不能？ */
.jspArrow.jspDisabled {
	cursor: default;
	background: #;
}

/* 縦スクロールバー 先端または終端時の矢印ボタン */
.jspVerticalBar .jspDisabled {
	background: #666;
}

.jspVerticalBar .jspArrow {
	height: 12px;
}


.jspVerticalBar .jspArrow:focus {
	outline: none;
}

/* 右下角 */
.jspCorner {
	background: #eeeef4;
	float: left;
	height: 100%;
}


/* 横スクロールバー */
.jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12px;
	background: red;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}
.jspHorizontalBar .jspArrow {
	width: 12px;
	float: left;
	height: 100%;
}
.jspHorizontalBar .jspCap {
	float: left;
}
/* 横スクロールバー 先端または終端時の矢印ボタン */
.jspHorizontalBar .jspDisabled {
}
/* 左矢印ボタン */
.jspArrowLeft {
}

/* 右矢印ボタン */
.jspArrowRight {

}


/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0 -3px 0 0;
}