﻿<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/libraryInfo">
	<html><head>
	<title>Library Members</title>
	<style type="text/css">
<!--
.style1 {
	color: #CCCC99;
	font-family: Bembo, "Lucida Sans Regular";
}
-->
</style></head>
	<body><font face="verdana" color="white">The Members</font>
	<table border="0" width="213" cellspacing="1" cellpadding="1">
		<xsl:apply-templates>
	</table>
	</body></html>
</xsl:template>

	<xsl:template match="library">
		<tr bgcolor="#003366">
			<td><span class="style1"><xsl:value-of select="name"/></span></td>
			<!-- <td><xsl:apply-templates select="name"></td> -->
			<td><xsl:apply-templates select="location"></td>
			<td><xsl:apply-templates select="openHours"></td>
			<td><xsl:apply-templates select="contact"></td>
			<td><xsl:apply-templates select="comments"></td>
		</tr>
	</xsl:template>
	<xsl:template match="location">
		<xsl:value-of select="."/>
	</xsl:template>
</xsl:stylesheet>
<!-- inline <p style="color: sienna; margin-left: 20px">
This is a paragraph
</p> -->