/*
CSS Popup Image Viewer
Author: Dynamic Drive
Link: http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/
--------------
Modified: 2006 Jul 14
*/

.thumbnail{
	position: relative;
	z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FFFFFF;
	padding: 5px;
	/* left: -1000px; */
	border: 1px solid #000000;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	left: 60px; /*position where enlarged image should offset horizontally */
}

/* Trail Image Integration */
#trailimageid{ 
	visibility: hidden;
	position: absolute;
	background-color: #FFFFFF;
	padding: 5px;
	border: 1px solid #000000;
	color: black;
	text-decoration: none;
	z-index: 51;
}
#infoDiv{
	font: 10px/12px Verdana, sans-serif, helvetica;
	visibility: visible; 
	text-align: center;
	z-index: 52;
  	width: 200px; height: 40px; 
	color: #000000;
}
#infoDiv div.info { 
	padding: 10px;
	text-align: center;
}