@ssurneed,
The problem is the HTML for each of your chapters has
and the matching CSS style is
Code:
.z {
font-family: 'Times New Roman', serif;
margin-right: 8pt;
}
Consequently your right margin is larger than your left.
Either remove the red line or change the CSS to
Code:
.z {
font-family: 'Times New Roman', serif;
margin-left: 0;
margin-right: 0;
}
ETA: ... and my advice, if you don't like the ebook styling as provided by the ebook vendor, your best option is to learn a little HTML/CSS so you can fix this sort of problem yourself.