<!---StyleSheet：Style.cssの原型ーーcssファイルの前のプログラムーー>

 <meta http-equiv="content-style\type"content="text/css">
<style type="text/css">
<!--フォントの大きさ設定------->
   body     {font-size:10pt;}　　　　　//・何もしなければこの設定になる。//

   .larg12      {font-size:12pt;line-height:1.5;}
   .larg15      {font-size:15pt;line-height:1.5;}
   .larg17      {font-size:17pt;line-height:1.5;}
   .larg20      {font-size:20pt;line-height:1.5;}
   .small10     {font-size:10pt;line-height:1.5;}
   .small9     {font-size:9pt;line-height:1.5;}
   .small8     {font-size:8pt;line-height:1.5;}
   .small7     {font-size:7pt;line-height:1.5;}
   .small6     {font-size:6pt;line-height:1.5;}
   .small5     {font-size:5pt;line-height:1.5;}
   .small4     {font-size:4pt;line-height:1.5;}
   .small3     {font-size:3pt;line-height:1.5;}
    .small2     {font-size:2pt;line-height:1.5;}
    .small1     {font-size:1pt;line-height:1.5;}
                                        // 設定は
　　　　　　　　　　　　　　　　　　　（例）<div class="small5">*****</div>//
----------->
<!------インデント（先頭のスペース）------->

p  {text-indent:.2em; line-height:0.5;}
//上記のページへの記載は< p>//

特別な場合は下記のように設定する。
               p.number1 {text-indent:1em;}    //設定は <p class="1">******</p>   行先頭に「1em」のスペースが取られる。//
               p.number2 {text-indent:2em;}
               p.number3 {text-indent:3em;}
               p.number5 {text-indent:5em;}
               p.number10 {text-indent:10em;}
               p.number15 {text-indent:15em;}
               p.number20 {text-indent:20em;}
               p.number40 {text-indent:40em;}

　　　　　　　　　　　　　p.number01{text-indent:10px;}
　　　　　　　　　　　　　p.number02{text-indent:20px;}
　　　　　　　　　　　　　p.number03{text-indent:30px;}
　　　　　　　　　　　　　p.number05{text-indent:50px;}
　　　　　　　　　　　　　　　　　　　　a.number3{letter-spacing:3em;}
　　　　　　　　　　　　　　　　　　　　a.number5{letter-spacing:5em;}
　　　　　　　　　　　　　　　　　　　　a.number10{letter-spacing:10em;}
　　　　　　　　　　　　　　　　　　　　a.number15{letter-spacing:15em;}
　　　　　　　　　　　　　　　　　　　　a.number20{letter-spacing:20em;}
 
--------------------------------------->
<!---------ラインの間隔を規定する-----------

   .line1   {line-height:1;}         //設定は　　<div class="line1">*******</div>//
   .line2   {line-height:2;}
   .line3   {line-height3;}
   .line5   {line-height5;}


--->
<!-----Link color-------
 a:text   {color:green; decoration:true}
  a:link      {background-color:aqua;}
  a:visited   {background-color:yellow;}
  a:active   {color:red;}
  :hover   {color:green;}
-->
<!--
body {
scrollbar-face-color:#ccffcc;
scrollbar-highlight-color:#ffffff;
scrollbar-shadow-color:#ffffff;
scrollbar-arrow-color:#cc9966;
scrollbar-base-color:#cc9966;
scrollbar-3d-light-color:#ff0000;
scrollbar-dark-shadow-color:#ffffff;
}
-->
<!---------fix---
  div.para {position:fix;
             top:300px;left:800px;}
------->
</style>
<style type="text/css">
<!--
Div.param1{width:200px;background-color:seagreen;}
Div.param2{width280px;background-color:midnightblue;}
Div.param3{width:350px;background-color:midnightblue;}
Div.param4{width:460px;background-color:midnightblue;}
Div.param5{width:500px;background-color:midnightblue;}
Div.param6{width:600px;background-color:midnightblue;}
-->
p.number1 {text-indent:1em;}
p.number2 {text-indent:2em;}
p.number3 {text-indent:3em;}
p.number5 {text-indent:5em;}
p.number10 {text-indent:10em;}
p.number15 {text-indent:15em;}
p.number20 {text-indent:20em;}
p.number01{text-indent:10px;}
p.number02{text-indent:20px;}
p.number03{text-indent:30px;}
p.number05{text-indent:50px;}
a.number3{letter-spacing:3em;}
a.number5{letter-spacing:5em;}
a.number10{letter-spacing:10em;}
a.number15{letter-spacing:15em;}
a.number20{letter-spacing:20em;}
</style>

