/* リンク属性設定 */
a:link    {text-decoration:underline; font-weight:bold; color:steelblue;}
a:visited {text-decoration:underline; font-weight:bold; color:mediumpurple;}
a:active  {text-decoration:underline; font-weight:bold; color:palevioletred;}
a:hover   {text-decoration:underline; font-weight:bold; color:palevioletred;}

/* 全体レイアウト */
body {
	background-image: url(BackGround.png);
	margin: 0px;		/* ページ全体のマージン */
	padding: 0px;		/* ページ全体のパディング */
	text-align: center;	/* autoに未対応用のセンタリング */
}

/* ページ全体のセンタリング表示 */
#centering {
	background-color: #ffffff;
	margin: auto;		/* マージンを自動的に空ける */
	padding: 0px;		/* レイアウト内のパディング */
	text-align: left;	/* 中身を左側表示に戻す */
	width: 800px;		/* 幅設定 */
}

/* 左上のロゴ表示レイアウト */
#logo {
	padding-top: 10px;
	padding-left: 0px;
	width: 450px;
	height: 70px;
	float: left;
}

/* 右上の検索レイアウト */
#search {
	padding-top: 10px;
	padding-right: 10px;
	width: 300px;
	height: 70px;
	float: right;
	text-align: right;
}

/* 下側のメインレイアウト */
#main {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	width: 800px;
	float: left;
}

/* 文字属性設定 */
body, td {
	color: #555555;
	font-size: x-small;
	line-height: 130%;
}

/* 見出し属性設定 */
h1.item {
	border-left-width: 25px;
	border-left-style: solid;
	border-left-color: #ffe355;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #555555;
	font-weight: bold;
	font-size: 130%;
	line-height: 150%;
	padding-top: 1px;
	padding-left: 10px;
	width: 90%;
}

/* コンテンツのインデント設定 */
div.content {
	margin-left: 20px;
}

/* 表の左側(上側) */
td.item {
	background-color: #ffee66;
	text-align: center;
}

/* 表の右側(下側) */
td.content {
	background-color: #eeeeee;
}

