  <?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
  <xsl:import href="shared.xsl" /> 
  <xsl:output method="html" /> 
  <xsl:variable name="title" select="/rss/channel/title" /> 
 <xsl:template match="/">
 <html>
  <xsl:call-template name="head" /> 
  <xsl:apply-templates select="/rss/channel" /> 
  </html>
  </xsl:template>
 <xsl:template match="/rss/channel">
 <body id="textfeed" onload="go_decoding(); setCopyPaste();" style="text-align: center !important;">
  <div style="display: none;" id="cometestme">&amp;</div> 
 <div id="align">
 <div id="wrapper">
 <div id="padding3">
 <div id="outline">
 <div id="header">
  <div id="feed_logo" /> 
 <table cellpadding="0" cellspacing="0" border="0">
 <tr>
 <td valign="top" style="padding-right: 5px; padding-top: 3px;">
  <img src="xml.gif" width="16" height="16" alt="" /> 
  </td>
 <td valign="top">
<span class="title">
  <xsl:value-of select="$title" /> 
  </span>
  <br /> 
  <div class="identifier"></div> 
  </td>
  </tr>
 <tr>
  <td colspan="2" class="identifier" /> 
  </tr>
  </table>
  </div>
 <div class="content" style="clear: both;">
 <!--  Page Content 
  --> 
  <xsl:call-template name="intro" /> 
 <!--  Feed Content 
  --> 
 <div class="content" style="clear: both;">
 <h1>
  Latest feed content from 
  <xsl:value-of select="$title" /> 
  </h1>
 <ul id="content">
 <xsl:choose>
 <xsl:when test="/rss/channel/item">
  <xsl:apply-templates select="/rss/channel/item" /> 
  </xsl:when>
 <xsl:otherwise>
  <xsl:call-template name="noItems" /> 
  </xsl:otherwise>
  </xsl:choose>
  </ul>
  </div>
  </div>
  </div>
  </div>
  </div>
 <div id="footer">
  <a style="text-decoration:none;" href="http://www.takesolutions.com/"> TAKE Solutions </a>  - 2011
 
  </div>
  </div>
  </body>
  </xsl:template>
 <xsl:template match="/rss/channel/item" name="feed-item">
 <li class="syndication-list-item">
 <h3>
 <a href="{link}">
  <xsl:value-of select="title" /> 
  </a>
  </h3>
 <xsl:if test="pubDate">
 <span class="syndication-list-item-date">
  -
  <xsl:value-of select="pubDate" /> 
  
  </span>
  </xsl:if>
<div name="decodeable" class="syndication-list-item-description">
  <xsl:value-of select="description" disable-output-escaping="yes" /> 
  </div>
  </li>
  </xsl:template>
  </xsl:stylesheet>
