/* CSS Document

LastUpDate
	
2006.03.27

---------------------------------------- */

/* 記述形式


１．プロパティは、同系統の場合1行で記述可能とする。

２．プロパティが2つ以内の場合は、1行で記述可能とする。

３．子要素は、右にTabして記述可能とする。

４．id要素名は、基本的に半角小文字のみの記述とする。

５．class要素名は、基本的に半角小文字の記述とするが、単語の頭部分においてのみは半角大文字の記述可能とする。

６．id要素名とclass要素名に同じ要素名をつけることは禁止とする。

７．子id要素名は、可能な限り親id要素名に近しい名前をつけることを推奨する。

８．記述の優先順位
	(1)display, float, position
	(2)margin, padding
	(3)width, height
	(4)text-●●●●系
	(5)background系
	(6)font系
	(7)その他


-------------------------------------------------------------------------------------- */


h2#infoTitle{
	margin-bottom: 20px;
	background: url(../img/infoTitle.gif) left top no-repeat;
}


table#infoTable{
	margin: 0px 0 50px 169px;
	width: 577px; height: auto;
	}
	
	table#infoTable th{
		padding: 10px 0 0 30px;
		height: 21px;
		background: url(../img/titleBg.gif) left bottom no-repeat;
		font: 14px/21px "ＭＳ ゴシック", "Osaka−等幅";
		color: #333;
	}
	
	table#infoTable td{
		padding: 5px 0 5px 10px;
	}
	td.infoTime{
		background-color: #ebeff9;
		color: #7884ae;
		border-bottom: 1px solid #536087;
	}
	td.infoText{
		background-color: #f1f3f9;
		color: #666;
		border-bottom: 1px solid #9da5c0;
	}


































