#body {
    height: 780px;
    overflow-y: auto;
    padding-top: 125px;
    background: url(../image/bg_document.png) center;
    background-size: cover;
}
#bd-container {
    margin: auto;
    padding: 50px 60px;
    max-width: 920px;
    color: #fff;
    background: rgba(170, 170, 170, 0.85);
}
#bd-container > h1 {
    font-size: 15px;
    line-height: 55px;
    letter-spacing: 5px;
    text-align: center;
}
#bd-container > h1::before,
#bd-container > h1::after {
    content: '';
    display: block;
    height: 20px;
    background: url(../image/document_pattern.png) center no-repeat;
}
#bd-container > dl {
    margin-top: 35px;
}
#bd-container > dl > dd {
    overflow: hidden;
    padding: 5px 30px;
    background: rgba(210, 210, 210, 0.7);
}
#bd-container > dl > dd:nth-child(odd) {
    background: rgba(190, 190, 190, 0.5);
}
#bd-container > dl > dd > div {
    float: left;
    line-height: 25px;
}
#bd-container > dl > dd > div:nth-child(1) {
    width: 250px;
}
#bd-container > dl > dd > div:nth-child(2) {
    width: calc(100% - 350px);
}
#bd-container > dl > dd > div:nth-child(3) {
    width: 100px;
    text-align: right;
}
#bd-container > dl > dd > div > a {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    letter-spacing: 8px;
    width: 100px;
    border: 1px solid #fff;
    text-align: center;
}
.en #bd-container > dl > dd > div > a {
    letter-spacing: 1px;
}
/* Media queries
-------------------------------------------------------------------------------*/
@media screen and (max-width: 800px) {
    #body {
        height: auto;
        padding: 85px 0 10px;
        background-position: top;
        background-size: auto;
    }
    #bd-container {
        padding: 10px;
    }
    #bd-container > dl {
        margin-top: 20px;
    }
    #bd-container > dl > dd {
        padding: 5px 10px;
    }
    #bd-container > dl > dd > div:nth-child(1) {
        width: calc(100% - 100px);
    }
    #bd-container > dl > dd > div:nth-child(2) {
        width: calc(100% - 100px);
    }
    #bd-container > dl > dd > div:nth-child(3) {
        float: right;
    }
    #bd-container > dl > dd > div > a {
        font-size: 13px;
        letter-spacing: 4px;
    }
}