﻿<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="html" />

  <xsl:template match="/WCData">
    <!-- BannerID,ImageURL,ProfileID,NavigateURL,AlternateText,Target,BannerName,Keyword,OutputType -->
        <xsl:for-each select="BannerAdsByBannerNameAndAdKeyword_1_Result">
          <xsl:if test="position() = 1">
            <style>
              #MobileBannerAd1 { height: 50px!important; }
            </style>
          </xsl:if>
        </xsl:for-each>
  </xsl:template>

</xsl:stylesheet>



