/* The CSS Code for the menu starts here */
#menu {
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: 50px 0;
    padding: 0 0 0 10px;
    list-style-type: none;
    font-size: 13px;
    background: #eee;
    height: 50px;
    border-top: 2px solid #eee;
    border-left: 2px solid #eee;
    border-bottom: 2px solid #ccc;
    border-right: 2px solid #ccc;
}
#menu li {
    float: left;
    margin: 0;
    
}
#menu li a {
    text-decoration: none;
    display: block;
    padding: 0 20px;
    line-height: 40px;
    color: #666;
}
#menu li a:hover, #menu li.active a {
    background-color: #f5f5f5;
    border-bottom: 2px solid #DDD;
    color: #999;
}

/* Green Menu */
#menu.green {
    border-top: 2px solid #a8c101;
    border-left: 2px solid #a8c101;
    border-bottom: 2px solid #c5e348;
    border-right: 2px solid #a8c101;
    background: #a8c101;}
#menu.green a {color: white;}
#menu.green li a:hover, #menu.green li.active a {color: black; background: white; border-bottom: 2px solid white;}
