 div.nav {
    width: 600px;/* ナビゲーションの幅 */
    font-size: 80%;
    }
   
    /* --- メニューエリア --- */
    div.nav ul.nl {
    margin: 0;
    padding: 0;
    border: 1px #000000 solid; /* メニューエリアの境界線 */
    list-style-type: none;
    text-align: left;
    }

    /* --- メニュー項目 --- */
    div.nav ul.nl li {
    border-top: 1px #000000 solid; /* 項目の上境界線 */
    border-bottom: 1px #000000 solid; /* 項目の下境界線 */
    }

    /* --- リンク --- */
    div.nav ul.nl li a {
    display: block;
    position: relative; /* IE6用 */
    padding: 4px 2px; /* リンクエリアのパディング（上下、左右） */
    background: #505050 url(ver_menu4_off.gif) repeat-x top; /* リンクエリアの背景 */
    color: #ffffff; /* 文字色 */
    text-decoration: none; /* テキストの下線（なし） */
    }
    /* --- ポイント時の設定 --- */
    div.nav ul.nl li a:hover {
    background: #999999 url(ver_menu4_on.gif) repeat-x top; /* ポイント時の背景 */
    text-decoration: underline; /* テキストの下線（あり） */
    }


