@charset "UTF-8";
/* 標準の表 */
/* IE6用のテーブルのセンタリング */
div.center_table{
	text-align : center;
}
/*　自動割り付けの表　*/
table.hyou_auto {
	margin : 5px auto;
	text-align:left;
	font-size: 90%;
	font-weight: normal;
	border-collapse : collapse;
	empty-cells: show;
	table-layout: auto;
	width: 80%;
	border: 2px solid silver;
}
/* 均等割り付けの表　*/
table.hyou_fixed {
	margin: 5px auto;
	text-align:left;
	font-size: 90%;
	font-weight: normal;
	border-collapse: collapse;
	empty-cells: show;
	table-layout: fixed;
	width: 80%;
	border: 2px solid silver;
}
/* 表内の指定 */
table caption{
	font-size: 110%;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	caption-side : top;
	vertical-align:middle;
	letter-spacing : 0.5em;
}
table th{
	padding: 0.3em;
	background-color: silver;
	vertical-align: middle;
	border-right : 1px solid white;
	letter-spacing: 0.5em;
	text-align: center;
}
table td{
	padding: 0.3em;
	margin : 0px;
	vertical-align : middle;
	border : 1px solid silver;
}
table dl{
	font-weight : bold;
	margin : 0px 0px 0px 2em;
}
table dd{
	margin : 3px;
	border : 1px solid silver;
	padding : 3px;
	font-weight : normal;
}
table ul{
	margin : 0px 0px 0px 2em;
	font-size : 100%;
}
table li{
	margin : 3px;
	padding : 3px;
}
/* レイアウト用テーブル */
table.layout{
	margin-left : auto;
	margin-right : auto;
	border-collapse : collapse;
	border-spacing : 0px;
	empty-cells : show;
	width : 80%;
	text-align : center;
	table-layout : auto;
	font-size : 90%;
}
table.layout td{
	border-width : 0px;
}
