@charset "UTF-8";
/* CSS Document */

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail{
	font-family: Tahoma, Verdana, Helvetica, Arial, 'Lucida Grande', sans-serif;
position: relative;
z-index: 0;
font-size:12px;
font-weight:bold;
 color: #ffffff;
 line-height:140%;
 text-decoration:none;
}

.thumbnail:link{
color:#FFFF00;
}

.thumbnail img{
border:0;
margin: 3px 3px 3px 3px;
width:200px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 0px;
}

.thumbnail span{ /*CSS for enlarged image*/
	font-family: Tahoma, Verdana, Helvetica, Arial, 'Lucida Grande', sans-serif;
position: absolute;
background-color: #ffffff;
padding: 5px;
left: -1000px;
border: 0;
visibility: hidden;
font-weight:normal;
font-size:11px;
color: black;
 line-height:120%;
text-decoration: none;
 width:210px;
}

.thumbnail span img{ /*CSS for enlarged image*/
border:0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: -230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
