﻿#toc_container
{
  width : 972px;
  font-family : "メイリオ";
/*  font-weight:bold; */
  background-color:white;
  text-align :left;
}

  #toc_container ul,
  #toc_container li
  {
  list-style:none;
  margin:0;
  padding:0;
  }

  #root_toc li
  {
    width : 160px;
    float:left; /* 横に並べる指定 */
    border:1px solid lightgray; /*menuの枠色*/
  }

  #root_toc li.plist ul
  {
    display:none;
    position:absolute;
  }

  #root_toc li.plist:hover > a
  {
    background-color : darkorange; /*マウスが重なったときの色*/
    text-decoration : none;
  }

  #root_toc li.plist:hover ul
  {
    display: block;
  }

  #root_toc li.plist li
  {
      float :none;
      display:list-item;
      width : 260px;  /*2段目以降の横幅*/
  }

  #root_toc li a
  {
    display: block;
    /*boxの扱いの差が出るのでpaddingは使わない*/
    text-indent:0.5em;
    line-height:2.0em;
    color:#fff; /*menu文字色*/
    background-color : navy; /*menカラー*/
    text-decoration : none;
  }

  #root_toc li a:hover
  {
    color : navy; /*選択menu文字色*/
    background-color: white; /*選択menuカラー*/
    text-decoration : underline;
  }
