<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:strip-space elements="*"/>
	<xsl:output omit-xml-declaration="yes"/>
	<xsl:template match="channel/title"/>
	<xsl:template match="channel/link"/>
	<xsl:template match="channel/language"/>
	<xsl:template match="channel/description"/>
	<xsl:template match="channel/copyright"/>
	<xsl:template match="channel/generator"/>
	<xsl:template match="channel/lastBuildDate"/>
	<xsl:template match="channel/image"/>
	<xsl:template match="channel/image/title"/>
	<xsl:template match="channel/image/url"/>
	<xsl:template match="channel/image/link"/>
	<xsl:template match="item">
		<xsl:apply-templates select="title"/>
		<xsl:apply-templates select="description"/>
		<xsl:apply-templates select="link"/>
		<xsl:apply-templates select="pubDate"/>
	</xsl:template>
	<xsl:template match="item/title">
<h3><xsl:value-of select="."/></h3>
	</xsl:template>
	<xsl:template match="item/description">
<p><xsl:value-of select="." disable-output-escaping="yes"/></p>
	</xsl:template>
	<xsl:template match="item/link">
<a><xsl:attribute name="href"><xsl:value-of select="."/></xsl:attribute>Full Story</a>
	</xsl:template>
	<xsl:template match="item/pubDate">
		<address><xsl:value-of select="."/></address><hr />
	</xsl:template>
</xsl:stylesheet>
