/* 通常の本文 */
body, th, td  {
  font-size: 10pt;
}
/* 未アクセスのリンク */
A:LINK {
  color : yellow;
  text-decoration : none;
}
/* アクセス済みリンク */
A:VISITED {
  color : yellow;
  text-decoration : none;
}
/* マウスを乗せたリンク */
A:HOVER {
  color : red;
  background-color : silver;
  text-decoration : none;
}
/* クリックしたリンク */
A:ACTIVE {
  text-decoration : none;
}


