#menuList{
    height: 50px;
    width: 100vw;
    background-color: #444;
    position: fixed;
    text-align: center;
    list-style: none;
    margin:0;
    padding:0;
    margin-right: 20px;
    top: 0;
    left: 0;
}

.menuItem{
    float: left;
    height: 50px;
    width: 5em;
    line-height: 50px;
}

.menuItem:hover a{
    color: #111;
    background-color: #BBB;
    border-radius: 5px 5px 0 0;
}

.menuItem a{
    text-decoration: none;
    color: #FFF;
    display: block;
    height: 100%;
    width: 100%;
}

.currentTab a{
    color: #111;
    background-color: #FFF;
    border-radius: 10px 10px 0 0;
}

#topPad{
    height: 50px;
    width: 100vw;
    margin-left: -8px;
    margin-top: -8px;
}