<?xml	version="1.0"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"><xsl:template match="/"><html><head><title>FLIGHT OPTIONS FROM RICHMOND TO LONDON</title></head><body bgcolor=""><h1 align="center"><font face="comic sans ms">FLIGHT OPTIONS FROM RICHMOND TO LONDON</font></h1><br/><xsl:for-each select="trip"><xsl:for-each select="option"><h2><b>Option:</b></h2><h3><xsl:for-each select="carrier"><i>Carrier:</i><xsl:value-of/></xsl:for-each></h3><h3><xsl:for-each select="price"><i>Price:</i><xsl:value-of/></xsl:for-each></h3><xsl:for-each select="passenger-list"><h3><i>Passengers List:</i></h3><xsl:for-each select="person">	<h3><xsl:value-of select="@fname"/>	<xsl:value-of select="@lname"/>	<xsl:value-of select="@ssn"/></h3></xsl:for-each></xsl:for-each><xsl:for-each select="path"><h3><i>Path:</i></h3><table width="120%" border="2" cellpadding="10"><thead><tr><th>Flight number</th><th>Aircraft</th><th>day</th><th>Day-of-Month</th><th>Month</th><th>Year</th><th>Time</th><th>Source</th><th>Destination</th></tr></thead><tbody><xsl:for-each select="flight"><tr><td><xsl:value-of select="@number"/></td><xsl:for-each select="aircraft"><td><xsl:value-of/></td></xsl:for-each><xsl:for-each select="day"><td><xsl:value-of/></td></xsl:for-each><xsl:for-each select="day-of-month"><td><xsl:value-of/></td></xsl:for-each><xsl:for-each select="month"><td><xsl:value-of/></td></xsl:for-each><xsl:for-each select="year"><td><xsl:value-of/></td></xsl:for-each><xsl:for-each select="time"><td><xsl:value-of/></td></xsl:for-each><td><xsl:for-each select="source">	<xsl:for-each select="city">	<xsl:value-of/>	</xsl:for-each>(	<xsl:for-each select="airport-code">	<xsl:value-of/>	</xsl:for-each>)	<xsl:for-each select="province">	<xsl:value-of/>	</xsl:for-each>	<xsl:for-each select="country">	<xsl:value-of/>	</xsl:for-each></xsl:for-each></td><td><xsl:for-each select="destination">	<xsl:for-each select="city">	<xsl:value-of/>	</xsl:for-each>(	<xsl:for-each select="airport-code">	<xsl:value-of/>	</xsl:for-each>)	<xsl:for-each select="province">	<xsl:value-of/>	</xsl:for-each>	<xsl:for-each select="country">	<xsl:value-of/>	</xsl:for-each></xsl:for-each></td></tr></xsl:for-each></tbody></table></xsl:for-each></xsl:for-each><br/><br/></xsl:for-each><br/><br/></body></html></xsl:template></xsl:stylesheet>