filecategory {
    display: block;
    box-sizing: border-box;
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.35);
    cursor: pointer;
    margin-top: 8px;
}

filecategory:hover {
    text-decoration: underline;
    text-shadow: 0px 0px 1px #ffffff;
}

filecategory:active {
    box-shadow: inset 0px 0px 8px rgba(255,255,255,0.75);
}

filelist {
    display: block;
    box-sizing: border-box;
    background: rgba(0,0,0,0.35);
    border-radius: 0px 0px 8px 8px;
    margin-left: 24px;
    margin-right: 8px;
    color: #ffffff;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.35);
}

filelist.visible {
    border-radius: 8px;
    margin: 0px;
}

filelist item {
    display: block;
    padding: 4px;
    cursor: pointer;
    border-top: 1px solid rgba(0,0,0,0.35);
}

filelist item:last-child {
    border: none;
    border-radius: 0px 0px 8px 8px;
}

filelist item:hover {
    text-decoration: underline;
    text-shadow: 0px 0px 1px #ffffff;
}

filelist item:active {
    box-shadow: inset 0px 0px 8px #ffffff;
}

filelist item[disable=true] {
    cursor: inherit;
}

filelist item[disable=true]:hover {
    text-decoration: none;
    text-shadow: none;
}

filelist item[disable=true]:active {
    box-shadow: none;
}