<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes" omit-xml-declaration="yes" encoding="utf-8"/>
    <xsl:template match="/">
        <table>
            
              <xsl:apply-templates select="/*/*/item"></xsl:apply-templates>
        </table>
    </xsl:template>
    <xsl:template match="item[position()&lt;4]">
        <tr>
            <xsl:element name="td">
                <xsl:attribute name="class">ms-vb</xsl:attribute>
                <xsl:attribute name="Width">80%</xsl:attribute>
                <span class="ms-announcementtitle">
                    <xsl:element name="A">
                      <xsl:attribute name="href">
                        <xsl:value-of select="link"/>
                      </xsl:attribute>
                      <xsl:value-of select="title" />
                    
                    </xsl:element>
                </span>
                
            </xsl:element>
	    <td class="ms-vb" width="20%" nowrap>
                <xsl:value-of select="pubDate"/>
            </td>
        </tr>
        <tr>
            <td class="ms-vb" colspan="2">
                
                <xsl:apply-templates select="description"></xsl:apply-templates>                
                
            </td>
        </tr>
    </xsl:template>
    <xsl:template match="description">
	<div class="MsoNormal" style="margin:0cm 0cm 0pt;font face:Calbri size=3">
        <xsl:value-of select="substring(.,0,300)" disable-output-escaping ="yes"></xsl:value-of>
        </div>
    </xsl:template>
    
    <xsl:template match="*">
    </xsl:template>
</xsl:stylesheet>
  
