Panel pnlSep = new Panel();
pnlSep.widthProperty().bind(clientWidthProperty());
// TODO set styleable
pnlSep.heightProperty().set(1);
// TODO set styleable
pnlSep.backgroundProperty().set(new ColorBackground(Color.BLACK));
root.getChildren().add(pnlSep);
root.addEmptyCell(2);
}