body {  /* 本文 */
	background-color: #FFFAFA;  /* snow */
	color: #2F4F4F;  /* darkslategray */
		/* #696969(dimgray) */
	font-size: small;
	line-height: 150%;
	margin: 0em 10%;
}


/* 論理構造に関する要素の設定 */

h1 {  /* 章見出し */
	background-color: #FFFAFA;  /* snow */
	color: #DC143C;  /* crimson */
	font-size: large;
	font-weight: bold;
	margin: 1ex 0ex;
	text-align: center;
	text-indent: 0em;
}
h2 {  /* 節見出し */
	background-color: #FFFAFA;  /* snow */
	border-top: solid thin #4169E1;  /* royalblue */
	color: #150E4E;  /* by EAST */
	/* clear: both; */
	font-size: medium;
	font-weight: bold;
	margin: 1em 0ex 1ex 0ex;
	padding-top: 3px;
	text-align: center;
	text-indent: 0em;
}


/* 文章の構成要素に関する設定 */

p {  /* 段落 */
	font-size: small;
	margin: 0em;
	text-indent: 1em;
}

ol, ul {  /* リスト */
	line-height: 120%;
	margin: 0em;
}

img {  /* 画像 */
	border-style: none;
}

address {  /* 連絡先 */
	font-size: x-small;
}

em {  /* 強調箇所 */
	background-color: #FFFAFA;  /* snow */
	color: #FF4500;  /* orangered */
	font-style: italic;
	font-weight: bold;
}


/* リンク関連の設定 */

a:link {  /* 未読 */
	background-color: #FFFAFA;  /* snow */
	color: #0000CD;  /* mediumblue */
		/* #2222EE */
	text-decoration: underline;
}
a:visited {  /* 既読 */
	background-color: #FFFAFA;  /* snow */
	color: #B0B76B;  /* by EAST */
	text-decoration: none;
}
a:active {  /* 選択 */
	background-color: #98FB98;  /* palegreen */
	color: #B22222;  /* firebrick */
		/* #EE2222 */
	text-decoration: none;
}
a:hover {  /* 候補 */
	background-color: #FFE4E1;  /* mistyrose */
	color: #32CD32;  /* limegreen */
	text-decoration: none;
}

.navi {  /* ナビゲーション */
	border: double #DC143C;  /* crimson */
	margin: 1ex 0ex;
	padding: 3px;
	text-align: right;
	text-indent: 0em;
}


/* テキスト位置 */

.c {  /* 中央寄せ */
	text-align: center;
	text-indent: 0em;
}
.l {  /* 左寄せ */
	text-align: left;
	text-indent: 0em;
}
.r { /* 右寄せ */
	text-align: right;
	text-indent: 0em;
}


/* テキストのスタイル */

.b {  /* ボールド体 */
	font-weight: bold;
}
.i {  /* イタリック体 */
	font-style: italic;
}
.bi {  /* ボールドイタリック体 */
	font-style: italic;
	font-weight: bold;
}


/* 仕切り線 */

.hr {  /* 水平線 */
	margin: 1ex 0ex;
	text-align: center;
	text-indent: 0em;
}
