スタイルシート定義ファイル【css.css】
/* body内の指定 */

BODY{
  background-color: #ffffff;
/*   background-repeat: no-repeat; */
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  font-size: 8pt;
  font-face: Times New Roman,Times;
  scrollbar-3dlight-color:#000000,
  scrollbar-arrow-color:#000000;
  scrollbar-base-color:#000000;
  scrollbar-darkshadow-color:#ffffff;
  scrollbar-face-color:#ffffff;
  scrollbar-highlight-color:#ffffff;
  scrollbar-shadow-color:#000000;
}

A{text-decoration:none;} /* リンクの下線無し */
A:link{color:gold;} /* リンクの色 */
A:visited{color:red;} /* 訪問済みリンクの色 */
A:active{color:gold;} /* アクティブなリンクの色 */
A:hover{color:yellow;} /* マウスを乗せたリンクの色 */
/* クラスの指定 */
.size1{font-size:75%;} /* フォントサイズ（75%） */
