@charset "utf-8";
/* CSS Document */

/*
 ＊ index.html（HOME）の「INFORMATION」部分スクロールバー用

 ＊ 参考サイト ＊
 　【jQuery】スクロールバーをオシャレにカスタマイズする「jScrollPane」の使い方
 　　http://klutche.org/archives/1251/
 */

/* 全体 */
.jspContainer
{
	overflow: hidden;
	position: relative;
}

/* スクロールバーを除いたエリア */
.jspPane
{
	position: absolute;
}

/* 縦スクロールバー */
.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background: none; /* 確認用 */
}

/* 横スクロールバー */
.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: none; /* 確認用 */
}

/* 背景 */
.jspTrack
{
	background: rgba( 240, 240, 240, 1.0); /* ページ背景色に同じ→※「updated」側に合わせる */
	position: relative;
}

/* ノブ */
.jspDrag
{
	background: #333333;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}
