/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
	z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: fixed;
	background-color: white;
	padding: 5px;
	left: -1000px;
	border: 1px dotted gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;

}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 50%;
	left: 35%; /*position where enlarged image should offset horizontally */

}

.thumbnail_per{
	z-index: 0;
}

.thumbnail_per:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail_per span{ /*CSS for enlarged image*/
	position: fixed;
	background-color: white;
	padding: 5px;
	left: -1000px;
	border: 1px dotted gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail_per span img{ /*CSS for enlarged image*/
	border-width: 0;

}

.thumbnail_per:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0%;
	left: 35%; /*position where enlarged image should offset horizontally */

}


.imgright {
margin: 10px 0px 0px 5px;
float:right;
}

.imgleft {
margin: 10px 5px 0px 0px;
float:left;
}

