@charset "utf-8";
/* CSS Document */
<style type="text/css">

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

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

.thumbnailLeft span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	padding: 5px;
	left: -1000px;
	border: 1px dotted gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnailLeft span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnailLeft:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: auto;
	left: auto;
	margin-top: 20px;
	margin-left: -120px;
}

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

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

.thumbnailRight span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	padding: 5px;
	left: -1000px;
	border: 1px dotted gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnailRight span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnailRight:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: auto;
	margin-left: 800px;
	margin-top: 10px;
}
