@charset "UTF-8";

/* ================================================================ *
	レイアウト用 CSS
	この CSS には，レイアウトの基本的な設定・共通設定が
	書かれています。
 * ================================================================ */
 

#wrapper {
	position: relative;	

	width: 1000px;
	height: 600px;
	margin: 0px auto;

}



#left {
	position: absolute;
	top: 150px;
	left: 20px;
	height: 500px;
	width: 150px;
}



#left ul li{
	list-style-type: none;
	margin: 0px;
}

#left ul li a:hover img{
	opacity: 0.3;
	filter: alpha(opacity=60);
}

#right{
	position: absolute;
	top: 80px;
	left: 200px;
	width: 780px;
	height: 480px;
}

#footer{
	position: absolute;
	top: 580px;
	color: #999;
	font-size: 11px;
	text-align: center;
	text-decoration: none;
	width: 1000px;
}




