#content-container {
    margin: 30px auto 50px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    padding: 30px 0 30px;
}
#content {
    max-width: 1200px;
}

#content-header p {
    margin: 40px auto 55px;
    font-size: 42px;
    line-height: 42px;
    color: #050001;
}
#content .content-members {
    margin-top: 50px;
}
    #content .content-members:first-child {
        margin: 0;
    }
.content-members > p {
    font-size: 24px;
    line-height: 24px;
    color: #9a8a72;
    font-weight: bold;
    margin-bottom: 25px;
}
.content-members table {
    width: 100%;
}
.content-members thead {
    background-color: #eee9d9;
    border: none !important;
}
    .content-members th {
        color: #000000;
        font-size: 14px;
    }
.content-members tbody {
    border: none;
    background-color: #ffffff !important;
}
    .content-members tr {
        border: none !important;
        background-color: transparent !important;
    }
        .content-members td {
            color: #050001;
            font-size: 14px;
            border-right: 16px solid #ffffff;
            border-bottom: 2px dotted #eee9d9;
        }
            .content-members tr td:last-child {
                border-right: none;
            }
#members-back-to-button {
    height: 50px;
    background: #eee9d9;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 1px 1px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    margin-bottom: 50px;
    padding: 0 100px 0;
}
#members-back-to-button:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
#members-back-to-button span {
    color: #050001;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}

@media screen and (max-width: 639px) {
    #content-container {
        background: transparent;
        box-shadow: none;    
    }
    #content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #content-header p {
        font-size: 28px;
        line-height: 28px;
    }
    .content-members table {
        white-space: nowrap;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1535px) {
    #content {
        max-width: 900px;
    }
}