

        /* the menu */
        hm {
                font-family:verdana;
                font-size:10px;
        }
        ul,li,.m_link {
                display:block;
                margin:0;
                padding:0;
                border:0;
        }

        ul {
                position:absolute;
                top:324px;
                width:114px;
                border:0px solid #9d9da1;
                background:#FFCC99;
                list-style:none;
        }

        li {
                position:relative;
                padding:0px;
                padding-left:0px;
                border:0px solid #9d9da1;
                background:url("images/item_moz.gif") no-repeat;
                z-index:9;
        }
                li.folder        { background:url("images/item_folder.gif") no-repeat; }
                li.folder ul {
                        position:absolute;
                        left:100px; /* IE */
                        top:5px;
                }
                        li.folder>ul { left:100px; } /* others */

        .m_link {
                padding:1px;
                border:1px solid #FFCC99;
                text-decoration:none;
                color:red;
                font-weight:;
                width:100%; /* IE */
        }
                li>.m_link { width:auto; } /* others */

        li .m_link.submenu {
                background:url("images/sub.gif") right no-repeat;
        }

        /* regular hovers */

        .m_link:hover {
                border-color:gray;
                background-color:red;
                color:black;
        }
                li.folder .m_link:hover {
                        background-color:red;
                }

        /* hovers with specificity */

        li.folder:hover { z-index:10; }

        ul ul, li:hover ul ul {
                display:none;
        }

        li:hover ul, li:hover li:hover ul {
                display:block;
        }
