/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail {
   position: relative;
   z-index: 0;
}

.thumbnail:hover {
   background-color: transparent;
   z-index: 50;
}

.thumbnail span  { /*a nagykép stilusa*/
   position: absolute;
   background-color: #e5e5e5;
   padding: 5px;
   left: -1000px;
   border: 3px ridge #CCC;
   visibility: hidden;
   color: #666;
   text-decoration: none;
}

.thumbnail span img { /*a nagykép stilusa*/
   border-width: 0;
   padding: 2px;
}

.thumbnail:hover span{ /*a nagykép stilusa mikor látszik*/
   visibility: visible;
   top: -100px;
   left: -200px; 
   z-index: 100;
}
