*{
	margin: 0;
	padding: 0;
}

body{
	width:100%;
	line-height: 150%;	/*行間の距離は通常の1.5倍*/
	background-repeat : repeat-xy;
	background-image: url(images/bg.png);	/*bg.pngを背景にする*/
}

/*強調させる字体に用いる。<strong>タグで指定可能*/
strong{
	color: red;	/*文字色を赤にする*/
}

h1,h2,h3,p{
	text-align: center;
}

p.left{
	text-align: left;
}


/* サイトの段組設定（フレームの代わり） */

/*ヘッダー*/
#header{
	width: 100%;
	height: 60px;
	color: #000000;
	background-color: #CCFFFF;	/*背景色は水色*/
}

/*フッター*/
#footer{
	vertical-align:middle;
	width:100%;
	clear: both;
	height:32px;
	color: #000000;
	background-color: #CCFFFF;	/*背景色は水色*/
}

/*メニュー*/
#menu{
	float: left;
	width: 210px;
	text-align: center;
}

/*コンテンツ*/
#contents{
	margin: 10px;
	margin-left: 210px;
	color: #000000;	
}

