<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
	

	<xsl:template match="/company_list">

	<html>
		<body style="font-family: Arial">
		
			<h1>Top 3 stores in the uk regarding employees per sales</h1>
		
			<ul>
				<xsl:for-each select="company[@country = 'uk']">
				<xsl:sort select="sales div employees"/>
					<xsl:if test="position() &lt; 4">
						<li>
							Company: <xsl:value-of select="name" />
							<br />
							Employees: <xsl:value-of select="employees" />
							<br />
							Sales: <xsl:value-of select="sales" />
						</li>
					</xsl:if>	
				</xsl:for-each>
			</ul>		

		</body>
	</html>
		
			
	</xsl:template>


</xsl:stylesheet>