your problem is the table
HTML Code:
# <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
#
#
#
#
#
#
#
#
#
# </table>
rewrite you html so that it doesn't display if not needed
a quick fix is to add an emtpy row/cell
HTML Code:
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"><tr><td></td></tr></table>