

/* ページ左部分の枠設定 */
#left {
	float: left;
	width: 200px;
	height : 100% ;
	border-top: none;
	border-left:0px;
	border-bottom: 0px;
	overflow: hidden;
	}

/* ページ右部分の枠設定 */
#right {
	float: right;
	width: 200px;
	}

/* ページ中央部分の枠設定 */
#center {
	float: left;
	width: 390px;
	overflow: hidden;
	background-color: #FFFFFF;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: none;
	margin-top: 10px ;
	}

