/* 標準のリンク */
A:link {
  color: #0000ff; /* リンクの色 */
  text-decoration: underline /* 文字装飾：下線 */
}
/* 訪問済みリンク */
A:visited { color: #800080 }
  text-decoration: underline /* 文字装飾：下線 */

/* 現在開いているリンク */
A:active { color: #800080 }
  text-decoration: underline /* 文字装飾：下線 */

/* マウスカーソルが上に来た時のリンク */
A:hover {
  color: #ff0000; /* リンクの色 */
  background-color: #ffcccc; /* 背景の色 */
  text-decoration: none; /* 文字装飾 */
}

TD	{ line-height:140%; }


.BG
{ background-image: url("line.gif");
background-repeat: repeat-x; background-attachment: fixed; background-position: 0 bottom; padding-bottom: 0.2em }

