Get rid of the stuff. Further more there is a lot of redundant stuff in your css. Make it more simple. Put the following in the css:
Code:
p.indent
{
text-indent: 15pt;
line-height: normal;
margin: 0;
}
And then you're paragraph like:
Code:
<p class="indent">Text to see if there is an indent</p>
If everything is as it should, the test text is indented. If you want to have it for all the paragraphs, remove the .indent in the CSS and the class="indent" in the xhtml.
If you need more in the CSS, add it part by part.