The "Top Level" refers to the children of the document element.
Any element can occur at the top level but it must have a namespace
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0' xmlns:my="http://cde.berkeley.edu/my/other/stuff" > <!-- your rules here --> <my:other-stuff type="random-crap"/> </xsl:transform>
But this is illegal:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> <!-- your rules here --> <mr-no-namespace-name/> </xsl:stylesheet>
Typically, you'll use elements from the XSLT namespace.