<?xml version="1.0" encoding="UTF-8"?><!-- DWXMLSource="http://www.watercolor-painting-tips.com/watercolor-painting-tips.xml" --><!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="/"><style type="text/css">
<xsl:comment>
.link {
	color: #036;
	font-size: 14px;
}
.desc {
	font-size: 10px;
}
</xsl:comment>
</style>


<xsl:for-each select="rss/channel/item">
  <xsl:if test="position() &lt;= 5">
    <h3 class="newsLink"><a href="{link}" class="link"><xsl:value-of select="title"/></a></h3>
    <p class="desc"><xsl:value-of select="description" disable-output-escaping="yes"/></p>
  </xsl:if>
  </xsl:for-each>
</xsl:template>
</xsl:stylesheet>