/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> Settings for Overlay  <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/

body
{
    background-color: gray;
}
canvas
{
    pointer-events: none;       /* make the canvas transparent to the mouse - needed since canvas is position infront of image */
    position: absolute;
}
.highlighted {
  /* Define your highlighting styles here */
  border: 2px solid red;

}


/*
#OuterBox {
  width: 914px;
  height: 678px;
  display: block;
  position: relative;
}

#OuterBox #InnerBox {
  background: #FD8698;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  padding: 0;
  transition: opacity .5s;
}

#OuterBox #InnerBox p {
  background: #FF3355;
  color: #fff;
  line-height: 150px;
  font-family: 'arial';
  text-align: center;
}

#OuterBox:hover #InnerBox {
  opacity: .9;
  transition: opacity .5s;
}



#InnerBox {
  background: #FD8698;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  padding: 0;
  transition: opacity .5s;
}

#InnerBox p {
  background: #FF3355;
  color: #fff;
  line-height: 150px;
  font-family: 'arial';
  text-align: center;
}

#OuterBox:hover #InnerBox {
  opacity: .9;
  transition: opacity .5s;
}
*/