html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    font-family: sans-serif;
}
header{
    display: block;
    position: relative;
    width: calc(100% - 40px);
    height: 60px;
    padding: 0 20px;
    background-color: #eee;
    border-bottom: 1px solid #aaa;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
}
#mainStart{
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 98px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid #aaa;
    background-color:  #fff;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    transition: 150ms;
}
#mainStart:hover{
    background-color:  #53a9f0;
    color: #fff;
    border: 1px solid #fff;
}
#wrap_app{
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh - 86px);
    overflow: hidden;
}
#wrap_left{
    display: block;
    position: relative;
    width: calc(40% - 1px);
    height: calc(100vh - 86px);
    float: left;
    border-right: 1px solid #aaa;
}
#wrap_addMember{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-bottom: 1px solid #aaa;
}
#wrap_addMember #addMemberInput{
    display: block;
    position: relative;
    float: left;
    margin: 0;
    padding: 5px 10px;
    border: none;
    width: calc(100% - 128px);
    height: 30px;
}
#wrap_addMember #addMemberButton{
    display: block;
    position: relative;
    float: right;
    margin: 5px 10px;
    padding: 0;
    border: 1px solid #aaa;
    width: 78px;
    height: 30px;
    background-color: #eee;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    cursor: pointer;
}
#wrap_addMember #addMemberButton:hover{
    background-color: #ddd;
}
#wrap_member{
    display: block;
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100vh - 127px);
    padding: 0 4px;
    top: 41px;
    overflow-y: scroll;
}
#wrap_member .members{
    display: block;
    position: relative;
    width: calc(100% - 30px);
    height: 50px;
    margin: 4px 0;
    padding: 0 10px;
    line-height: 50px;
    border: 1px solid #aaa;
    border-left: 10px solid #53a9f0;
}
#wrap_memberEdit{
    display: none;
    position: absolute;
    height: 46px;
    padding: 2px;
    top: 0;
    right: 10px;
}
#wrap_memberEdit button{
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 8px;
    text-align: center;
    line-height: 24px;
    border: none;
    transition: 150ms;
    background-color: #fff;
    color: #1b1b1b;
    font-size: 20px;
    border-radius: 25px;
    box-shadow: none;
    cursor: pointer;
}
#wrap_memberEdit button:hover{
    /*box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    color: #282831;*/
    background-color: #eee;
}
.members:hover > #wrap_memberEdit{
    display: block;
}
#wrap_right{
    display: block;
    position: relative;
    width: 60%;
    height: calc(100vh - 86px);
    float: left;
}
#wrap_teams{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    height: calc(100vh - 86px);
    padding: 0 10px;
}
#addTeams{
    display: block;
    position: relative;
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #aaa;
    margin: 10px 0;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
#addTeams:hover{
    background-color: #eee;
}
.teams{
    display: block;
    position: relative;
    width: calc(100% - 2px);
    border: 1px solid #aaa;
    margin: 10px 0;
    background-color: #fff;
}
.teamsHead{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    height: 50px;
    padding: 0 10px;
    line-height: 50px;
    background-color: #eee;
}
.teamsHead h1{
    margin: 0;
    font-size: 20px;
}
#wrap_teamsEdit{
    display: none;
    position: absolute;
    height: 46px;
    padding: 2px;
    top: 0;
    right: 10px;
}
#wrap_teamsEdit button{
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 8px;
    text-align: center;
    line-height: 24px;
    border: none;
    transition: 150ms;
    color: #1b1b1b;
    font-size: 20px;
    border-radius: 25px;
    box-shadow: none;
    cursor: pointer;
}
#wrap_teamsEdit button:hover{
    /*box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
    color: #282831;*/
    background-color: #fff;
}
.teams:hover .teamsHead #wrap_teamsEdit{
    display: block;
}
.teamsMain{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    padding: 10px;
    background-color: #fff;
}
footer{
    display: block;
    position: relative;
    width: 100%;
    height: 24px;
    border-top: 1px solid #aaa;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
}
/*.members #memberSetting,.teams #teamsSetting{
    display: none;
}*/
#wrap_alertBox{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
}
#alertBox{
    display: block;
    position: absolute;
    width: 500px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    border: 1px solid #aaa;
    background-color: #fff;
}
#alertBoxHead{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    height: 60px;
    padding: 0 10px;
    background-color: #eee;
    line-height: 60px;
}
#alertBoxHead h1{
    margin: 0;
    font-size: 20px;
}
#wrap_closeButton{
    display: block;
    position: absolute;
    height: 46px;
    padding: 2px;
    top: 0;
    right: 10px;
}
#wrap_closeButton #closeButton{
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 8px;
    text-align: center;
    line-height: 24px;
    border: none;
    transition: 150ms;
    background-color: #eee;
    color: #1b1b1b;
    font-size: 20px;
    border-radius: 25px;
    box-shadow: none;
    cursor: pointer;
}
#wrap_closeButton #closeButton:hover{
    background-color: #fff;
}
#alertBoxBody{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    height: 420px;
    padding: 10px;
}
#alertBoxBody h3{
    display: block;
    position: relative;
    width: calc(100% - 10px);
    height: 30px;
    margin: 5px 0;
    padding: 0 5px;
    background-color: #eee;
    font-size: 16px;
    line-height: 30px;
}
#alertBoxBody .sec{
    display: block;
    position: relative;
    width: calc(100% - 10px);
    padding: 5px;
}
#alertBoxBody .sec input{
    display: block;
    position: relative;
    width: calc(100% - 12px);
    height: 24px;
    padding: 2px 5px;
    border: 1px solid #aaa;
}
#alertBoxBody .sec input:focus{
    border: 1px solid #53a9f0;
}
#memberClass{
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid #aaa;
    cursor: pointer;
}
#memberClass:hover{
    border: 1px solid #888;
}
#alertBoxBody input[type=radio]{
    display: none;
}
#alertBoxBody input[type=radio]:checked + #memberClass{
    border: 1px solid #888;
    box-shadow: 0 0 0 2px #888;
}
#alertButtons{
    display: block;
    position: relative;
    width: 100%;
    height: 50px;
    text-align: right;
}
#alertButtons button{
    display: block;
    position: relative;
    float: right;
    margin: 10px 0;
    margin-right: 10px;
    padding: 0;
    border: 1px solid #aaa;
    width: 78px;
    height: 30px;
    background-color: #eee;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    cursor: pointer;
}
#alertButtons button:hover{
    background-color: #ddd;
}
#alertButtons #okButton{
    border: 1px solid #53a9f0;
}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
:focus {
    outline: none;
}