<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><p>/* 案内リンク及び目次 */
#tools1, #toc {<pre>  position: fixed;
  width: 36%; max-width: 20em;
  -moz-binding: url('http://suika.fam.cx/www/style/ui/drag.xbl#simple-drag');
  behavior: url('http://suika.fam.cx/www/style/ui/drag.htc');
}
#toc {
  overflow: auto;
}
#toc h2, #toc &gt; ul {
  max-width: 80%;
    /* なぜか (ブラウザ・スタイルのせい?) Moz で不要な scroll bar が出る対策。 */
}
#toc h2 {
  margin: 0;
  padding: 0;
  max-width: 100%; /* padding:0 なら scroll にはならない。 */
}</pre></p><p>/* .DRAGABLE = drag 可能 mode */
.DRAGABLE {<pre>  position: absolute;
  margin: 0; /* 位置計算の関係で、 top,left は 0 がよい。  0 以外なら script を修正の必要あり。 */
}
#toc.DRAGABLE {
  position: fixed;
  top: 4em;
  right: 12px;
  max-height: 80%;
}
#tools1.DRAGABLE {
  position: fixed;
  top: 1em;
  right: 12px;
}</pre></p><p>#toc.DRAGABLE.MSIE, #tools1.DRAGABLE.MSIE {<pre>  position: absolute; /* WinIE は fixed に未対応。 */
}
.DRAGABLE.MSIE.HOVER {
}</pre></p><p>/* このスタイル・シートはどのスタイルを選択中でも適用される。</p><pre>   最低限の指定だけに留め、細かい指定には各代替スタイル内で行うこと。 */</pre></body></html>