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

/* 左側を固定 */

BODY {
margin: 0;
padding: 0px 0px 0px 220px ;
/* 左側の横サイズを 150 ピクセルとします */
}

* html body{
overflow: auto;
}

div#Left_area {
	position: fixed !important;
	position: absolute;
	top: 0;
	left: 10px;
	width: 190px;
	/* BODY で設定した150ピクセルの値をセットします　*/
height: 100%;
	background-color : #FFF;
	overflow: auto;
/* メニュー等の行が多い場合はスクロールバーを表示する */
}

* html div#Right_area{
	height: 100%;
	overflow: auto;
	padding-left: 10px;
}
.style1 {
	font-size: 12px;
	font-weight: bold;
}

-->