/* Defauly Style Sheet for my personal home site. */
/* Created by Darrell Edgley on 15th April 1999   */

body           {
                background: #fffff0;
                color: black;
/*
                margin-left: 10%;
                margin-right: 10%;
*/
               }
       
/* Define the style for heading 1 */
h1             {
                background: #fffff0;
                color: purple;
                font-weight: bold;
                font-size: 200%;
                text-align: center;
                font-family: arial, helvetica, sans-serif;
                content: counter(chapter) ;
                counter-increment: chapter ;
                counter-reset: subchapter ;
               }

/* Define the style for heading 2 */
h2             {
                background: #fffff0;
                color: #663300;
                font-size: 175%;
                font-weight: bold;
                font-family: arial, helvetica, sans-serif;
                content: counter(chapter) "." counter(subchapter) ;
                counter-increment: subchapter ;
                counter-reset: thirdchapter ;
               }
      
/* Define the style for heading 3 */
h3             {
                background: #fffff0;
                color: #663300;
                font-size: 150%;
                font-weight: bold;
                text-decoration: underline;
                font-family: arial, helvetica, sans-serif;
                content: counter(chapter) "." counter(subchapter) "." counter(thirdchapter) ;
                counter-increment: thirdchapter ;
               }

/* Define the style for heading 4 */
h4             {
                background: #fffff0;
                color: #663300;
                font-size: 125%;
                font-family: arial, helvetica, sans-serif;
                }

/* Define the style for heading 5 */
h5              {
                 background: #fffff0;
                 color: #663300;
                 font-family: arial, helvetica, sans-serif;
                }
      

/* Define the style for paragraphs */
p               {
                 background: #fffff0;
                 color: blue;
                 font-family: arial, helvetica, sans-serif;
                }

p:hover         {
                 background: #fffff0;
                 color: black;
                }             

p.nodisplay     {
                 display: none;
                 text-align: center;
                }             

hr              {
                 background: #fffff0;
                 color: black;
                }

/* Define the style for list items in UNORDERED lists */
ul li           {
                 background: #fffff0;
                 line-height: 125%;
                 font-family: arial, helvetica, sans-serif;
                }

small           {
                 background: #fffff0;
                 color: black;
                 font-family: arial, helvetica, sans-serif;
                }
                
.vsmall         {
                 background: #fffff0;
                 color: black;
                 font-family: arial, helvetica, sans-serif;
                 font-size: 75%;
                }

p.pull          {
                 background: #fffff0;
                 color: #ff0000; 
                 float: left; 
                 width: 25%;
                 font-size: large; 
                 font-weight: bold; 
                }
       
/* A class for the page footer */
.footer         {
                 text-align: center;
                 font-size: -1;
                 font-family: sans-serif, arial, helvetica;
                }

/* Anchor tag rules - pseudo classes */

a:link          {
                 color: #0000ff;
                 text-decoration: none;
                }    
  
a:active        {
                 color: #ff0000;
                 font-weight: bold;
                 text-decoration: none;
                }

a:visited       {
                 color: #00ffff;
                 text-decoration: none;
                }

a:hover         {
                 background: black;
                 text-decoration: underline;
                }

