<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="glossaire">
		<html>
		<head><title>Glossaire.XML</title></head>
		<body style="background: #A86A2F; font-family: Verdana, Helvetica, Arial, sans-serif; scrollbar-3dlight-color: #ffffff; 
					 scrollbar-arrow-color: #cccccc; scrollbar-darkshadow-color: #666666; scrollbar-face-color: #ff9900; 
					 scrollbar-highlight-color: #cccccc; scrollbar-shadow-color: #666666; scrollbar-track-color: #999999;">
			<table border="1" align="center" cellspacing="0" cellpadding="4" bordercolor="#000000" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12; font-weight: normal; color: #000000; border: 0; position: relative; width: 450">
			<tr><td colspan="3" style="font-weight: bold; color: #ffffff; background: #000000; text-align: center">Utilisez "Fichier/Enregistrer sous" pour récupérer ce fichier XML</td></tr>
			<tr><td colspan="3" style="font-weight: bold; color: #ffffff; background: #000000; text-align: center; font-size: 8pt"><a style="color: #ffffff" href="glossaire.xsl">Cliquer ici pour voir la feuille de style, et faites "Fichier/Enregistrer sous" pour l'enregistrer (dans le même répertoire que ce fichier XML)</a></td></tr>
			<tr><td style="font-weight: bold; background: #ffffff; text-align: center">Terme</td><td style="font-weight: bold; background: #ffffff; text-align: center">Définition</td><td style="font-weight: bold; background: #ffffff; text-align: center">Anglais</td></tr>
			<xsl:apply-templates select="terme"/>
			<tr><td colspan="3" style="font-weight: bold; color: #ffffff; background: #000000; text-align: center; font-size: 9pt"><a style="color: #ffffff" href="javascript: self.close()">Fermer la fenetre</a></td></tr>
			</table>
		</body>
		</html>
	</xsl:template>
		
	<xsl:template match="terme">
		<tr>
		<xsl:apply-templates select="francais"/>
		<xsl:apply-templates select="definition"/>
		<xsl:apply-templates select="anglais"/>
		</tr>
	</xsl:template>
	
	<xsl:template match="francais">	
		<td style="background: #FAD69C; text-align: left; font-size: 10; font-weight: bold; color: #000000">
		<xsl:value-of select="." />
		</td>
	</xsl:template>
	
	<xsl:template match="definition">
		<td style="background: #FFAB51; text-align: justify; font-size: 10; font-weight: normal; color: #000000">
		<xsl:value-of select="." />
		</td>
	</xsl:template>

	<xsl:template match="anglais">
		<td style="background: #FFAB51; text-align: right; font-size: 10; font-weight: bold; color: #000000">
		<xsl:value-of select="." />		
		</td>
	</xsl:template>
	
</xsl:stylesheet>