<?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:template match="/">
        <html>
            <head/>
            <body>
                <div style="text-align: center;">
                    <span style="font-family: Arial;font-size: 12pt;font-weight: bold;color: #0000FF;">
                        <xsl:text>Results</xsl:text>
                    </span>
                    <span style="font-family: Arial;font-weight: bold;color: #0000FF;">
                        <br/>
                        <br/>
                        <table align="none" style="border-style: outset;border-width: 2pt;width: 100%;background-repeat: repeat" cellspacing="1pt">
                            <tbody>
                                <tr>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                            <span style="color: #000000;">
                                                <xsl:text>Paragraph explaining the project...</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                        <br/>
                        <table align="none" style="border-style: outset;border-width: 2pt;width: 100%;background-repeat: repeat" cellspacing="1pt">
                            <tbody>
                                <tr>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: center;color: #0000FF;">
                                            <xsl:text>Prepositions</xsl:text>
                                        </div>
                                    </td>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: center;color: #0000FF;">
                                            <xsl:text>Pronouns</xsl:text>
                                        </div>
                                    </td>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: center;color: #0000FF;">
                                            <xsl:text>Passive Verbs</xsl:text>
                                        </div>
                                    </td>
                                </tr>
                                <tr>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: left;color: #0000FF;">
                                            <xsl:for-each select="/text/body/p">
                                                <xsl:variable name="p" select="."/>
                                                <div>
                                                    <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                        <xsl:for-each select="preposition">
                                                            <xsl:variable name="preposition" select="."/>
                                                            <div>
                                                                <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                                    <xsl:value-of select="."/>
                                                                </div>
                                                            </div>
                                                        </xsl:for-each>
                                                    </div>
                                                </div>
                                            </xsl:for-each>
                                        </div>
                                    </td>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                            <xsl:for-each select="/text/body/p">
                                                <xsl:variable name="p1" select="."/>
                                                <div>
                                                    <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                        <xsl:for-each select="pronoun">
                                                            <xsl:variable name="pronoun" select="."/>
                                                            <div>
                                                                <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                                    <xsl:value-of select="."/>
                                                                </div>
                                                            </div>
                                                        </xsl:for-each>
                                                    </div>
                                                </div>
                                            </xsl:for-each>
                                        </div>
                                    </td>
                                    <td style="border-style: inset;border-width: 2pt;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                            <xsl:for-each select="/text/body/p">
                                                <xsl:variable name="p2" select="."/>
                                                <div>
                                                    <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                        <xsl:for-each select="be">
                                                            <xsl:variable name="be" select="."/>
                                                            <div>
                                                                <div style="font-weight: bold;text-align: none;color: #0000FF;">
                                                                    <xsl:value-of select="."/>
                                                                </div>
                                                            </div>
                                                        </xsl:for-each>
                                                    </div>
                                                </div>
                                            </xsl:for-each>
                                        </div>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </span>
                </div>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>