In the ongoing goal of using at much from the style sheet as you can, I see numerous occurences of
Code:
<p class="center" style="margin-top: 1em; margin-bottom: 1em">* * *</p>
as a break.
Why not add a new class and then just code
Code:
<p class="break" >* * *</p>
(after adding
Code:
.break {
text-align: center;
margin-top: 1em;
margin-bottom: 1em
}
to the stylesheet of course).
The whole idea is to try to separate the text itself from as much markup as possible.