<?xml version="1.0" ?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <HTML><BODY>
  <center>
  <H1>Patient Information</H1>
  </center>
  <xsl:comment>apply all children templates</xsl:comment>
  <xsl:apply-templates/>

<br/><br/>
<H4><center><FONT COLOR="BLUE">
	This Information was provided to you by<br/><br/>
	<img src="../xml4pharma1.gif"/>
	</FONT>
</center></H4>

  </BODY></HTML>
</xsl:template>


<!-- The separate templates -->
<xsl:template match="Patient_information">
  <H2><center><span style="background-color:#FFFF00; color:#0000FF; text-align:center">
	<xsl:value-of select="Product_title"/>
      </span>
  </center></H2>

<xsl:comment>apply child template Country and Language</xsl:comment>
  <H5>Country: <FONT COLOR="BLUE">
			<xsl:value-of select="Country">
		    	</xsl:value-of></FONT>
  </H5>
  <H5>Language: <FONT COLOR="BLUE">
			<xsl:value-of select="Language">
		    	</xsl:value-of></FONT>
  </H5>

  <xsl:comment>apply child template Information_item/item_text</xsl:comment>
  <xsl:apply-templates select="Information_item/item_text"/>
</xsl:template>

<xsl:template match="Information_item/item_text">
  <H4><B><FONT COLOR="RED">
  <xsl:value-of select="emphasis"/>
  </FONT></B></H4>
  <H4><xsl:value-of select="normal"/></H4>
</xsl:template>

</xsl:stylesheet>

