#list {
    padding: 0;
    margin: 0;
    font-size: 100%;
    font-family: Georgia;
    }
#list li {
    list-style: none;
    float: left;
    height: 33px;
    padding: 0;
    margin: 0;
    width: 150px;
    text-align: center;
    background: #171717;
    position: relative;
    padding-top: 12px;
    }
#list li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 150px;
    display: none;
    position: absolute;
    left: 0;
    top: 45px;
    }
#list li ul li {
    float: none;
    height: 33px;
    margin: 0;
    width: 150px;
    text-align: center;
    background: #7F7F7F;
    }
#list li a {
    display: block;
    width: 150px;
    height: 33px;
    color: #fff;
    text-decoration: none;
    }
#list li:hover ul, #list li:hover ul {
    display: block;
    }
#list li:hover, #list li:hover {
    background: #424242;
    }