A HTML row ('tr') element is allowed to contain 'th' and 'td' cell elements yet you are trying to put a complete 'table' in there:
Code:
<tr>
<th bgcolor="99CCCC">Statistics</th>
<table id="stat1tbl" class="stat1">
That is not allowed and that way the browser might guess what you want and correct that, with different browsers guessing and correcting differently.