// prepare table of contents
NCXResource toc = epub.getTOC();
TOCEntry rootTOCEntry = toc.getRootTOCEntry();
// create a stylesheet
StyleResource style = epub.createStyleResource("OPS/styles.css");
Stylesheet stylesheet = style.getStylesheet();
// style h1 element
Selector h1Selector = stylesheet.getSimpleSelector("h1", null);
SelectorRule h1Rule = stylesheet.getRuleForSelector(h1Selector,
true);