/* Kibo's style sheet for The World front page */

/* general text attributes: pretty serif fonts, if possible.  Black type on white. */
BODY {
  font-size: 100%;
  font-family: "Baskerville Book","Baskerville BE","Baskerville BT","Baskerville2 BT","Baskerville MT",Baskerville,"New Baskerville",NewBskvll,Palatino,"Book Antiqua",Garamond,AGaramond,Goudy,"Goudy BT",Georgia,Times,"Times New Roman","Times New Roman PS","Times Roman",roman,serif;
  color: #000000;
  background-color: #FFFFFF;
}

/* small print, not indented */
.sm {
  font-size: 10pt;
  font-family: Verdana,Geneva,Arial,Helvetica,sans-serif,sanserif,sansserif,"sans serif",sans;
}

/* small print, indented */
.smi {
  font-size: 10pt;
  font-family: Verdana,Geneva,Arial,Helvetica,sans-serif,sanserif,sansserif,"sans serif",sans;
  padding-left: 2em;
}

/* invisible and widely spaced - for separators in text navigation links */
.inv {
  color: #CCCCCC;
  visibility: hidden;
  letter-spacing: .25em;
}

/* no underlines for any links */
A {
  text-decoration: none;
}

/* unvisited: plain blue */
A:unvisited {
  color: #0000FF;
}

/* visited: plain purple */
A:visited {
  color: #990099;
}

/* mouseover: dark blue with sky blue background and underline */
A:hover {
  color: #000066;
  background: #CCCCFF;
  /* text-decoration: underline; */
}

/* mousedown: red with sky blue background and underline */
A:active {
  color: #FF0000;
  background: #9999FF;
  /* text-decoration: underline; */
}

/* for Netscape 6.0 rendering issue with hovering over image links */
IMG.hov {
  background: inherit;
}

