<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.stylusstudio.com/xquery">
	<xsl:output method="html"/>
    <xsl:template match="/">
        <html>
            <head/>
            <body>
                <div style="font-family: Arial;font-size: 10pt;font-weight: normal;font-style: normal;text-decoration: none;text-align: none;color: #000000;background: transparent;">
                    <table align="none" border="2pt" cellspacing="1pt" cellpadding="1pt">
                        <tbody>
                            <tr bgcolor="lightcyan">
                                <td>
                                    <div style="text-align: center;">
                                        <span style="font-weight: bold;">
                                            <xsl:text>Name</xsl:text>
                                        </span>
                                        <br/>
                                    </div>
                                </td>
                                <td>
                                    <div style="text-align: center;">
                                        <span style="font-weight: bold;">
                                            <xsl:text>Extension</xsl:text>
                                        </span>
                                        <br/>
                                    </div>
                                </td>
                                <td>
                                    <div style="text-align: center;">
                                        <span style="font-weight: bold;">
                                            <xsl:text>Pager</xsl:text>
                                        </span>
                                        <br/>
                                    </div>
                                </td>
                            </tr>
                            <xsl:for-each select="/People/Person">
                                <xsl:sort select="Name"/>
                                <tr bgcolor="{if(position() mod 2 = 1) then &quot;white&quot; else &quot;azure&quot;}">
                                    <td>
                                        <div style="text-align: none;">
                                            <xsl:value-of select="Name"/>
                                            <br/>
                                        </div>
                                    </td>
                                    <td>
                                        <div style="text-align: none;">
                                            <xsl:value-of select="Extension"/>
                                            <br/>
                                        </div>
                                    </td>
                                    <td>
                                        <div style="text-align: none;">
                                            <xsl:value-of select="Pager"/>
                                            <br/>
                                        </div>
                                    </td>
                                </tr>
                            </xsl:for-each>
                        </tbody>
                    </table>
                    <br/>
                </div>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2006. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios/><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
</metaInformation>
-->