Hi Steve,
I think you have too many </DIV>'s under where it says "Moon Visible at" on Line 209. My comments in brackets
On the original WB2 index page it has:
</div> (his closes the DIV "pan night")
</div> (this closes the DIV "right_h")
<div style="clear: both"></div>
</div> (this closes the DIV "razd_lr_h")
</div> (this closes the div "content")
In your page you have the same but you dont have a DIV "razd_lr_h" so you have an extra </div) and your </DIV>'s are working as follows
</div> (Closes DIV "pan nightlong")
</div> (this closes DIV "right_h")
<div style="clear: both"></div>
</div> (this closes DIV "content")
</div> (this closes the DIV "main")Therefore your box div <div class="cont_bot" style="padding: 0px 0px 0px 120px"></div> is outside of the DIV "main". In CSS the DIV "main" is set to 1000px and is centred by margin: 0px auto in the css file. As you box is outside the div, it treats it as part of the page body and just sticks it on the left.
Take a backup of the files and then delete the last </DIV> highlighted above on both pages. Hopefully that will fix it
I simulated it here by adding an extra div.
http://midlifedad.me.uk/WB2_MX/Andy