headerTable.getDefaultCell().setPaddingBottom(15);
headerTable.addCell(new Paragraph(title, TITLE_FONT));
headerTable.getDefaultCell().setBorderWidth(0);
headerTable.getDefaultCell().setPaddingBottom(0);
headerTable.addCell(new Paragraph(StringUtils.defaultString(description), NORMAL_TEXT_FONT));
headerTable.writeSelectedRows(0, -1, 10, pageRectangle.height(), docWriter.getDirectContent());
PdfPTable table = newTable(pageRectangle, 2);
for (int i = 0; i < fields.length; i++) {
addFieldCell(table, fields[i]);