/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.imagecontainer{
position: relative;
margin: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 14px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 5px 9px 5px 1px;
}

.thumbnail:hover{
background-color: transparent;
margin: 0;
}

.thumbnail:hover img{
border: 1px solid #000000;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #333333;
	margin: 0;
	padding: 5px;
	left: -1000px;
	border: 1px solid #777777;
	color: black;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 12px;
	visibility: hidden;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	bottom: 21px;
	left: -385px; /*position where enlarged image should offset horizontally */
	z-index: 100;
}

