<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

  <xsl:script><![CDATA[
    x=0;
  ]]></xsl:script>

  <xsl:template match="/">
  <xsl:for-each order-by="- date" select="news/item">
    <xsl:if expr="x++ &lt; 10">
	  <DIV STYLE="background-color:#3355AA; color:white; padding:4px; width:350px; margin-left:20px;">
        <SPAN STYLE="font-weight:bold; color:white;"><xsl:value-of select="name"/></SPAN>
        - <xsl:value-of select="date"/>
      </DIV>
      <DIV STYLE="margin-left:40px; margin-bottom:1em; font-size:10pt; width:300px;">

	   <xsl:apply-templates select="text/*">
		 <!-- recursively apply this template to them -->
		 <xsl:template>
		   <xsl:copy>
			 <xsl:apply-templates select="@* | * | comment() | pi() | text()"/>
		   </xsl:copy>
		 </xsl:template>
	   </xsl:apply-templates>
      </DIV>
	 </xsl:if>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>