/* mystyle.css - my tiny style sheet */
/* 1. Broad brush strokes */

body { margin-left: 0; margin-right: 0;
       color: white;
       font-family: Arial, sans-serif;
       background-color : black;
     } 

table { margin: 0 0 0 0;
        padding: 0 0 0 0;
        min-width: 60px;
        max-width: 100px;
      }

p { margin-top: 1em;
  }

img { border-color : black;
      border-width : 2px;
      border-style : dotted;
    }

a { font-size: 90%;
  }

a.sparky { color: red;
         }

td { text-align : center;
   }



/* 2. My special classes */
   
td.indent { text-align : right;
        }
   
/* 3. Useful SPAN and other tags */
SPAN.prop { font-weight : bolder;
            color : #8b1020; }
SPAN.smallcaps { font-variant: small-caps; }
SPAN.mono { font-family : monospace; }


/* 4. Pseudo stuff */
a:link { text-decoration : none; 
       }
a:visited {text-decoration : none; }
a:hover {color : red ;
         background-color : #ffefdb;}


/* X. area for testing follows: */


/* the end of the style sheet */
/* ----------------------------------------------------------------- */
