<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <fo:layout-master-set>
    <!-- layout for all pages -->
    <fo:simple-page-master master-name="all"
                  page-height="29.7cm" 
                  page-width="21cm"
                  margin-top="1cm" 
                  margin-bottom="2cm" 
                  margin-left="2.5cm" 
                  margin-right="2.5cm">
      <fo:region-body
	  	margin-top="3cm" margin-bottom="2cm"
		column-count="2" column-gap="0.25in"/>
      <fo:region-before extent="3cm"/>
      <fo:region-after extent="2cm"/>
    </fo:simple-page-master>
  </fo:layout-master-set>

  <fo:page-sequence master-reference="all">
	
    <fo:flow flow-name="xsl-region-body">
      <fo:block font-size="8pt" font-family="sans-serif" line-height="10pt" space-after.optimum="10pt" white-space-collapse="false">
	%%content%%	  
      </fo:block>

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

