<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template><xsl:apply-templates/></xsl:template>

<xsl:template match="text()"><xsl:value-of select="."/></xsl:template>

<xsl:template match="text()|@*"><xsl:value-of select="."/></xsl:template>

<xsl:template match="Name"><xsl:apply-templates/>
<font color="Blue"><b> <xsl:value-of select="."/><br/></b></font>
</xsl:template>

<xsl:template match="Address"><xsl:apply-templates/>
<xsl:value-of select="."/><br/></xsl:template>

<xsl:template match="City"><xsl:apply-templates/>
<xsl:value-of select="."/>, </xsl:template>

<xsl:template match="Zip"><xsl:apply-templates/>
<xsl:value-of select="."/><br/></xsl:template>

<xsl:template match="eMail"><xsl:apply-templates/>
<font color="Red"><xsl:value-of select="."/><br/></font></xsl:template>

<xsl:template match="hPhone"><xsl:apply-templates/>
<xsl:value-of select="."/><br/><hr/></xsl:template>

<xsl:template match="Work"><xsl:apply-templates/>
<xsl:value-of select="."/><br/><hr/></xsl:template>

<xsl:template match="State"><xsl:apply-templates/>
<xsl:value-of select="."/></xsl:template>

<xsl:template match="contact"><xsl:apply-templates/>
<br/></xsl:template>

</xsl:stylesheet>
