/*
   black.css
   Written by Robbie Hatley
   Last updated Saturday January 6, 2006.
   Creates a black-ink-on-gray-laid-paper look.
   For best results, link to main.css first, then this file.
   Suggested body background image:
     Use the following style attribute in the body tag:
       style="background-image: url(../bg/gray-laid.jpg);
              background-attachment: scroll"

   Also works well with most other light-colored backgrounds.
   Dark backgrounds are not recommended with this style sheet.
*/


/* Body Font-Family, Color, and Background-Color: */
body {
  font-family:      "Arial", "Helvetica", sans-serif;
  color:            #000000;  /* black foreground */
  background-color: #E8E8E8;  /* London-mist background */
}


/* Heading Font-Family, Color, and Background-Color: */
h1, h2, h3, h4, h5, h6 {
  font-family:      "Century Schoolbook", "Book Antiqua", serif;
  color:            #000000;      /* black foreground */
  background-color: inherit;  /* inherit background */
}


/* Link Colors (Anchor Pseudo-Classes): */
a:link    {color: #0000FF; font-weight: 800; background-color: inherit;}
a:visited {color: #0000E0; font-weight: 800; background-color: inherit;}
a:hover   {color: #0000FF; font-weight: 800; background-color: #FFFF80;}
a:active  {color: #FF0000; font-weight: 800; background-color: #FFFF80;}
