<?xml version="1.0" encoding="iso-8859-1" ?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
<xsl:output method = "html" />
<xsl:template match="groupe">
<xsl:apply-templates select="BBB"/>
</xsl:template>
<xsl:template match = "groupe" >
<link rel="stylesheet" type="text/css" href="style.css" />
<table>
<tr>
<xsl:for-each select = "BBB">
<xsl:choose>
<xsl:when test=". > 100">
<td class="plusQueCent">
<xsl:value-of select="."/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="."/></td>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>