Much improved from the last time I saw it. The layout is much better.
The only thing to watch out for is that you properly follow XML standards in the code. XHTML is based on XML, which means that EVERY tag needs to be closed, either by a closing tag or it being self-closed.
For example:
CODE
<br> <---- not closed
<br /> <---- closed
<img src="pic.jpg"> <---- not closed and missing alt
<img src="pic.jpg" alt="pic" /> <---- closed
Images also need to have an alt-text in order to meet the standard. The alt-text can be empty if you wish, but it has to be there.

Maybe it's just my personal preference, but I'd center the timing images at the bottom, and put a bit of space between the pictures.