/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail, 
.thumbnail-right-rightimage, 
.thumbnail-right-leftimage,
.thumbnail-left-leftimage,
.thumbnail-left-rightimage {
position: relative;
z-index: 0;
}

.thumbnail:hover,
.thumbnail-right-rightimage:hover, 
.thumbnail-right-leftimage:hover,
.thumbnail-left-leftimage:hover,
.thumbnail-left-rightimage:hover

{
background-color: transparent;
z-index: 50;
}

.thumbnail span, 
.thumbnail-right-rightimage span, 
.thumbnail-right-leftimage span,
.thumbnail-left-leftimage span,
.thumbnail-left-rightimage span

{ /*CSS for enlarged image*/
position: absolute;
left: -1000px;
border:1px solid #a7a195;
visibility: hidden;
color: black;
z-index:100;
margin-top:-132px;
text-decoration: none;
}

html* .thumbnail span,
html* .thumbnail-right-rightimage span, 
html* .thumbnail-right-leftimage span,
html* .thumbnail-left-leftimage span,
html* .thumbnail-left-rightimage span
{
margin-top:0px;
}
.thumbnail span img,
.thumbnail-right-rightimage span img,
.thumbnail-right-leftimage span img,
.thumbnail-left-leftimage span img,
.thumbnail-left-rightimage span img,
{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;

}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0px;
left: 0px; /*position where enlarged image should offset horizontally */
}

.thumbnail-right-rightimage:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -364px; /*position where enlarged image should offset horizontally */
}

.thumbnail-right-leftimage:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -180px; /*position where enlarged image should offset horizontally */
}

.thumbnail-left-leftimage:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 0px; /*position where enlarged image should offset horizontally */
}

.thumbnail-left-rightimage:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -184px; /*position where enlarged image should offset horizontally */
}