/* CSS Document */
#contentcolumn{
margin: 0 200px 0 182px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
text-align: left;
}

#galleryholder{
height: 310px;
width: 410px;
border: 0px solid gray;
}

.gallerycontainer{
position: relative;

}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

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

.thumbnail:hover img{
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
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*/
visibility: visible;
top:-338px;
left: 97px; /*position where enlarged image should offset horizontally */
z-index: 50;
}



