body *:not(a):not(button) {
    color: #000000!important;
}
body a:hover {
    text-decoration: underline;
}
.qtip * {
    color: white !important;
}
.accordion { 
    /*max-width: 600px; */
    margin: 0 auto; 
}

.accordion-item { 
    background: #fff; 
    margin-bottom: 10px; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
}

.accordion-title { 
    padding: 15px; 
    font-weight: bold; 
    cursor: pointer; 
    display: block; 
    background: #fff; 
}

.accordion-title:hover { 
    background: #f9f9f9; 
}

.accordion-content { 
    display: none; 
    padding: 0 15px 15px; 
    color: #555; 
}

.accordion-content:target { 
    display: block; 
}