html, body {
    scrollbar-arrow-color: gray;
    scrollbar-face-color: gray;
    scrollbar-3dlight-color: white;
    scrollbar-highlight-color: white;
    scrollbar-shadow-color: white;
    scrollbar-darkshadow-color: white;
    scrollbar-track-color: white;
    scrollbar-base-color: white;
    min-width: 1200px;
    height: 100%;
    overflow: hidden;
}

#items a:link {
    color: white;
    text-decoration: none;
}

#items a:visited {
    color: white;
    text-decoration: none;
}

#items a:hover {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

#items a:active {
    color: gray;
    font-weight: bold;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 10px;
}

::-webkit-scrollbar-button:vertical:decrement {
    display: none;
}

::-webkit-scrollbar-button:vertical:increment {
    display: none;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-track-piece {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background-color: gray;
}

::-webkit-scrollbar-corner {
    background-color: white;
}

::-webkit-resizer {
    background-color: white;
}