<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"	version="1.0">

<xsl:template match="/">
	<html>
		<head>
			<title>Ski Resort List</title>
		</head>
		<body bgcolor="#CCCCCC">

		<h1 align="center">Ski Resort List</h1>

		<xsl:apply-templates select="skiResortList/resort"/>

		</body>
	</html>
</xsl:template>

<xsl:template match="resort">

	<table width="600" cellpadding="0" cellspacing="0" bgcolor="#000000" align="center"> 
		<tr>
		<td>
		<table cellpadding="1" cellspacing="0" bgcolor="#FFFFFF" width="100%">
			<tr bgcolor="#99CCFF">
				<td><b>Resort Name</b>
				<br/><img src="images/blank.gif" width="130" height="1" /></td>
				<td width="100%"><xsl:apply-templates select="resortName"/></td>
			</tr>
			<tr>
				<td><b>Location</b>
				<br/><img src="images/blank.gif" width="130" height="1" /></td>
				<td><xsl:apply-templates select="location"/></td>
			</tr>
			<tr bgcolor="#99CCFF">
				<td><b>Website</b>
				<br/><img src="images/blank.gif" width="130" height="1" /></td>
				<td><xsl:apply-templates select="website"/></td>
			</tr>
			<tr>
				<td><b>Rating</b>
				<br/><img src="images/blank.gif" width="130" height="1" /></td>
				<td><xsl:apply-templates select="rating"/></td>
			</tr>
			<tr bgcolor="#99CCFF">
				<td><b>Comments</b>
				<br/><img src="images/blank.gif" width="130" height="1" /></td>
				<td><xsl:apply-templates select="comments"/></td>
			</tr>	
		</table>
		</td>
		</tr>
	</table>	
	<br/>

</xsl:template>

<xsl:template match="resortName">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="location">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="website">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="rating">
	<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="comments">
	<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>

