certificates, it looks like the last 3 </div>s have been dropped from the bottom of most pages. (easy to spot because of the misalignment of the tags That's why I like indents.).

The pages should end like this:
Code:
            </div>

            <div class="span-24">
                <div id="footer" style="padding:6px; height:15px;">
                    <span style="float:left;">Copyright © Antony Lambert</span>
                    <span style="float:right;"><a href="http://www.c5d.co.uk/hurstpages.htm" target="_blank">The Hurst Pages</a> by <a href="http://www.c5d.co.uk" target="_blank">Antony Lambert of C5D</a></span>
                </div>
            </div>
        </div>    /* missing */
    </div>    /* missing */
</div>    /* missing */
</body>
</html>
NOT this:
Code:
            </div>
        
        <div class="span-24">
            <div id="footer" style="padding:6px; height:15px;">
                <span style="float:left;">Copyright © Antony Lambert</span>
                <span style="float:right;"><a href="http://www.c5d.co.uk/hurstpages.htm" target="_blank">The Hurst Pages</a> by <a href="http://www.c5d.co.uk" target="_blank">Antony Lambert of C5D</a></span>
            </div>
        </div>
</body>
</html>