/* CSS Document */

    
    #menu dl, dt, dd, ul, li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    #menu {
        position: absolute;
        top: 155px;
        left: 52px;
        z-index:100;
        width: 100%;
        font-family : verdana, arial, sans-serif;
        font-size : 0.8em ;
    }
    
    #menu dl {
        float: left;
        width: 120px;
        margin: 0px;
        
    }
    
    #menu dt {
        cursor: pointer;
        text-align: center;
        border: 0px solid gray;
    }

    #menu dd {
        border: 1px solid gray;
    }

    #menu li {
        text-align: center;
        background: #0ff;
    }

    #menu li a, #menu dt a {
        color: #000;
        text-decoration: none;
        display: block;
        height: 100%;
        border: 0px solid #eee;
        
    }

    #menu li a:hover  {
       background-color :#B36666;
    }

    #menu dt a:hover {
        background-color :#eee;
        border-bottom : 3px solid #B36666;
    
    }
