@charset "utf-8";

#imgArea {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    /* height: 300px; */
    position: relative;
    border: 1px solid gray;
}

#imgArea div.imgCell {
    float: left;
    width: 73px;
    height: 73px;
    border: 1px solid gray;
    border-radius: 4px;
    position: absolute;
    z-index: 10;
    box-shadow: 0px 0px 8px gray;
    transition-property: background-position;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

#imgArea div.hover {
    filter: alpha(opacity=80);
    opacity: .8;
    box-shadow: 0px 0px 8px #000;
    z-index: 20;
    *border: 1px solid #09F;
}
