/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.smallimages {
	width: 190px;
	margin: 10px 0 10px 20px;
}

.thumbnail img{
	margin: 5px;

}

.thumbnail:hover{
	background-color: transparent;
}


.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
visibility: hidden;

}

.thumbnail span img{ /*CSS for enlarged image*/
	border: 6px solid #333333;
	padding: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	left: 29%; /*position where enlarged image should offset horizontally */
	top: 80px;
	z-index: 50;

}

