not sure what you mean but...
try removing all spaces between tags ..
eg.
(partial code)
HTML Code:
<td valign=top><font face="arial narrow, arial" size=2>FX</td>
<td valign=top><font face="arial narrow, arial" size=2>1 p.m.</td>
<td valign=top><font face="arial narrow, arial" size=2></td>
</tr>
should all be in one line:
HTML Code:
<td class="" valign="top">FX</td><td class="" valign="top">1 p.m.</td><td class="" valign="top"> </td></tr>
PS. You code is not valid XHTML.