html
{
    width: 100%;
    height: 100%;
}

body
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #1f1f1f;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#painting
{
    margin-top: 25px;
    border: 8px solid #7f7f7f;
    border-radius: 5px;
    cursor: crosshair;
}

#painting:focus
{
    cursor: crosshair;
}

#painting:active
{
    cursor: crosshair;
}

#colorWheelContainer
{
    background-color: #7f7f7f;
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: normal;
    font-size: 10px;
    color: #ffffff;
    font-family: sans-serif;
}

#colorWheel
{
    border: 0px solid black;
    cursor: crosshair;
}

#colorWheel:active
{
    cursor: crosshair;
}

#colorWheel:focus
{
    cursor: crosshair;
}

#savedColorsContainer
{
    position: relative;
    height: 58px;
}


#savedColorsContainer1
{
    top: 0px;
    left: 45px;
    position: absolute;
    z-index: 50;
}

#savedColorsContainer2
{
    top: 21px;
    left: 66px;
    position: absolute;
    z-index: 49;
}

#savedColor1
{
    border: 2px solid white;
    border-radius: 2px;
    width: 30px;
    height: 30px;
}

#savedColorText
{
    position: absolute;
    top: 15px;
    left: 62px;
    border: 2px solid white;
    border-radius: 2px;
    font-family: monospace;
    font-size: 12px;
    text-align: center;
}

#savedColor2
{
    border: 2px solid white;
    border-radius: 2px;
    width: 30px;
    height: 30px;
}

#colorSwapButton
{
    cursor: pointer;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 35px;
    left: 45px;
    background-image: url('../images/colorswap.png');
    border: 1px solid grey;
    border-radius: 2px;

    -moz-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

#colorSwapButton:hover
{
    border: 1px solid white;
    border-radius: 2px;
}

#heading
{
    position: absolute;
    width: 164px;
    height: 42px;
    left: 8px;
    top: 8px;
    background-image: url('../images/logo.png');
}

#mainContainer
{
}

div.topBar
{
    height: 55px;
    background-color: #3f3f3f;
    border-radius: 3px;
}

#falseBox
{
    position: relative;
}

#bodyContainer
{
    position: relative;
    width: 1000px;
    background-color: #0f0f0f;
    z-index: 0;
    padding-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #000000;
    top: 0px;
}

#toolBarContainer
{
    position: relative;
}

#toolBarButtonsContainer
{
    position: absolute;
    background-color: grey;
    border-radius: 10px;
    width: 200px;
    height: 40px;
    top: 0px;
    left: 150px;
}

div.toolbarAdvanced
{
    cursor: default;
    position: absolute;
    background-color: #3f3f3f;
    border-radius: 0px 0px 10px 10px;
    height: 40px;
    top: 32px;
    left: 0px;
    -moz-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    display: none;
}

.toolbarElement
{
    cursor: default;
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid grey;
    border-radius: 2px;
    top: 6px;
    margin: 0px;

    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#toolbar_brush_advanced
{
    width: 82px;
}

#toolbar_brush_advanced_size
{
    width: 32px;
    left: 6px;
    top: 5px;
}

#toolbar_brush_advanced_sizeDisplay
{
    left: 48px;
}

#toolbar_brush
{
    left: 6px;
    background-image: url('../images/toolbar_icon_brush.png');
}

#toolbar_fill
{
    left: 40px;
    background-image: url('../images/toolbar_icon_fill.png');
}

#toolbar_dropper
{
    left: 74px;
    background-image: url('../images/toolbar_icon_dropper.png');
}

#toolbar_line
{
    left: 108px;
    background-image: url('../images/toolbar_icon_line.png');
}

#toolbar_square
{
    left: 142px;
    background-image: url('../images/toolbar_icon_square.png');
}


div.toolBarButton
{
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid grey;
    border-radius: 2px;
    top: 6px;

    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

div.toolBarButton:hover
{
    background-color: #706e90;
    border: 2px solid #3f3f3f;
}

div.toolBarButtonSelected
{
    background-color: #A6A5C6 !important;
    border: 2px solid #3f3f3f !important;
}

#uploadButton
{
    cursor: pointer;
    position: absolute;
    background-color: grey;
    border-radius: 10px;
    width: 200px;
    height: 40px;
    top: 0px;
    right: 150px;
    font-family: monospace;
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;

    -moz-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

#uploadButton:hover
{
    background-color: #85a6c6;
}

#uploadButton:active
{
    background-color: #456483;
}