Your problem is being caused by the
css code indicated below:
#header {
...
float: left;
...
}
Firefox et al are doing what should be done. When you float an element, you take it out of the normal flow of elements on the page.
Remove it and see what happens.