#menu-box
{
   /* 背景画像などがあればここに指定 */
}

#title_menu
{
   list-style-type: none;
   height: 22px;
   border-left: solid 1px #FF3366;
}

#title_menu td
{
   /* リストはインライン要素化して横に並べる */
   line-height: 22px;
   display: inline;
   color: white;
}

#title_menu td a
{
   /* リンクをブロック要素にする
   background-image: url('../img/bot01.gif'); */
   background-repeat: repeat-x;
   padding: 0px 12px;
   display: block;
   float: left;
   border-right: solid 0px #330000;
}

#title_menu td a:hover
{
   /* マウスがメニュー領域内に入った時 */
   background-image: url('../img/bot01-hover.gif');
   background-repeat: repeat-x;
}

table {
   width: auto;               /* テーブル幅を設定 */
   height:0px;  
   border-collapse: collapse;  /* 幅なし枠に設定 */
   empty-cells: show;          /* 空セル部分を表示（本例では省略可）*/
   border: solid 0px gray;     /* 線幅 1px 外枠を設定 */
}
th {
   border: solid 0px gray;　   /* 線幅 1px ヘッダ枠を設定 */
   text-align: center;         /* ヘッダセル内容を中央揃えで表示 */
}
td {
   border: solid 0px #FFFFFF;     /* 線幅 1px セル枠を設定 */
   text-align: center;         /* セル内容を中央揃えで表示 */
}