/* リンクカラー　基本 */
a:link {
	color: #333333;
	text-decoration: none;
	}
a:visited {
	color: #444444;
	text-decoration: none;
	}
a:hover {
	color: #FF9900;
	text-decoration: underline;
	}
a:active {
	color: #FF0000;
	text-decoration: underline;
	}

/* リンクカラー　別種１ */
a.alt1:link {
	color: #006600;
	text-decoration: underline;
	}
a.alt1:visited {
	color: #003300;
	text-decoration: underline;
	}
a.alt1:hover {
	color: #FF9900;
	text-decoration: underline;
	}
a.alt1:active {
	color: #FF0000;
	text-decoration: underline;
	}

/* 04.10.25 追加 */

/* 段落等の間隔　空き無し */
.mrgnBTM00 {
	margin-top: 0em;
	margin-bottom: 0em;
	}

/* 段落等の間隔　下側0.2行分空き */
.mrgnBTM02 {
	margin-top: 0em;
	margin-bottom: 0.2em;
	}

/* 段落等の間隔　下側0.5行分空き */
.mrgnBTM05 {
	margin-top: 0em;
	margin-bottom: 0.5em;
	}

/* 段落等の間隔　下側１行分空き */
.mrgnBTM10 {
	margin-top: 0em;
	margin-bottom: 1em;
	}

/* インデント　１文字分 */
.indnt-1em {
	margin-left: 1em;
	}

/* インデント　両側１文字分 */
.indnt-1emw {
	margin-left: 1em;
	margin-right: 1em;
	}

/* インデント　２文字分 */
.indnt-2em {
	margin-left: 2em;
	}

/* インデント　３文字分 */
.indnt-3em {
	margin-left: 3em;
	}

/* インデント　４文字分 */
.indnt-4em {
	margin-left: 4em;
	}
