/* bodyの設定 */
body {
	background-color: #ffffff;	/* 背景色 */
	color: #222222; 			/* 文字色 */
}

/* リンクの設定 */
a {
	text-decoration: none;		/* アンダーラインを消す */
}

/* リンクの設定 */
a:link		{	color: #a42;	}
a:visited	{	color: #a42;	}
a:active	{	color: #f84;	}

/* カーソルが来たときのリンクの設定 */
a:hover{
	color: #f84; 			/* 配色 */
	text-decoration: underline; /* アンダーラインを出す */
}


/* 内容表記用の設定 */
p {
	margin-top: 5px;			/* 上側マージン */
	margin-left: 5px;			/* 左側マージン */
	margin-right: 5px;			 /* 左側マージン */
	margin-bottom: 5px; 		/* 下側マージン */
}

/* harbot用の設定 */
p.harbot {
	text-align: center; 		/* テキスト配置 */
	line-width: 127px;
	line-height: 201px;

}

/* リンク先説明用 */
p.sub {
	margin-left: 3em;			/* 左側マージン */
}

/* 枠組み用の設定 */
table {
	margin-top: 5px;			/* 上側を空ける */
	margin-bottom: 1em; 		/* 下側を1文字分空ける */
	background: #000;			/* 背景色 */
	padding: 1px 0px;			/* 上右下左 隙間を確保 */
	border: 0px;				/* 囲み */
}

/* 枠組み用の設定 */
th {
	font-weight: bold;			/* テキスト太さ */
	background: #666;			/* 背景色 */
	color: #ffffff; 			/* 文字色 */
	padding: 1em 1em;			/* 上下左右 隙間を確保 */
	border: 0;					/* 囲み */
}

/* 枠組み用の設定 */
td {
	background: #f0f0f0;		/* 背景色 */
	padding: 1px 1px 1px 1px;	/* 上下左右 隙間を確保 */
	border: 1px 1px;			/* 囲み */
	margin: 0px;
}

#banner {
	width: 700px;
	font-weight: bold;			/* テキスト太さ */
	background: #666;			/* 背景色 */
	color: #ffffff; 			/* 文字色 */
	padding: 1em 1em;			/* 上下左右 隙間を確保 */
	border: 1px solid #000;		/* 囲み */
	margin: 0px 0px 0px 0px;
	text-align: center; 		/* テキスト配置 */
}

#body {
	width: 700px;
	margin: 0 5px 0 5px;
	clear: both;
}

#menu {
	float: left;
	background: #eee;			/* 背景色 */
	padding: 1px;				/* 上下左右 隙間を確保 */
	border: 1px solid #ccc;		/* 囲み */
	margin: 0;
	width: 200px;
	height: 100%;
}

#content{
	background: #eee;			/* 背景色 */
	padding: 1px;				/* 上下左右 隙間を確保 */
	border: 1px solid #ccc;		/* 囲み */
	margin: 0 5 0 206px;
	width: 500px;
	height: 100%;
}

#author {
	width: 700px;
	font-weight: bold;			/* テキスト太さ */
	background: #000;			/* 背景色 */
	color: #fff;	 			/* 文字色 */
	padding: 1px;				/* 上下左右 隙間を確保 */
	border: 1px solid #000;		/* 囲み */
	margin: 0 5 0 5;
	text-align: right; 			/* テキスト配置 */
	clear: both;
}

/* 表題用の設定 */
#title {
	border: 1px solid #000000;	/* 1px黒枠で囲む */
	padding: 3px 1em 3px 1em;	/* 上3px 右1文字 下3px 左1文字 隙間を確保 */
	line-width: 100%;			 /* 横幅設定 */
	background: #fff;		/* 背景色を白にする */
	color: #000; 			/* テキスト色を黒にする */
	text-align: center; 		/* テキスト配置 */
	font-weight: bold;			/* テキストを太文字にする */
}


