@charset "utf-8";
/* CSS Document */
/* Image Gallery - Small Thumbnail Images */
	.thumb {
	padding: 0;
	float: none;
	text-decoration: none;
	line-height: normal;
	text-align: center;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
	}
	.thumb img, .thumb a img, .thumb a:link img{ /* Set link formatting*/
	/*width: 100px;  Image width*/
		/* height: 100px; Image height*/
		display: inline;
	padding: 1px; /* Image padding to form photo frame */
	/* You can set the above to 0px = no frame - but no hover indication! Adjust other widths ot text!*/
		margin: 0;
	background-color: white; /*Background of photo */
	border-top: 1px solid #eee; /* Borders of photo frame */
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	border-left: 1px solid #eee;
	text-decoration: none;
	}
.thumb a:visited img {
		background-color: #eee; /*Background of photo on hover - sort of a light grey */
	}

	.thumb a:hover img {
	background-color: #D5E8AC; /*Background of photo on hover - sort of light blue/green */
	}

	.thumbPicCaption {
	text-align: center;
	font-size: smaller;
	margin: 0 1px 0 0;
	padding: 0 25px; /* Image width plus 2 x padding for image (photo frame) - to center text on image */
		/* display: none;  if you do not want to display this text */
	}
