<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>