/* 基本設定１ */
BODY {
	color: white;					/* 文字色 */
	text-align: center;				/* 文字位置 */
	font-family: 'ＭＳ ゴシック';	/* フォント */
	background-color: Navy;			/* 背景色 */
}

/* 基本設定２ */
BODY,TH,TD {
	font-size: 16px;	/* フォントサイズ */
	line-height: 18px;	/* 行間隔 */
}

/* 小文字表示設定（白） */
.Memo {
	color: white;		/* 文字色 */
	font-size: 12px;	/* フォントサイズ */
	line-height: 14px;	/* 行間隔 */
}

/* 小文字表示設定（色付き） */
.MemoC {
	color: aqua;		/* 文字色 */
	font-size: 12px;	/* フォントサイズ */
	line-height: 14px;	/* 行間隔 */
}

/* 強調文字表示設定 */
.Bold {
	color: red;			/* 文字色 */
	font-weight: bold;	/* 太字 */
}

/* 項目表示設定 */
.Item {
	font-weight: bold;					/* 太字 */
	background-color: #8080c0;			/* 背景色 */
	border-right: 4px ridge #000040;	/* 右側影 */
	border-bottom: 4px ridge #000040;	/* 下側影 */
}

/* 写真表示設定 */
.Pict {
/*	margin: 8px;						/* 外側余白 */
	border-right: 4px ridge #000040;	/* 右側影 */
	border-bottom: 4px ridge #000040;	/* 下側影 */
}

/* Aタグアクションカラー */
A:link { color: white; }
A:visited { color: white; }
A:active { color: white; }
A:hover { color: blue; }


