<?xml version="1.0"?>

<html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict">
	<body style="font-family:Arial,helvetica,sans-serif; font-size:12pt">
		<xsl:for-each select="Library/Book">
			<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#fafad2" border="1" align="left" bordercolor="#eee8aa">
				<tr>
					<td width="5%"/>
					<td width="95%">
						<font color="gray">Author -</font><b>
							<xsl:value-of select="FirstName"/></b>,<b>
							<xsl:value-of select="Surname"/></b>.<br/>
						<font color="gray">Title -</font><b>
							<xsl:value-of select="Title"/></b>
						<br/>
						<font color="gray">Quantity -</font><b>
							<xsl:value-of select="Quantity"/></b>
						<br/>
						<font color="gray">Price -</font><b>
							<xsl:value-of select="Price"/></b>
						<br/>
						<font color="gray">Year Published -</font><b>
							<xsl:value-of select="Year_Published"/></b></td></tr></table>
			<br/>
			<br/>
			<br/>
			<br/>
			<br/>
			<br/>
			<br/></xsl:for-each></body></html>

