<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="rss.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" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:template match="/">
<xsl:for-each select="/rss/channel">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><xsl:value-of select="title"></xsl:value-of></title>
<style type="text/css">
#body{ padding:0px; width:100%; margin:0px; text-align:center;}
#moban{ width:780px; margin:0 auto; background:#e6e6e6; border:1px solid #CCCCCC;}
h2{ text-align:center; text-indent:10px; font-family:Arial, Helvetica, sans-serif; font-size:20px; margin-top:10px;  }
h2 a{ color:#333; text-decoration:none;}
h3{ text-align:left; font-size:14px; line-height:18px; font-family:Arial, Helvetica, sans-serif; text-indent:10px; padding:5px; margin-top:10px; border:1px dashed #999999; width:98%; margin:0 auto; font-weight:normal;}
table{ width:98%; margin:0 auto; font-family:Arial, Helvetica, sans-serif; font-size:9px; background:#9e9e9e;}
#item{margin-top:10px; padding:10px; font-family:Arial, Helvetica, sans-serif; font-size:14px; background:#DDDDDD; color:#003300; text-align:left; width:96%; margin:0 auto; margin-top:6px; margin-bottom:6px; border:1px dashed #999999;}
#item table tr td a{ font-size:14px; font-weight:bold; color:#000000;}
</style>
</head>

<body>
<div id="body">
<div id="moban">
<h2><a href="{link}"><xsl:value-of select="title"></xsl:value-of></a>
</h2>
<h3>
<xsl:value-of select="description"></xsl:value-of>
</h3>
<table>
</table>
<xsl:for-each select="item">
 <div id="item">
  <table>
    <tr>
      <td colspan="2"><a href="{link}"><xsl:value-of select="title"></xsl:value-of></a></td>
      </tr>
    <tr>
      <td style="font-size:14px;"><xsl:value-of select="description"></xsl:value-of></td>
    </tr>
    <tr>
      <td height="20" style="text-align:right;">
      <xsl:value-of select="pubDate"></xsl:value-of>
      </td>
    </tr>
  </table>
</div>

</xsl:for-each>
</div>
</div>
</body>
</html>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>