<?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="microcontroleurs">
<html>
<body bgcolor="#ffffcc">
							<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="micro8bits">
		<xsl:number/> <xsl:apply-templates/>
</xsl:template>
<xsl:template match="nom | fabricant">
					<ul><li>						
						  <div style="background-color:#ff9999;color:white;font-weight:bold;padding:4px;font-size=16pt"><xsl:value-of select="."/></div>
					</li></ul>
</xsl:template>
</xsl:stylesheet>