/* copyright Outset Media Corp.  */
/* EXAMPLE - clear HTML at base:  */

.box{
position: relative;
z-index: 0;
}

.box:hover{
background-color: transparent;

}

.box span{ /*CSS for enlarged image*/
position: absolute;
background-color:#fff;
padding: 0px;
left: -1400px;
top: -370px;
border: 1px solid gray;
visibility: hidden;
}

.box span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
z-index: 50;
}

.box:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -150px;
left:-165px; /*position where enlarged image should offset horizontally */
}
