<?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="example" page-height="16.8in" page-width="21.2in" margin-left="1cm" margin-top="1cm" margin-bottom="1cm" margin-right="1cm">
			<fo:region-body/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="example">
		<fo:flow flow-name="xsl-region-body">
			<fo:table width="518mm">
				<fo:table-column number-columns-repeated="2"/>
				<fo:table-body>
					<fo:table-row height="32pt">
						<fo:table-cell>
							<fo:block color="blue">
								cell-value
							</fo:block>
						</fo:table-cell>
						<fo:table-cell/>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
		</fo:flow>
	</fo:page-sequence>
</fo:root>