/* blue.css: for a number of standard pages of links.
   Mostly bold blue links, lighter for visited, and
   orange, no underline with hover.
 */

body {
    background-color: #fffff2;
}

/* Note: Makes BIG diff. that "active" comes after "hover" below. */
a:link {
  color: #0000aa;/* #0000dd; */
  font-weight:bold;
  text-decoration: none;
  font-family: arial;
}
a:visited {
  color: #7777ff;
  font-weight:bold;
  text-decoration: none;
  font-family: arial;
}
a:hover {
  color: #ffffff; /* #0000dd; */
  font-weight:bold;
  background: #0000ff; /* #ff60a0; */ /* #0000aa;*/ 
      /* orange:#ffaa00;*/ /* lt orange: #ffcc00;*/
  text-decoration: none;
  font-family: arial;
}
a:active {
  color: #ffffff; /* #0000dd; */
  font-weight:bold;
  background: #0000aa; /* #009f5f; #df548c; #bf4878;*/
  text-decoration: none;
  font-family: arial;
}
table.head {
  background-color: #0000aa;
  color: #ffffff;
  font-weight: bold;
  font-family: arial;
  text-align: center;
}
div.largetitlerow {
   font-size: 30pt /* xxx-large */;
}
div.titlerow {
   font-size: 24pt /* xx-large */;
}
div.subtitlerow {
   font-size: 18pt /* x-large */;
}
div.italicrow {
   font-size: 18pt /* x-large */;
   font-style: italic;
}
div.subjectrow {
   font-size: large;
}
.blackheads {
  font-family: arial;
  font-size: 13pt;
  color: #000000;
  font-weight:bold;
}
.bluehead {
  font-family: arial;
  font-size: 15pt;
  color: #0000aa;
  font-weight:bold;
}
.whitehead {
  font-family: arial;
  font-size: 14pt;
  color: #ffffff;
  font-weight:bold;
}
.whiteheadx {
  font-family: arial;
  font-size: 16pt;
  color: #ffffff;
  font-weight:bold;
}
.redhead {
  font-family: arial;
  font-size: 12pt;
  color: #ff7700;
  font-weight:bold;
}
.redheadx {
  font-family: sans-serif;
  font-size: 15pt;
  color: #ff7700;
  font-weight:bold;
}
div.hr2 {
   color:#0000aa;
   background-color:#0000aa;
   height:1em;
   border:0px solid #0000aa;
 }
div.hr3 {
   color:#0000ff;
   background-color:#0000ff;
   height:0.2em;
   /* border-color:#ffd000; */
 }
div.hr3 hr {
   display: none;
   /* gets rid of fine black line! */
}

/* for Python  */
a.pyth:link    {color: #f3b000;} /* #ddaa00; #f3b000; #cc9900;  */
a.pyth:visited {color: #f3b000;} /* #f3b000;  #cc9900; */
a.pyth:hover   {color: #ffffff; background: #f3b000;} /* #cc9900; */
a.pyth:active  {color: #ffffff; background: #dd9000;} /* #f3b000; */

/* for Ruby  */
a.ruby:link    {color: #ff0040;}
a.ruby:visited {color: #ff0040;}
a.ruby:hover   {color: #ffffff; background: #ff0040;}
a.ruby:active  {color: #ffffff; background: #dd0000;}

/* for Post  */
a.post:link    {color: #ffffff;}
a.post:visited {color: #ffffff;}
a.post:hover   {color: #000000; background: #ffffff;}
a.post:active  {color: #000000; background: #dddddd;}

/* for Lisp  */
a.lisp:link    {color: #000000;}
a.lisp:visited {color: #000000;}
a.lisp:hover   {color: #ffffff; background: #000000;}
a.lisp:active  {color: #ffffff; background: #999999;}
