:root {
    --theme-darker: #5e6f4c;
    --theme-lighter: #6d8058;
}

body{
    font-family: 'Ubuntu',Tahoma,sans-serif;
}

#hidden{
    display: none;
}

h4{
    text-align: center;
}

.header-links{
    text-align: center;
    margin-top: 5px;
}

#db-source{
    margin-bottom: 15px;
}

#policy-links{
    font-size: smaller;
}

.policy-link{
    padding: 5px;
}

.dataTables_filter{
    display: none;
}

.dataTables_info{
    display: block;
}

button.accordion {
    background-color: var(--theme-darker);
    color: #FFF;
    cursor: pointer;
    padding: 7px;
    padding-top: 6px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--theme-lighter);
    text-align: center;
    outline: none;
    transition: 0.4s;
    animation: 0.4s;
    -webkit-box-shadow: 0px 5px 10px #888888;
    -moz-box-shadow: 0px 5px 10px #888888;
    box-shadow: 0px 5px 10px #888888;
}

button.accordion.active, button.accordion:hover {
    background-color: var(--theme-darker); /* originale: bf4415 */
}

div.acc {
    padding: 0px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s linear;
    animation: 0.4s linear;
    -webkit-box-shadow: 0px 5px 10px #888888;
    -moz-box-shadow: 0px 5px 10px #888888;
    box-shadow: 0px 5px 10px #888888;
}

div.acc.show {
    overflow: auto;
    overflow-x: hidden;
    max-height: 100%;
}

#master{
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s;
    animation: width 0.3s;
    background-color: rgb(212, 212, 212);
    width: 100%;
    /*float: left;*/
    border-right: 1px solid #8d8d8d;
    height: 97%;
    -webkit-box-shadow: -3px 0px 10px #888888;
    -moz-box-shadow: -3px 0px 10px #888888;
    box-shadow:inset -3px 0px 10px #888888;
}

#master.masterActive{
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s;
    animation: width 0.3s;
    width: 22%;
    float: left;
}

.dataTables_scrollBody{
    overflow-x: hidden;
}

.tHead{
    display: none;
}

#frame{
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s;
    animation: width 0.3s;
    width: 0px;
    border: 0px;
    float: right;
}

#frame.frameActive{
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s;
    animation: width 0.3s;
    width: 76%;
    height: 100%;
}

#filter{
    margin-top: 6px;
}

#header{
    padding: 5px;
    background: var(--theme-lighter); /* originale: #d44413*/
    color: #FFF;
    font-weight: 500;
    font-family: 'Ubuntu',Tahoma,sans-serif;
}

#header img{
    margin-right: 5px;
}

#header a{
    color: #FFF;
}
#header a:visited{
    color: #FFF;
}

#header a:hover{
    color: #FFF;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody{
    border-bottom: 0px;
}

.resource-link{
    color: var(--theme-lighter);
    text-decoration: none;
}

.resource-link:hover{
    color: var(--theme-darker);
    text-decoration: underline;
}