/* Comment here                 ---  lightblue is :#C2D5FC   #63717F           */
/*  background:url(../images/button.png) no-repeat; padding-top:3px ; &nbsp;   */
/*  can combine classes in the html  class="aaaa bbbb"                         */

.PopUpThumbNail{ position: relative; z-index: 100; }

.PopUpThumbNail:hover{ background-color: transparent; z-index: 0; }

.PopUpThumbNail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.PopUpThumbNail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.PopUpThumbNail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -50px;
left: 150px; /*position where enlarged image should offset horizontally */

}

