<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:template match="/">
		<html>
			<head>
				<title>
				    
					<xsl:value-of select="/rss/channel/title"/> (<xsl:value-of select="/rss/channel/pubDate"/>)
				</title>
				<link rel="stylesheet" type="text/css" href="/include/ie.css"/>
				<style>
					h1 {text-align: center}
					h2 {text-align: center}
					body {padding: 10px}
					p {line-height: 13pt}
				</style>
			</head>
			<body>
			    
				<table width="485" cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td>
							<h2>U.S. Securities and Exchange Commission's Podcast</h2>
						</td>
					</tr>
					
					<tr>
						<td>
							<h1><a href="http://www.sec.gov/investor/oiea_podcasts.htm"><xsl:value-of select="/rss/channel/title"/></a></h1>
						</td>
					</tr>
					<tr>
						<td>
							<h2>Updated: <xsl:value-of select="/rss/channel/pubDate"/></h2>
						</td>
					</tr>
					<tr>
						<td>
							<xsl:apply-templates select="/rss/channel/item"/>
						</td>
					</tr>
				</table>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="item">
		<p><a href="{guid}"><xsl:value-of select="title"/></a><br/>
		<xsl:value-of select="description"/><br/>
		<b>Published: <xsl:value-of select="pubDate"/></b></p>
	</xsl:template>
</xsl:stylesheet>