/* 
Created by Scott Larson 
at www.elstonmfg.com   
on Sept 2006
*/


.thumbnail {
position: relative;
}

.thumbnail span{ 
display: none;
background-color: white;
padding: 5px;
border: 3px solid black;
color: black;
text-decoration: none;
}

.thumbnail:hover span{ 
display: inline;
position: absolute;
top: 0;
left: 20em; /*offset of popup from left edge of item*/
z-index: 50;
}

