<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/">
  <html>
  <body>
  <p style="font-family: Verdana, Arial, sans-serif;
			color:#8e2828;
			font-weight:bolder;
			line-height:16pt;
			text-align:left;">
	2007 Random Access Articles</p>
    <table>
      <xsl:for-each select="newsletter/articles/version">
		
		<tr>
			<td style="font-family:sans-serif; 
						font-size: 11pt;
						font-weight:bold;
						color:#4a5979;
						text-align:left;
						border-bottom:1px solid #ecedec;
						margin-top:20px;">	
				<xsl:value-of select="date"/>
			</td>
			</tr>
			
			<tr>
				<td style="font-family:Verdana, Arial, sans-serif;
							font-size: 11pt;
							color:#bbbdc1;
							font-weight:bold;
							line-height:14pt;
							text-align:left;">
				
						<xsl:value-of select="section1"/>
				</td>
				</tr>
				
				<tr>
				<td style="padding-left:20px;
							font-family:Verdana, Arial, sans-serif;
							font-size:8pt;
							color:#000000;
							text-align:left;">
						<xsl:value-of select="articletitle1"/>
				</td>
				</tr>
				
				<tr>
				<td style="font-family:Verdana, Arial, sans-serif;
							font-size: 11pt;
							color:#bbbdc1;
							font-weight:bold;
							line-height:14pt;
							text-align:left;">
						<xsl:value-of select="section2"/>
				</td>
				</tr>
					
				<tr>	
				<td style="padding-left:20px;
							font-family:Verdana, Arial, sans-serif;
							font-size:8pt;
							color:#000000;
							text-align:left;">
						<xsl:value-of select="articletitle2"/>
				</td>
				</tr>
				
				<tr>
				<td style="font-family:Verdana, Arial, sans-serif;
							font-size: 11pt;
							color:#bbbdc1;
							font-weight:bold;
							line-height:14pt;
							text-align:left;">
					<xsl:value-of select="section3"/>
				</td>
				</tr>
				
				<tr>
				<td style="padding-left:20px;
						   padding-bottom: 20px;
							font-family:Verdana, Arial, sans-serif;
							font-size:8pt;
							color:#000000;
							text-align:left;">
						<xsl:value-of select="articletitle3"/>
				</td>
				</tr>
	  </xsl:for-each>
	  </table>
  </body>
  </html>
	</xsl:template>				
</xsl:stylesheet>