/*
   www.chris-d.net/css/links.css
   Styles specific to hyperlink databases
   See also common.css, screen.css and printer.css
   Chris Denning 2005
*/
HTML
{
}

.major
{
  background: #FFC0C0;
  color: #500000;
  text-align: left;
  margin: 4px;
  border: thin solid #500000;
  padding: 4px;
}

.major a
{
  color: #500000;
  border-right: thin solid #500000;
  padding: 2px;
  padding-right: 4px;
  white-space: nowrap;
}

.minor
{
  background: #C0FFC0;
  color: #005000;
  text-align: left;
  margin: 4px;
  border: thin solid #005000;
  padding: 4px;
}

.minor a
{
  color: #005000;
  border-right: thin solid #005000;
  padding: 2px;
  padding-right: 4px;
  white-space: nowrap;
}

.links
{
  background: #C0C0FF;
  color: #000050;
  text-align: left;
  margin: 4px;
  border: thin solid #000050;
  padding: 4px;
}

/* Separate each link by a dotted line (at top of each div) */
.links div
{
  border-top: 1px dotted #000050;
  padding: 2px;
  padding-bottom: 4px;
}

/* Inhibit dotted line at top of first div in section (works on Firefox but not IE) */
.links div:first-child
{
  border: none;
  padding: 2px;
  padding-bottom: 4px;
}

.links a
{
  color: #000050;
}

.admin
{
  background: #FFFFC0;
  color: #505000;
  text-align: left;
  margin: 4px;
  border: thin solid #505000;
  padding: 4px;
}

.admin a
{
  color: #505000;
  border-right: thin solid #505000;
  padding: 2px;
  padding-right: 4px;
}

.selected
{
  font-weight: bold;
}

a:hover
{
  border: 1px dotted #808080;
}

