<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>

<xsl:template match="schemaCV">
	
<html>
    <body bgcolor="#FFFFFF">
  	<h2>CV de <xsl:value-of select="Identite/Prenom"/> <xsl:value-of select ="translate(Identite/Nom,'aàbcdeéèêfghijklmnoôpqrstuvwxyz','AÀBCDEÉÈÊFGHIJKLMNOÔPQRSTUVWXYZ')"/></h2>
	
<table width="75%">
  <tr>
    <td width="35%">Dte naissance :
      	<span style="color:red; padding-right:3pt">
		<xsl:value-of select="Identite/DteNaissance"/>
		</span></td>
    <td bgcolor="#CCCCCC"><xsl:value-of select="Identite/Rue"/><br/>
	<xsl:value-of select="Identite/Cp"/>  <xsl:value-of select="Identite/Ville"/><br/>
	Tel : <xsl:value-of select="Identite/Cp"/></td>
  </tr>
</table>
	    <br/>
		<br/>

		<table width="75%">
  		<tr>
    	<td bgcolor="#0000FF"><b><font color="#FFFFFF" size="+1">Expériences :</font></b></td>
  		</tr>
		</table>
		<xsl:for-each select="Experience">
  		<li>
  		<span style="font-style:italic">
		<xsl:value-of select="."/>  
		</span><br/>
  		</li>
  		</xsl:for-each>
		<br/>
		
		<table width="75%">
  		<tr>
    	<td bgcolor="#0000FF"><b><font color="#FFFFFF" size="+1">Diplomes :</font></b></td>
  		</tr>
		</table>
		<xsl:for-each select="Diplomes">
  		<li>
  		<span style="font-style:italic">
		<xsl:value-of select="."/>  
		</span><br/>
  		</li>
  		</xsl:for-each>

</body>
	</html>

</xsl:template>

</xsl:stylesheet>
<!-- Stylus Studio meta-information - (c)1998-2004. Sonic Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="Motu.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition></MapperMetaTag>
</metaInformation>
-->