Just a piece of, unasked for, advice:
Try not to use inline styles unless it is absolutely necessary. It bloats your code, making it much harder to edit, and longer for the device/app to load and render.
Instead, use a CSS file. Your HTML code will look something like this:
Code:
instead of:
<div style="clear:both; mso-break-type:section-break; page-break-before:auto">
<p style="font-size:16pt; line-height:150%; page-break-before:always">
<span style="font-family:Arial, sans-serif; font-size:16pt; font-weight:bold">Prima </span>
<a id="_s"></a>
<span style="font-family:Arial, sans-serif; font-size:16pt; font-weight:bold">settimana</span></p>
use CSS:
h3 {font-size:2em; font-family:Arial, sans-serif; font-weight:bold}
and HTML:
<h3>Prima settimana</h3>