/* CSS Document */

.images {
	margin-right:20px;
	margin-bottom:20px;
	border:solid 4px #0099CC;
	}

.pageindicator {
	color:#0099CC;
	font-size:18px;
	}
	
	
/* - - - -  gallery container - - - - - */
.gallerycontainer{
	position: relative;
	padding: 5px;
	clear: both;
	width: 323px;
	margin-right: auto;
	margin-left: auto;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
padding:5px;
background-color:#99CCCC;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{

}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 121px;
left: 14px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
