<xsl:stylesheet
    xmlns:xsl='http://www.w3.org/XSL/Transform/1.0'
    xmlns:fo='http://www.w3.org/XSL/Format/1.0'
    result-ns="fo">

  <xsl:template match='/'>
    <fo:display-sequence
                start-indent='6pt'
                end-indent='6pt'
                font-size='12pt'>
      <xsl:apply-templates/>
    </fo:display-sequence>
  </xsl:template>

  <xsl:template match="TITLE">
    <fo:block   font-size="18pt"
                background-color="#ffff00"
                start-indent="24pt">
      <xsl:apply-templates/>
    </fo:block>
  </xsl:template>

  <xsl:template match="LINE">
    <fo:block   start-indent="32pt">
      <xsl:apply-templates/>
    </fo:block>
  </xsl:template>

  <xsl:template match="SPEAKER">
    <fo:block   space-before="12pt">
      <xsl:apply-templates/>
    </fo:block>
  </xsl:template>

</xsl:stylesheet>

