/* CSS Document */

/* DESIGNED BY http://www.paintedlizarddesigns.com*/
/* Designer: Allan Johnson*/
/* Site Copyrighted 2008 Bill Totaro Homes and Painted Lizard Web Designs, LLC*/

.gallerycontainer{
position: relative;
height:250px; /*Add a height attribute and set to largest image's height to prevent overlaying*/
width:260px;
}

/*modthumbnail section to allow original image into window on load */

.modthumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.modthumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: 250px;
visibility: visible;
color: black;
text-decoration: none;
}

.modthumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.modthumbnail span span{ /*CSS for enlarged image*/
border:none;
visibility: visible;
top: 0;
left: 0px; /*position where enlarged image should offset horizontally */
z-index: 51;
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -5000px;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
border:none;
visibility: visible;
top: 0;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

.thumbnail:hover span span{ /*CSS for enlarged image*/
border:none;
visibility: visible;
top: 0;
left: 0px; /*position where enlarged image should offset horizontally */
z-index: 51;
}
