Case matters with XML names so instead of
Code:
<xsl:value-of select="//Group/Detail/@CustNo"/>
you need to make sure you use the same case as the elements and attributes in the input XML have and there you have "Custno" attribute. Based on that I think you want
Code:
<xsl:value-of select="Detail/Custno"/>