
<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" id="table73">
		<xsl:for-each select="row">
			<xsl:if test="position() mod 4= 1"><xsl:value-of select="string('&lt;tr&gt;')" disable-output-escaping="yes"/></xsl:if>
			<td width="25%" valign="top" style="border-left:0px solid #cccccc;padding-left:0px;"><xsl:apply-templates select="."/></td>
			<xsl:if test="position() mod 4 = 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 width="100%" cellpadding="0" cellspacing="0">
	<xsl:choose>
			<xsl:when test="$ImageUrl!=''">
			</xsl:when>
			<xsl:otherwise>
				<tr>
					<tr><td colspan="2" style="border-bottom:1px dotted #cccccc;height:3px;padding:0px; font-size:1pt;">&#160;</td></tr>
					<tr>
					<td  style="text-align:left">
						<a style=""> (
						<xsl:value-of select="Categoria" disable-output-escaping="yes"/>
						) </a>
					</td>
						<td width="60%" align="left" valign="top" style="text-align: left; background-image: url('/_layouts/images/navBullet.gif');background-repeat:no-repeat;background-position:left top;">
						<a target="_blank" style="padding-left:15px;">
						<xsl:attribute name="href"><xsl:value-of select="Direccion_x0020_Url"/></xsl:attribute>
						<xsl:value-of select="Title" disable-output-escaping="yes"/>
						</a>
					</td>
					</tr>
				</tr>
			</xsl:otherwise>
		</xsl:choose>
</table>
</xsl:template>
</xsl:stylesheet>

