According to your source code, you have an extra "<tr>" tag in there. Here is the part and the fix
HTML Code:
<td><div align="center"><font color="#B5B5B5" size="1" face="Verdana, Arial, Helvetica, sans-serif">Affiliates</font></div></td>
</tr>
</table></td>
<tr>
<td><img src="images/rightcolumnheader.gif" width="20" height="36"></td>
Change to
HTML Code:
<td><div align="center"><font color="#B5B5B5" size="1" face="Verdana, Arial, Helvetica, sans-serif">Affiliates</font></div></td>
</tr>
</table></td>
<td><img src="images/rightcolumnheader.gif" width="20" height="36"></td>