/*Mouseover Stylesheet */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;

}

.thumbnail:hover{
background-color: n;
}

.thumbnail:hover img{
border: 1px solid gray;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: gray;
padding: 1px;
border: 1px solid gray thick;
visibility: hidden;
color: gray;
text-decoration: none;
}

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

.thumbnail-pers:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 225px; /*position where enlarged image should offset horizontally */
}

.thumbnail-port:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 375px; /*position where enlarged image should offset horizontally */
}

.thumbnail-fash:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 530px; /*position where enlarged image should offset horizontally */
}


