@charset "utf-8";

/* scroll */		
#scroll {
	/* Typical fixed height and fixed width example */
	width:700px;
	height:150px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0 0 0 0;
	padding:3px 0 0 0;
}


			/* 本体？ */
			.scrollgeneric {
				line-height:1px;
				font-size:1px;
				position:absolute;
				top:0;
				left:0;
			}
			/* 縦スクロール範囲 */
			.vscrollerbase {
				width:10px;
				background-color:#d4b792;
			}
			/* 縦スクロールバー */
			.vscrollerbar {
				width:10px;
				background-color:#a98e6c;
			}
			/* 横スクロール範囲 */
			.hscrollerbase {
				height:10px;
				background-color:#d4b792;
			}
			/* 横スクロールバー */
			.hscrollerbar {
				height:10px;
				background-color:#a98e6c;
			}
			/* 縦横スクロールバー */
			.scrollerjogbox {
				width:10px;
				height:10px;
				top:auto;
				left:auto;
				bottom:0;
				right:0;
				background-color:#a98e6c;
			}
