@charset "utf-8";
/* CSS Document */

<style type="text/css">


.popcontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.popnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.popnail:hover{
background-color: transparent;
}

.popnail:hover img{
border: 1px solid blue;
}

.popnail span{ /*CSS for enlarged image*/
position: absolute;
/*overflow: auto;*/
/*background-color: #EEEEEE;*/
background:url(../images/BKG_wht-gry.jpg) repeat; 
padding: 10px;
left: -1000px;
border: 1px solid #00539b;
width:430px;
/*height:200px;*/
visibility: hidden;
color: black;
text-decoration: none;
}

.popnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.popnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 750px;
left: 400px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

</style>

