/* 個別CSSファイルの読み込み */
@import url(header.css);
@import url(content.css);
@import url(footer.css);

/* 全要素共送E*/
* {
	margin: 0;
	padding: 0;
	border: none;
	font-style:normal;
	font-size: 100%;
}

/* ボディ */
body {
	width: 100%;
	background:#FFFFFF url(../img/bgbody.png) left top repeat-x;
}

/* コンチE */
div#container {
	width: 950px;
	position : relative;
	margin: 0 auto;
}