<?xml version="1.0" encoding="utf-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:template match="rss"><html><head><title><xsl:value-of select="channel/title"/> RSS Feed</title><style>body {background-color: White;color: Black;	font-family: Arial, sans-serif;	font-size: 10pt; text-align: center;}#block { margin: 0px 5px; text-align: left;}h1 {font-size: 10pt;}h2 {font-size: 10pt;}p.description {padding-left: 8px;}div.footer {font-size: 8pt;	color: #808080;}hr {height: 1px; color: gray;}h3 {font-size: 7pt; color: silver; padding: 1px; margin-left: 8px;}</style></head><body><div id="block"><center><h1><xsl:value-of select="channel/title"/> RSS feed</h1><p>To view this RSS feed, you can download and install the free <a href="http://www.rssreader.com">RssReader</a> and add this feed URL.</p></center><hr /><xsl:apply-templates select="channel/item"/><hr /><div class="footer"><center>Created by <a href="http://www.rsspublisher.com">RssPublisher</a> 0.1.8 beta</center></div></div></body></html></xsl:template><xsl:template match="item"><h2><a href="{link}"><xsl:value-of select="title"/></a></h2><p class="description"><xsl:value-of select="description" disable-output-escaping="yes"/></p><h3><xsl:value-of select="pubDate"/></h3></xsl:template></xsl:stylesheet>