.bannerBox {
    position: relative;
}
.contentBox .leftBox {
    float: right;
    width: 20%;
}
@media (max-width: 640px) {
    .contentBox .leftBox {
        float: none;
        width: 100%;
        padding: 0;
    }
}
.contentBox .rightBox {
    float: left;
    width: 74%;
}
@media (max-width: 640px) {
    .contentBox .rightBox {
        float: none;
        width: 100%;
        margin-top: 30px;
    }
}
.faqList {
    width: 100%;
}
.faqList .faqItem {
    border-bottom: 1px solid #eee;
}
.faqList .title {
    position: relative;
    padding: 15px 5px;
    font-weight: 400;
    font-size: 17px;
    color: #474747;
    cursor: pointer;
}
.faqList .title.open {
    background-color: #C19A6B;
    color: #eee;
}
@media (max-width: 640px) {
    .faqList .title.open {
        background-color: #eee;
        color: #474747;
    }
}
.faqList .title b {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-style: italic;
    font-size: 16px;
    color: #C19A6B;
}
.toggleOpen {
    position: absolute;
    right: 5px;
    top: 50%;
    display: block;
    margin-top: -13px;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 13px;
    color: #eee;
    background-color: #C19A6B;
    cursor: pointer;
}
@media (max-width: 640px) {
    .toggleOpen {
        position: static;
        margin: 0;
        margin-top: 10px;
        padding: 10px 0;
        text-align: center;
    }
}
.definition {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #686868;
    line-height: 1.8;
    background-color: #f0f4f6;
}
