* @param title The document title.
* @return a HtmlGenerator instance.
*/
public static HtmlGenerator getHtmlGenerator(String title) {
HtmlGenerator g = new HtmlGenerator(title);
g.addStyle("BODY {color: black; background: white; "+
"font-family: serif; margin-top: 35px }\n");
addStyle(g);
return g;
}