/* =============================================================== */
/* =                                                             = */
/* =  basic.css  (Cascading Style Sheets)                        = */
/* =                                                             = */
/* =  虎の巻共通の基本スタイルシートです。                       = */
/* =  必ず、全Pageからリンクさせてください。                     = */
/* =  （例：<LINK REL="stylesheet" HREF="./library/basic.css"> ）= */
/* =                                                             = */
/* =  【Ａ・Ｂ】:Ａは適用場所です。                              = */
/* =  Ｂは"強制"の場合、作り手の意志に関わらず                   = */
/* =  該当タグにそのスタイルが適用され、                         = */
/* =  Ｂ"任意"は該当クラスを作り手が記述した場合にのみ、         = */
/* =  そのスタイルが適用されます。                               = */
/* =                                                             = */
/* =                                               (C)TKC 2001   = */
/* ==============================================================
 
/* ===== ページの基本属性 (body) 指定 【全体：強制】 ===== */
/* =====
/* ===== 　・背景色＝白  */
/* ===== 　・テキストカラー＝濃灰色  */
/* ===== 　・左マージン、上マージン （各 8pxずつ） */
/* ===== 　・禁則処理を厳しく */
@import url("ie.css");//IEのみ、行間指定150%を外部読込（NNの不具合回避のため）
body
	{
		background-color: #FFFFFF;
		color: #000000;
		margin-left: 16px;
		margin-top: 16px;
		line-break: strict;
	}
/* ===== 段落（<p>〜</p>） の行間指定 【<p>タグ ：強制】 ===== */
p
	{
		line-height: 150%
	}

/* ===== セル（<td>〜</td>） の行間指定 【<td>タグ ：強制】 ===== */
td
	{
		line-height: 150%
	}

/* ===== リンク文字列の色指定 【<A>タグ：強制】 ===== */
a:link
	{
		color: #0000CC;
		text-decoration: underline;
	}

a:visited
	{
		color: #0000CC;
		text-decoration: underline;
	}

a:active
	{
		color: #0000CC;
		text-decoration: underline;
	}

a:hover
	{
		text-decoration: underline;
		color: #0000CC;
		
	}
h2,h3,h4,h5,h6
	{
		margin:16pt, 0pt, 6pt;
	}


/* ===== 項目タイトルの飾り線 【項目タイトル：任意】 ===== */
.head1
	{
		width: 760;
		border-style: solid;
		border-color: #6666CC;
		border-width: 0px 0px 1px 8px;
		padding-left: 2px;
		margin-top: 20px;
		margin-bottom: 4px;
		margin-left: 2px;
		padding-top: 4px;
	}


/* ===== 行間指定 【任意：任意】 ===== */
.lin110p { line-height: 110%}
.lin125p { line-height: 125%}
.lin150p { line-height: 150%}
.lin200p { line-height: 200%}

/*-eof-*/</a>

/* ===== 見出し（<h1>〜<h6>） の行間指定 【<h?>タグ ：強制】 ===== */
h1 { 
		margin:16pt 0pt;
 } </h6></h1>