﻿/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

/* Modified by Findlay Internet (http://www.findlayinternet.com/) */

body
{
}

	
.thumbnail {
	display: block;
	position: relative;
	z-index: 100;
}

a:hover.thumbnail {
	background-color: transparent;
	z-index: 1000;
	
	border: solid 0px #000;
}

.thumbnail span {
	/*CSS for enlarged image*/
	position: absolute;
	top: 0px;
	right: 160px; /*left: -1000px;*/;
	background-color: lightyellow;
	padding: 5px;
	border: 1px dashed gray;
	display: none; /*visibility: hidden;*/;
	color: black;
	text-decoration: none;
}

.thumbnail span img {
	/*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

a:hover.thumbnail span {
	/*CSS for enlarged image on hover*/
	display: block; /*visibility: visible;*/
	/*top: 0;*/
	/*right: 160px;*/ /*position where enlarged image should offset horizontally */
}

