@charset "utf-8";
/* CSS Document */


.spiderpic{
position: relative;
z-index: 0;
margin: 0px;

}

.spiderpic:hover{
background-color: transparent;
z-index: 50;

}

.spiderpic span{ /*CSS for enlarged image*/
position: absolute;
width: 342;
height: 450;
margin: 0px;
border: 1px solid #333;
visibility: hidden;
color: black;
text-decoration: none;
}

.spiderpic span img{ /*CSS for enlarged image*/
width: 342;
height: 450;
border-width: 0;
margin: 0px;
padding: 0px;
}

.spiderpic:hover span{
	/*CSS for enlarged image on hover*/
	width: 342;
	height: 450;
	margin: 0px;
	background-color: white;
	visibility: visible;
	padding: 2px 2px 2px 2px;
	top: -120;
	left: 0px; /*position where enlarged image should offset horizontally */
}





