<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
	<html>
		<body>
		<xsl:apply-templates/>
		</body>
	</html>
</xsl:template>

<xsl:template match="countries">
	<table>
		<tbody>
	<xsl:apply-templates/>
		</tbody>
	</table>
</xsl:template>

<xsl:template match="country">
	<tr>
		<td>
			<xsl:value-of select='@code'/>
		</td>
		<td>
			<xsl:value-of select="."/>
		</td>
	</tr>
</xsl:template>

</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2007. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios/><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
</metaInformation>
-->