You need to use an html validator to get the page to validate. Right now, if you look at your source code, you've got some weird things going on. I mean, look at the bottom of the page source... you have a form started and never ended:
HTML Code:
<form action="index.php" method="get" style="clear:left">
What's that supposed to do?
And what about this?
HTML Code:
<table align="center" border="0" width="900" cellpadding="0" cellspacing="0">
</table>
and this:
HTML Code:
<table border="0" cellpadding="0" cellspacing="0" align="left" style="background-image: url(http://community.zoovix.com/images/evid_green/gradients/nav-bg.png); repeat: repeat-x;" height="50">
</table>
What's are those for? It's improper html and things like that will mess up your page.
I also recommend to anyone working on a style, to get the firebug add-on for firefox. It makes it much easier to Inspect your pages and see what is going on.