/* CSS Document */
.popup{
	position: relative;
	z-index: 0;
}
.popup:hover{
	background-color: transparent;
	z-index: 50;
}
.popup span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 2px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
	width:auto;
}
.popup span img{ /*CSS for enlarged image*/
	border-width: 5px;
	padding: 2px;
	background-color: #CDCCCC;
/*	width:500px;*/
}
.popup:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	left: 60px; /*position where enlarged image should offset horizontally */
	height:auto;
	width:200px;
}
