body {
    margin: 0px;
    padding: 0px;
    font-family: Verdana;
    background: #eee;
}

.mainMenuDiv {
    position: fixed;
    top: 75px;
    left: 25px;
    border: 1px solid #aaa;
    width: calc(100% - 50px);
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}

.userDiv {
    position: fixed;
    text-align: right;
    top:0px;
    left:0px;
    right:0px;
    background-color: #fff;
    padding:10px 100px 10px 0px;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}

.appDiv {
    float:left; 
    margin:10px;
    padding:20px;
    display: inline-block;
    border:1px solid #eee;
    border-radius: 120px;
    width:120px;
    height:120px;
    text-align: center;
    font-size:14px;
    cursor:pointer;
    transition: all .2s ease-in-out;
}
.appDiv:hover { transform: scale(1.1); }

.appDiv:hover {
    border:1px solid #99f;
    background-color:#eef;
}

.mainMenuImg {
    height:64px;
    margin-bottom:10px;
}

#lockPeriod {
    padding-left:10px;
    border:1px solid #fff;
}
#lockPeriod:hover {
    border:1px solid #888;
}

.fade {
    opacity: .3;
    transition: opacity .5s ease-in-out;
}
.fade:hover {
    opacity: 1;
}