<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="leftPage" page-height="29.6cm" page-width="21cm" margin-left="0.5cm" margin-right="1cm" margin-top="0.5cm" margin-bottom="0.5cm">
			<fo:region-body margin-top="1.1cm" margin-bottom="1.1cm"/>
			<fo:region-before extent="1cm"/>
		</fo:simple-page-master>
		<fo:simple-page-master master-name="rightPage" page-height="29.6cm" page-width="21cm" margin-left="1cm" margin-right="0.5cm" margin-top="0.5cm" margin-bottom="0.5cm">
			<fo:region-body margin-top="1.1cm" margin-bottom="1.1cm"/>
			<fo:region-before extent="1cm"/>
		</fo:simple-page-master>
		<fo:page-sequence-master master-name="contents">
			<fo:repeatable-page-master-alternatives>
				<fo:conditional-page-master-reference master-reference="leftPage" odd-or-even="even"/>
				<fo:conditional-page-master-reference master-reference="rightPage" odd-or-even="odd"/>
			</fo:repeatable-page-master-alternatives>
		</fo:page-sequence-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="contents" initial-page-number="2">
		<fo:static-content flow-name="xsl-region-before">
			<fo:block font-family="Helvetica" font-size="10pt" text-align="center">
		SVG Test
	</fo:block>
		</fo:static-content>
		<fo:flow flow-name="xsl-region-body">
			<fo:block font-size="8pt">
		Here comes my SVG image:
	</fo:block>
			<fo:block>
				<fo:instream-foreign-object>
					<svg:svg xmlns:svg="http://www.w3.org/2000/svg" width="23mm" height="7mm">
						<svg:desc>SVG Flow Image for BauRG</svg:desc>
						<svg:rect width="23mm" height="7mm" x="0px" y="0px" fill="black"/>
						<svg:text y="28px" x="5px" font-family="AGaramond" font-weight="bold" font-size="20pt" fill="white" font-stretch="condensed">BauRG</svg:text>
					</svg:svg>
				</fo:instream-foreign-object>
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

