/*PEN TOOL*/
header{
    z-index: 9999 !important;
}


/*OPTIONS BOX*/

#penToolOptions {
    position: absolute;
       top: 100%;
    right: 0;
    visibility: hidden;
    float: left;
    width: 17em;
    height: 2.5em;
    padding: .5em;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 20px #ccc;
    z-index: 9999;
}

#penToolOptions .penActive {
    z-index: 1000;
    visibility: visible;
}

.penColourOption {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 0;
}

#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: 0.2s;
    -webkit-transform: scale(1.1);
}

#penBLACK {
    background-color: black;
}

#penRED {
    background-color: red;
}

#penGREEN {
    background-color: green;
}

#penBLUE {
    background-color: blue;
}

#dialog-delete {
    display: none;
}

