
/* make body statements default to a black sans serif font on a light blue
 * background. */
body {
  color:        black;
  background:   rgb( 238, 247, 255 );
  font-family:  sans-serif;
}


/* all h1 headings should take on a dark cyan coloring */
h1 {
  color: rgb( 0, 68, 113 );
}


/* the footers for all the pages is always the same.  silly copyright
 * information.  make this a slightly smaller font.  also, the footer always
 * sets a little bit further down. */
#footer {
  font-size:   80%;
  margin-top:  2em;
}


/* also, the footer bar needs to be slightly thicker so we can actually see
 * it. */
hr.footer-bar {
  height : 4;
}


/* this makes clippy's slogan all pretty */
p.slogan {
  margin-top:     -1em;
  margin-left:    2em;
  margin-bottom:  2.5em;
  font-style:     italic;
}


/* color all the links appropiately */
a:link     { color: rgb(   0,  0, 153 ); }
a:visited  { color: rgb( 153,  0, 153 ); }
a:active   { color: rgb( 255,  0, 102 ); }
a:hover    { color: rgb(   0, 96, 255 ); }
