/*
   day.css
   Written Saturday March 2, 2002 by Robbie Hatley.
   Last updated Saturday January 6, 2006.
   Defines a "dark-blue font on cloudy blue daytime 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/blue-xx.gif); 
              background-attachment: fixed;"

   Also works well with other pale-blue or pale-cyan backgrounds.
   Dark backgrounds, however, are not recommended.
*/


/* Body Font-Family, Color, and Background-Color: */
body {
  font-family:      "Arial", "Helvetica", sans-serif;
  color:            #000080; /* dark-blue foreground */
  background-color: #C8E8FF; /* pale-cyan background */
}


/* Heading Font-Family, Color, and Background-Color: */
h1, h2, h3, h4, h5, h6 {
  font-family:      "Arial", "Helvetica", sans-serif;
  color:            #0000A0;      /* medium-blue 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;}


