Earlier, I saw a similar problem with what I was working on, and, fortunately, the workaround is very simple - IE and Firefox just require that the html height be set to 100%. So, update the first element of your style:
html, body {
margin: 0;
height: 100%;
}
That should do the trick.