How To Make Page-Level CSS Elegant

Page Level CSS is contained inside the <head> tags of an XHTML page.

Add the following to a layout, such as the Normal one, inside the <head> tags:

<r:if_content part="styles"><style type="text/css">
<!--
<r:content part="styles"/>
-->
</style></r:if_content>

Then just creating a Page Part named 'styles' for pages with custom CSS (like the homepage) and place the CSS rules in there.

If no part named 'styles' exists then the page does now show any signs of this, because of the <r:if_content> tags! :-)