/*
   night.css
   Written by Robbie Hatley.
   Last updated Saturday January 6, 2006.
   Defines a starlight-on-night-sky look.  
   For best results, link to main.css first, then this sheet.
   Suggested body background image: 
     Use the following style attribute in the body tag:
       style="background-image: url(../bg/stars.gif); 
              background-attachment: fixed;"

   Also works well with other black or starry backgrounds.
   Light-colored backgrounds are not recommended, however.
*/


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


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


/* Link Colors (Anchor Pseudo-Classes): */
a:link    {color: #20D8F0; font-weight: 800; background-color: inherit;}
a:visited {color: #20D8F0; font-weight: 800; background-color: inherit;}
a:hover   {color: #80E0F8; font-weight: 800; background-color: inherit;}
a:active  {color: #A0F0FF; font-weight: 800; background-color: inherit;}
