Is that file not included with the supporting files? :(
Anyway, the contents of that file are:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:param name="NavType" />
<xsl:output method="html" omit-xml-declaration="no"
doctype-public="officelive.microsoft.com"/>
<xsl:template match="/NavNodes">
<table cellspacing="0" class=" MSC_PrimaryNavFrame" >
<tr>
<xsl:for-each select="NavNode">
<td class="MSC_PrimaryNavLinkFrame aish" >
<div>
<a class="MSC_PrimaryNavLink">
<xsl:attribute name="class">
<xsl:text>MSC_PrimaryNavLink</xsl:text>
</xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="@url" />
</xsl:attribute>
<xsl:value-of select="@name"/>
</a>
</div>
<td class="MSC_PrimaryNavRightSpace"></td>
</td>
</xsl:for-each>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>
Robert