<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body bgcolor="#ffffcc">
				<xsl:for-each select="microcontroleurs/micro8bits">
						<ul><li>
						<xsl:choose>
						   <xsl:when test="nom=8051">
							   <div style="background-color:#ff9999;color:white;font-weight:bold;padding:4px;font-size=16pt"><xsl:value-of select="nom"/></div><br/>
							   <font face="arial" size="6"><xsl:value-of select="fabricant"/></font>
						   </xsl:when>
						   <xsl:otherwise>
							 				<xsl:choose>
											  <xsl:when test="nom='68hc11'">
								         <div style="background-color:#ffcc66;color:#ccffff;font-weight:bold;padding:4px;font-size=16pt"><xsl:value-of select="nom"/></div><br/>
								         <div style="background-color:#ccffff;color:#cccccc;font-weight:bold;padding:4px;font-size=20pt"><xsl:value-of select="fabricant"/></div>
												</xsl:when>
												<xsl:otherwise>
												   <xsl:value-of select="nom"/><br/>
													 <xsl:value-of select="fabricant"/>
												</xsl:otherwise>
											</xsl:choose>
						   </xsl:otherwise>
						</xsl:choose>
						</li></ul>			
				</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>