#menu {
    padding-left: 20px;
}
#menu label {
    height: 30px;
    background-color: silver;
    width: 11.1%;
    color: #00848e;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    float: left;
    position: relative;
    margin-left: 1px;
    display:block;
    margin-right: 0px;
    border-radius: 20px 20px 20px 20px;
}

#menu input:checked + label {
    background-color: #00848e;
    color: white;
}


/* Hide radio buttons */
#menu input[type=radio]{
    opacity:0;
    position:absolute;
    left:-200%;
}

/* Hide all tab divs and keep them below the tab buttons */
#menu > div {
    display:none;
    top:5em;
    position:absolute;
    max-width:100%;
}

/* Show the tab whose sibling radio button is checked */
#menu input:checked + label + div{
    display:block;
}
label {
overflow: hidden;


}