// 標準フォーマット擬似クラス対応用(ver.2.01)
jQuery(document).ready(function(){
	$("table.drTable tr:nth-child(2n+1)").css("background", "#d7d3c1");
	$("table.drTable tr:nth-child(1) th:nth-child(1)").css("background", "#ffffff");
	$("table.drTable tr:nth-child(1) th:nth-child(1)").css("border", "none");
	$("table.data02 tr:nth-child(1)").css("border-top", "1px solid #4a769e");
	$("table.data02 tr:last-child()").css("border-bottom", "1px solid #4a769e");
	$("#hpInfo dl dt:first-child()").css("border-top", "none");
	$("#hpInfo dl dd:nth-child(2)").css("border-top", "none");
});

