/* 学校教育部ホームページスタイルファイル(ver3.313) */



/* 背景とスクロールバーのカラー設定 */
body {
  background-color: aliceblue;
  scrollbar-arrow-color: black;
  scrollbar-base-color: aliceblue;
  scrollbar-face-color: aliceblue;
  scrollbar-highlight-color: white;
  scrollbar-shadow-color: skyblue;
  scrollbar-3dlight-color: skyblue;
  scrollbar-darkshadow-color: blue;  
  scrollbar-track-color: aliceblue;
}


/* ハイパーリンクのカラー設定 */
a {
  text-decoration: none;
}
a:link { color : blue; }
a:visited { color : blue; }
a:active { color : red; }
a:hover { color : silver; }


/* レイアウト用テーブルの設定 */
table.t{
  border-style: none; width: 75%;
}


/* テーブルの行とセルの設定 */
tr.b{
  font-weight: bold;
}
tr.t{
  font-weight: bold;background-color: lightskyblue;
}
td.b{
  font-weight: bold;
}
td.t{
  font-weight: bold;background-color: lightskyblue;
}


/* フォントのスタイル設定 */
/* 太字，斜体，下線，打ち消し線 */
.b{
  font-weight: bold
}
.i{
  font-style: italic
}
.u{
  text-decoration: underline
}
.s{
  text-decoration: line-through 
}


/* フォントのカラー設定 */
/* 赤，青，緑，黄，白，栗，銀 */
.cr{
  color: red;
}
.cb{
  color: blue;
}
.cg{
  color: green;
}
.cy{
  color: yellow;
}
.cw{
  color: white;
}
.cm{
  color: maroon;
}
.ca{
  color: gray;
}


/* テーブルの高さ設定 */
.h{
  line-height: 150%;
}
.h2{
  line-height: 200%;
}



/* by bingwu 2003 */