XSL stylesheet 2

<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
<xsl:variable name="color"></xsl:variable>
<xsl:template match="//animal">
<xsl:choose>
<xsl:when test='boolean($color)'>
<P style="color:{$color}">
<xsl:value-of select="."/></P>
</xsl:when>
<xsl:otherwise>
<P><xsl:value-of select="."/></P>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>