I followed theRospetto's Instructions from last year. He is absolutely right - There are some instructions missing from that file, which once you put back [I used textedit, to open and then edit the file] works perfectly. Thanks theRospetto!
brian
<!-- Sets a version number in Word 2013. -->
brian
<!-- Sets a version number in Word 2013. -->
<xsl:when test="b:XslVersion">
<xsl:choose>
<xsl:when test="msxsl:node-set($data)/general/version2013">
<xsl:value-of select="msxsl:node-set($data)/general/version2013"/>
</xsl:when>
<xsl:otherwise>
<!-- Fallback method : use a dummy version number of 1. -->
<xsl:text>1</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!-- Set the name of the style in Word 2013. -->
<xsl:when test="b:StyleNameLocalized">
<xsl:value-of select="msxsl:node-set($data)/general/stylename"/>
</xsl:when>