
<!-- テキストのスタイル設定メイン -->

BODY{
	font-size: 9pt;
}

TD{
	font-size: 9pt;
}


<!-- テキストのスタイル -->

.type0{
	font-size: 8pt;
}

.type1{
	font-size: 10pt;
}

.type2{
	font-size: 11pt;
}

.type3{
	font-size: 13pt;
}

.type4{
	font-size: 15pt;
}


<!-- リンクの設定 -->
A{
	text-decoration: none;
}

A:hover{
	text-decoration: none;
}


<!-- 罫線の設定 -->

	<!-- 下辺に破線 -->
	TD.under-dotted
	{
		border-width:2px;
		border-bottom-style:dotted;
		border-color:#666666;
	}


	<!-- 下辺に実線 -->
	TD.under
	{
		border-width:1px;
		border-bottom-style:solid;
		border-color:#666666;
	}


	<!-- 下辺、右辺に実線 -->
	TD.under-right
	{
		border-width:1px;
		border-bottom-style:solid;
		border-right-style:solid;
		border-color:#666666;
	}


	<!-- 左辺、右辺に実線 -->
	TD.right-left
	{
		border-width:1px;
		border-left-style:solid;
		border-right-style:solid;
		border-color:#666666;
	}

