<?xml version="1.0"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/"><xsl:apply-templates select="location"/></xsl:template><xsl:template match="location"><div style="padding-right: 4px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 8pt"><xsl:apply-templates select="info"/></div></xsl:template><xsl:template match="info"><xsl:variable name="page" select="../@arg0"/><xsl:variable name="address"><xsl:for-each select="address/line"><xsl:if test="position() &gt; 1">, </xsl:if><xsl:value-of select="."/></xsl:for-each></xsl:variable><div style="margin-right: 2px; color: blue; font-size:8pt" ><b> <xsl:value-of select="title"/></b></div><div style="margin-right: 2px; color: blue" ><b><xsl:value-of select="title2"/></b></div><div style="padding-top:3px"><xsl:apply-templates select="address/line"/></div></xsl:template><xsl:template match="line"><div style="margin-right: 2px; color: black; font-size:8pt" ><xsl:value-of select="."/></div></xsl:template></xsl:stylesheet>
