/* 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;
}
a:visited {
  color: #7777ff;
  font-weight:bold;
  text-decoration: none;
}
a:hover {
  color: #ffffff; /* #0000dd; */
  font-weight:bold;
  background: #ff60a0; /* #ff60a0; */ /* #0000aa;*/ 
      /* orange:#ffaa00;*/ /* lt orange: #ffcc00;*/
  text-decoration: none;
}
a:active {
  color: #ffffff; /* #0000dd; */
  font-weight:bold;
  background: #bf4878; /* #009f5f; #df548c; */
  text-decoration: none;
}
table.head {
  background-color: #0000aa;
  color: #ffffff;
  font-weight: bold;
  font-family: sans-serif;
  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;
}
.bluehead {
  font-family: sans-serif;
  font-size: 15pt;
  color: #0000aa;
  font-weight:bold;
}
.redhead {
  font-family: sans-serif;
  font-size: 12pt;
  color: #ff7700;
  font-weight:bold;
}
.redheadx {
  font-family: sans-serif;
  font-size: 15pt;
  color: #ff7700;
  font-weight:bold;
}


