html, body {
    margin: 0px;
    padding: 0px;
    background: #202020;
    color: #909090;
    font-family: 'Trebuchet MS';
    font-size: 12px;
    width: 99%;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto;
    /*IE*/
    scrollbar-3dlight-color: white;
    scrollbar-base-color: orange;
    scrollbar-face-color: orange;
    scrollbar-shadow-color: brown;
    scrollbar-darkshadow-color: black;
    scrollbar-arrow-color: black;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: darkgray;
    -webkit-box-shadow: inset 0 0 6px black;
    border-radius: 5px;
    border: 1px solid black;
}
::-webkit-scrollbar-thumb {
    background: orange;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px brown;
    border: 1px solid brown;
}
::-webkit-scrollbar-button {
    /*none*/
}
::-webkit-scrollbar-corner {
    background: #202020;
}

header {
    margin: 0px;
    padding: 2px 5px;
    font-size: 14px;
    background: #000;
}

footer {
    margin: 0px;
    padding: 2px 5px;
    background: #000;
    font-size: 9px;
}

table, tr, td {
    border: 1px;
    margin: 1px;
    padding: 1px;
    vertical-align: top;
}

h1 {
    font-size: large;
}
h2 {
    font-size: medium;
}

a:link {
    color: white;
    text-decoration: none;
}
a:visited {
    color: yellow;
    text-decoration: none;
}
a:hover {
    color: orange;
    text-decoration: none;
}
a:active {
    color: pink;
    text-decoration: none;
}

/* ads */
div.adWrapper {
    vertical-align: top;
    width: 130px;
}

/* controls */
div.ctrlWrapper {
    vertical-align: top;
    width: 250px;
}

fieldset {
    text-align: center;
    border: 1px solid #808080;
    margin: 2px;
    padding: 1px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

legend {
     font-weight: bold;
     color: #909090;/*IE*/
}

div.scroller {
    width: 240px;
    height: 460px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: right;
}

select {
    font-family: 'Trebuchet MS';
    font-size: 11px;
    cursor: pointer;
    color: #ffffff;
    font-size: 10px;
    background: #404040;
    outline: 0px;
    border: 1px solid #000;
    margin: 0px;
    padding: 1px, 3px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

button {
    font-family: 'Trebuchet MS';
    font-size: 11px;
    cursor: pointer;
    color: #ffffff;
    background: #404040;
    outline: 0px;
    border: 1px solid black;
    margin: 0px;
    padding: 1px, 3px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px black;
}

    button:hover {
        background: #505050;
    }
    button:active {
        background: #303030;
    }

.bigBtn {
    padding: 5px 10px;
    background: orange;
    border: 1px solid brown;
    font-weight: bold;
    color: black;
    font-size: 1.1em;
    -webkit-box-shadow: inset 0 0 6px brown;
}

    .bigBtn:hover {
        background-color: #ff7f0f;
    }
    .bigBtn:active {
        background-color: #703010;
    }

input:invalid {
    box-shadow: none; /* fix for Firefox red border around some inputs */
}

input[list] {
    font-family: 'Trebuchet MS';
    font-size: 11px;
}

datalist {
    font-family: 'Trebuchet MS';
    font-size: 11px;
}

input {
    font-family: 'Trebuchet MS';
    font-size: 11px;
    cursor: pointer;
    color: #000000;
    background: #ffffff;
    outline: 0px;
    border: 1px solid black;
    margin: 0px;
    padding: 1px 3px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
    input.picker {
        width: 50px;
        height: 13px;
        cursor: pointer;
        outline: 0px;
        margin: 0px;
        border: 1px solid white;
        padding: 0px;
        -webkit-box-shadow: inset 0 0 6px black;
    }

        input.picker::-webkit-color-swatch-wrapper {
            margin: 0px;
            padding: 0px;
            border: 0px;
        }

        input.picker::-webkit-color-swatch {
            margin: 0px;
            padding: 0px;
            border: 0px none black;
            -webkit-border-radius: 5px;
        }

#hueTable {
    width: 100%;
    outline: 0px;
    border: 0px;
    margin: 0px;
    padding: 0px;
}

div.canvasWrapper {
    width: 620px;
    height: 620px;
    overflow-x: auto;
    overflow-y: auto;
}

canvas {
    position: relative;
    opacity: 1.0;
}
