@charset "utf-8";

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 0px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 0px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #ffffff;
	visibility: hidden;
	z-index: 2;
	width: 386px;
	height: 285px;
	

}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;

}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -300px;
left:  0px; /*position where enlarged image should offset horizontally */
z-index: 50;
}


.thumbnail_golfer img{
border: 0px solid white;
margin: 0 5px 5px 0;
}

.thumbnail_golfer:hover{
background-color: transparent;
}

.thumbnail_golfer:hover img{
border: 0px solid blue;
}

.thumbnail_golfer span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #ffffff;
	visibility: hidden;
	z-index: 20;
	width: 464px;
	height: 350px;
	

}

.thumbnail_golfer span img{ /*CSS for enlarged image*/
border-width: 0;

}

.thumbnail_golfer:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -350px;
left:  48px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
