@charset "UTF-8";
/* CSS Document */

/* Thumbnail Image Englarge */
.searchThumbnail {
position: relative;
z-index: 0;
}
.searchThumbnail:hover{
background-color: transparent;
z-index: 50;
}
.searchThumbnail span { /*CSS for enlarged image*/
	position: absolute;
	padding: 3px;
	left: -1000px;
	border: 1px solid #999999;
	visibility: hidden;
	text-decoration: none;
	background: #FFFFFF;
	width: 150px;
	height: 150px;
}
.searchThumbnail span img { /*CSS for enlarged image*/
	border-width: 0;
	padding: 0px;
}
.searchThumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -65px;
left: 25px; /*position where enlarged image should offset horizontally */
}



/* Thumbnail Image Englarge - to left */
.toLeftThumbnail {
position: relative;
z-index: 0;
}
.toLeftThumbnail:hover{
background-color: transparent;
z-index: 50;
}
.toLeftThumbnail span { /*CSS for enlarged image*/
	position: absolute;
	padding: 3px;
	left: -1000px;
	border: 1px solid #999999;
	visibility: hidden;
	text-decoration: none;
	background: #FFFFFF;
	width: 150px;
	height: 150px;
}
.toLeftThumbnail span img { /*CSS for enlarged image*/
	border-width: 0;
	padding: 0px;
}
.toLeftThumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -80px;
left: -160px; /*position where enlarged image should offset horizontally */
}

