/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
	position: relative;
	z-index: 0;
}

.thumbnail img { 
	border-width: 2px;
	border-color: #CC9966;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	z-index: 9999;
	background-color: white;
	padding: 8px;
	left: -1000px;
	border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	min-width: 200px;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 20px;
	left: 40px; /*position where enlarged image should offset horizontally */
}


.thumbnail2{
	position: relative;
	z-index: 0;
}

.thumbnail2 img { 
	border-width: 2px;
	border-color: #CC9966;
}

.thumbnail2:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail2 span{ /*CSS for enlarged image*/
	position: absolute;
	z-index: 9999;
	background-color: white;
	padding: 8px;
	left: -1000px;
	border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	min-width: 200px;
}

.thumbnail2 span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail2:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 20px;
	left: -50px; /*position where enlarged image should offset horizontally */
}

.thumbnail3{
	position: relative;
	z-index: 0;
}

.thumbnail3 img { 
	border-width: 2px;
	border-color: #CC9966;
}

.thumbnail3:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail3 span{ /*CSS for enlarged image*/
	position: absolute;
	z-index: 9999;
	background-color: white;
	padding: 8px;
	left: -1000px;
	border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	min-width: 210px;
}

.thumbnail3 span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail3:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 30px;
	left: -45px; /*position where enlarged image should offset horizontally */
}

#tooltip{
	position: absolute;
	border: 1px solid #333;
	background: #f7f5d1;
	padding: 2px 5px;
	color: #333333;
	display: none;
	font: 11px Arial;
	text-align: left;
}
