/* CSS Document */

.thumbnail{
	position: relative;
	border: 1px solid #666666;
	z-index: 1;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 20;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: lightyellow;
	padding: 5px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	font-family: "Garamond Premr Pro Smbd";
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	left: 60px; /*position where enlarged image should offset horizontally */
	z-index: 50;
}
#box1 {
	z-index: 6;
	position: relative;
	float: left;
	width: 90px;
}
#box2 {
	z-index: 5;
	position: relative;
	float: left;
	width: 90px;
}
#box3 {
	z-index: 4;
	position: relative;
	width: 113px;
}

#box4 {
	z-index: 3;
	position: relative;
	float: left;
	width: 50px;
