<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<!-- defines the layout master -->
<fo:layout-master-set>
<fo:simple-page-master master-name="first"
page-height="21cm"
page-width="99mm"
margin-top="5mm"
margin-bottom="10mm"
margin-left="5mm"
margin-right="5mm">
<fo:region-body margin-top="5mm" margin-bottom="5mm"/>
<fo:region-before extent="5mm"/>
<fo:region-after extent="5mm"/>
</fo:simple-page-master>
</fo:layout-master-set>

<!-- starts actual layout -->
<fo:page-sequence master-reference="first">
                                                                                           
<fo:flow flow-name="xsl-region-body">

<fo:block font-family="monospace" text-align="start" white-space-collapse="false">
%%content%%
</fo:block>

</fo:flow>
</fo:page-sequence>
</fo:root>
