else
{
variablesSectionStyle.setStyleName(TextRawReportTarget.VARIABLES_HIDDEN_STYLE_WITHOUT_KEEPWNEXT);
}
final Section paragraphProps = new Section();
paragraphProps.setNamespace(OfficeNamespaces.STYLE_NS);
paragraphProps.setType(PARAGRAPH_PROPERTIES);
paragraphProps.setAttribute(OfficeNamespaces.FO_NS, OfficeToken.BACKGROUND_COLOR, "transparent");
paragraphProps.setAttribute(OfficeNamespaces.FO_NS, "text-align", "start");
paragraphProps.setAttribute(OfficeNamespaces.FO_NS, KEEP_WITH_NEXT, ALWAYS);
paragraphProps.setAttribute(OfficeNamespaces.FO_NS, KEEP_TOGETHER, ALWAYS);
paragraphProps.setAttribute(OfficeNamespaces.STYLE_NS, "vertical-align", "top");
variablesSectionStyle.addNode(paragraphProps);
final Section textProps = new Section();
textProps.setNamespace(OfficeNamespaces.STYLE_NS);
textProps.setType("text-properties");
textProps.setAttribute(OfficeNamespaces.FO_NS, "font-variant", NORMAL);
textProps.setAttribute(OfficeNamespaces.FO_NS, "text-transform", NONE);
textProps.setAttribute(OfficeNamespaces.FO_NS, "color", "#ffffff");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-outline", OfficeToken.FALSE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-blinking", OfficeToken.FALSE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-line-through-style", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-line-through-mode", "continuous");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-position", "0% 100%");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "font-name", "Tahoma");
textProps.setAttribute(OfficeNamespaces.FO_NS, "font-size", "1pt");
textProps.setAttribute(OfficeNamespaces.FO_NS, "letter-spacing", NORMAL);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "letter-kerning", OfficeToken.FALSE);
textProps.setAttribute(OfficeNamespaces.FO_NS, "font-style", NORMAL);
textProps.setAttribute(OfficeNamespaces.FO_NS, "text-shadow", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-underline-style", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-underline-mode", "continuous");
textProps.setAttribute(OfficeNamespaces.FO_NS, "font-weight", NORMAL);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-rotation-angle", "0");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-emphasize", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-combine", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-combine-start-char", "");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-combine-end-char", "");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-blinking", OfficeToken.FALSE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-scale", "100%");
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "font-relief", NONE);
textProps.setAttribute(OfficeNamespaces.STYLE_NS, "text-display", NONE);
variablesSectionStyle.addNode(textProps);
return variablesSectionStyle;
}