<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" 
                xmlns:html="http://www.w3.org/TR/REC-html40"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  <xsl:output method="html" version="1.0" encoding="iso-8859-1" indent="yes"/>
  
  <!-- Root template -->    
  <xsl:template match="/">
    <html>     
      <head>  
        <title>Article:<xsl:value-of select="article/header/subject"></xsl:value-of></title>
		<style type="text/css">
		  <![CDATA[
			<!--
			body {
				font-family: Verdana, Arial, Sans-Serif; 
				}
						
			h1 { 
				font-weight:bold;
				font-size:1.5em;
				margin-bottom:0;
				margin-top:1px; }
			
			h2 { 
				font-weight:bold;
				font-size:1.2em;
				margin-bottom:0; 
				color:#707070;
				margin-top:1px; }
				
			p {
				font-family: Verdana, Arial, Sans-Serif; 
			  }
					
			p.sml { 
				font-size:0.8em;
				margin-top:0; }
			
			
			table.copyright {
				width:100%;
				border-top:1px solid #ddad08;
				margin-top:1em;
				text-align:center;
				padding-top:1em;
				vertical-align:top; }
			-->
		  ]]>
		</style>        
		<script language="javascript" src="/01/jscripts/xsl_mop-up.js"></script>
      </head>

      <!-- Body -->
      <body  onload="go_decoding();" >  
	  <div id="cometestme" style="display:none;">
		<xsl:text disable-output-escaping="yes">&amp;amp;</xsl:text>
	  </div>
      <table align="center" style="BORDER-COLLAPSE: collapse"  borderColor="#000000" cellPadding="0" width="650" border="0">
		<tbody>
		<tr>
			<td>

    	    <!-- Text and table -->
	        <h1 id="head1"><xsl:value-of select="article/header/subject"></xsl:value-of></h1>        
			<h2>
			<xsl:value-of select="article/header/author"></xsl:value-of><br/>
			<xsl:value-of select="article/header/date"></xsl:value-of>
			</h2>          
		    <p class="sml">
			<xsl:value-of select="article/header/summary"></xsl:value-of>
			</p>
	    	<table border="1" width="100%" id="table0">
		      <tr >
	    	    <td>
				<div name="decodeable">
					<xsl:value-of disable-output-escaping="yes" select="article/body" ></xsl:value-of>
				</div>
				</td>
	    	  </tr>
		    </table>            
	    	<table border="1" width="100%" id="table0">
	    	  <tr >
	        	<td>
				<xsl:value-of disable-output-escaping="yes" select="article/resources"></xsl:value-of>
				</td>
	    	  </tr>
	    	</table>                     
    	    <!-- Copyright notice
	             &#x0020; means significant space character -->          
    	    <br/>
	        <table class="copyright" id="table_copyright">
	          <tr>
	            <td>
	              <p> Copyright Article2.0 </p>
   		        </td>
        	  </tr>
	        </table>
			
    		</td>
		</tr>
		</tbody>
	</table>
	  </body>
    </html>
  </xsl:template>     
</xsl:stylesheet>
