<?xml version="1.0" encoding="shift_jis" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > 
  <xsl:template match="/"> 
    <xsl:apply-templates/>
  </xsl:template> 
  <xsl:template match="article"> 
    <html><xsl:apply-templates/></html>
  </xsl:template>
  <xsl:template match="title"> 
    <h1><xsl:value-of select="."/></h1>
  </xsl:template> 
  <xsl:template match="paragraph" > 
    <p><xsl:value-of select="."/></p>
  </xsl:template> 
</xsl:stylesheet>


{STYLE}
   a:link,a:visited,a:active { text-decoration: none; color: #3399CC; }
   a:hover {text-decoration: underline; color: #3399CC; }

body {
   font-family: "ＭＳ ゴシック","ヒラギノ角ゴ Pro W3","Osaka";
   font-size: 13px;
   color: #444444;
   line-height: 140%;
   text-align: center;
   background-color: #FFCC33;
   background-image: url("../tips/bg.gif");
   background-repeat: repeat-y;
   background-attachment: fixed;
   background-position: center;
   margin: 0px 0px 0px 0px;
   padding: 0px 0px 0px 0px;
}

/* テーブル・トップページ */
table.sch {
   width: 820px; border: solid 1px; border-collapse: collapse; border-spacing: 0px;
   margin: 15px; padding: 0px 0px 0px 0px;
}
tr.t { background-color: #EEEEEE; border-bottom: solid 1px;}
tr.a { background-color: #FDF5E6; }
td.t1 { border-right: solid 1px; text-align: center; padding: 7px 0px; }
td.t2 { border-right: dashed 1px; text-align: center; padding: 7px 0px; }
td.s1 { border-right: solid 1px; text-align: center; vertical-align: top; padding: 10px 5px; white-space: nowrap; }
td.s2 { border-right: solid 1px; text-align: right; vertical-align: top; padding: 10px 5px; white-space: nowrap; }
td.s3 { border-right: solid 1px; text-align: left; vertical-align: top; padding: 10px 5px; white-space: nowrap; }
td.s4 { border-right: dashed 1px; text-align: left; vertical-align: top; padding: 10px 5px; white-space: nowrap; }
td.b1 { border-right: none; text-align: left; vertical-align: top; padding: 10px 5px; }
td.b2 { border-right: none; color: #FF0000; text-align: left; vertical-align: top; padding: 10px 5px; }
.fr { font-size: 16px; color: #FF0000; }
{/STYLE}