/*----- テーブルの設定 -----*/
/* background-color :背景色                                                      */
/* font-size        :フォントサイズ                                              */
/* margin           :上下左右のマージン(余白)  マージンはボーダーの外側の余白    */
body {
	background-color: #FFFFFF;
	margin-top: 0pt;
	margin-bottom: 0pt;
	font-size: 10pt;
}


/*----- テーブルの設定 -----*/
/* padding         :上下左右のパディング(余白) パディングはボーダーの内側の余白 */
/* font-size       :フォントサイズ                                              */
/* margin          :上下左右のマージン(余白)  マージンはボーダーの外側の余白    */
/* border-style    :ボーダーのスタイル                                          */
body,td,th {
	color: #000000;
	font-size: 10pt;
	line-height: 160%;
}


/* ----- リンク部分の定義 ----- */
/* A:link          :リンクの色                       */
/* A:visited       :リンク済の色                     */
/* A:active        :アクティブになった時の色         */
/* A:hover         :マウスを乗せたリンクの色を変える */
/*
a:link       { text-decoration: none;
                color: #0000FF; }
a:visited    { text-decoration: none; }
a:hover      { text-decoration: none;
               color: #FF00FF; }
a:active     { text-decoration: none; }
*/

a.type1       { color:#000000;
                text-decoration:underline; }
a:hover.type1 { color:#FF0000;
                text-decoration:underline; }
a.type2       { color:#0000FF;
                text-decoration:none; }
a:hover.type2 { color:#FF00FF;
                text-decoration:none; }


/* ----- 文字サイズの定義 ----- */
.fs8          { font-size:8pt;  }
.fs9          { font-size:9pt;  }
.fs10         { font-size:10pt; }
.fs12         { font-size:12pt; }
.fs14         { font-size:14pt; }
.fs16         { font-size:16pt; }


/* ----- 文字サイズ・色の定義 ----- */
.fs8-fc1      { font-size:8pt;
                color: #FF0000; }
.fs10-fc1     { font-size:10pt;
                color: #FF6600; }
.fs12-fc1     { font-size:12pt;
                color: #FFFFFF; }
