*
* @param out - the output stream to recieve the styled report
* @throws Exception
*/
public void styleReport(PrintStream out) throws Exception {
final IReportable base = getDirectory(out);
if (base != null) {
InputStream style = Defaults.getDefaultStyleSheet();
final ReportConfiguration configuration = new ReportConfiguration();
configuration.setHeaderMatcher(Defaults.createDefaultMatcher());
report(out, base, style, configuration);