<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rs='urn:schemas-microsoft-com:rowset' xmlns:z='#RowsetSchema'
version="1.0">

<xsl:output method="html" indent="yes" omit-xml-declaration="yes"/>

<xsl:template match="/data">
	<table width="100%"    border="0" style="border-bottom:1px dotted #999999;"  id="table73">
		<xsl:for-each select="row">
			<xsl:if test="position() mod 3 = 1"><xsl:value-of select="string('&lt;tr&gt;')" disable-output-escaping="yes"/></xsl:if>
			<td width="33%;" valign="top" style="border-right:1px solid #cccccc;padding-left:0px;"><xsl:apply-templates select="."/></td>
			<xsl:if test="position() mod 3 = 0"><xsl:value-of select="string('&lt;/tr&gt;')" disable-output-escaping="yes"/></xsl:if>
		</xsl:for-each>
	</table>	
</xsl:template>
<xsl:template match="row">
<xsl:variable name="ImageUrl" select="substring-before(substring-after(PublishingRollupImage,'src=&quot;'),'&quot;')"/>
<table  style=" vertical-align:top; background-position:left top; margin-top:0px;padding-top:0px; width:100%; ">
<tbody>
	<tr>
				<tr>
					<td align="left" valign="top"  style="text-align: left; ">
						<a style="font-size:12pt;font-weight:bold;">
						<xsl:attribute name="href"><xsl:value-of select="Ver"/></xsl:attribute>
						<xsl:value-of select="Title" disable-output-escaping="yes"/>
						</a>
					</td>
				</tr>
				<tr><td style="border-bottom:dotted 1px #333333; border-top:0px; height:0px;padding:0px; font-size:1pt;" colspan="3">&#160;</td></tr>
				<tr>
					<td align="left" valign="top" style="text-align: left; ">
						<a style=" font-family:arial; font-style: normal; text-align: left; font-size:10px; color:#333333; text-decoration:none;">
						<xsl:value-of select="Observaciones" disable-output-escaping="yes"/>
						</a>
					</td>
				</tr>
	</tr>
</tbody>
</table>
</xsl:template>
</xsl:stylesheet>

