  body {overflow-x:hidden;}
  #penToolBtn{
    position: relative;
    z-index: 1001;
    
    pointer-events: auto;
    
    
}

#content
{
    /* height: 100%; */
    position: relative;

    -webkit-user-select: none;/* Chrome all / Safari all */
       -moz-user-select: none;/* Firefox all */
        -ms-user-select: none;/* IE 10+ */
            user-select: none;
}

#penToolOptions .penActive
{
    z-index: 1000;

    visibility: visible;
}

.penColourOption
{
    width: 32px;
    height: 32px;
    margin:0px 2px; 
    padding:0px;
    border:none;
    border-radius: 100%;
    float:left;
}

#penToolOptions button
{
    background-position: center;
    background-size: 100% 100%;
    /*-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;*/
}

.penColourOption:hover
{
    transition: .2s;
    -webkit-transform: scale(1.1);
}

#penBLACK
{
    background: black!important;
}

#penRED
{
    background: red!important;
}

#penGREEN
{
    background: green!important;
}

#penBLUE
{
    background: blue!important;
}

/*CANVAS*/

#penToolCanvas
{
    position: absolute;
    z-index: 998;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    /* pointer-events: none; */
}

#tmp_canvas
{
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    cursor: crosshair;
    /* pointer-events: none; */
}

canvas:hover{cursor:copy}

#penToolOptions {
    background-color:#eee;

    position:absolute;
    top:0;
    right:-500px;
    z-index:2000;
    padding:10px;
    border-top-left-radius:24px;border-bottom-left-radius:24px;
    -webkit-transition:all 600ms ease;
    visiblity:visible;
}

#penToolOptions.active {right:0px;}

/*canvas:hover{cursor:url('erase.gif') 5 5,auto ;}*/