#photogalleries,
#photogallery,
.photogallery {
	width: var(--content-width);
	margin: 0px auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	text-align: left;
	line-height: 100%;
}
#photogalleries > a {
	display: inline-block;
	-webkit-flex: 0 0 33%;  /* Safari 6.1+ */
	-moz-flex: 0 0 33%;  /* Firefox 18+ */
	-ms-flex: 0 0 33%;  /* IE 10 */
	flex: 0 0 33%;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	box-shadow: none;
	padding: 18px 0 5px 0;
	margin: 5px 0;
}
#photogalleries > a > h2 {
	font-size: 24px;
	padding: 15px;
	margin: 0;
}
#photogallery > a,
.photogallery > a {
	display: inline-block;
/*
	-webkit-flex: 0 0 20%;  /* Safari 6.1+ * /
	-moz-flex: 0 0 20%;  /* Firefox 18+ * /
	-ms-flex: 0 0 20%;  /* IE 10 * /
	flex: 0 0 20%;
*/
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	box-shadow: none;
//	padding: 7.5px;
	margin: 7.5px;
}
#photogalleries > a:hover,
#photogallery > a:hover,
.photogallery > a:hover {
//	box-shadow: 0px 10px 30px grey;
	box-shadow: 0px 2px 20px var(--color-lightgray);
}
#photogallery > a > img,
.photogallery > a > img {
	border-radius: 16px;
	min-width: 220px;
	max-width: 250px;
}



@media only screen and (min-width: 640px) {


}


@media only screen and (min-width: 1000px) {
	#photogalleries,
	#photogallery,
	.photogallery {
		display: -webkit-flex;
		-webkit-flex-flow: row wrap;
		-webkit-justify-content: flex-start;
		display: flex;
		flex-flow: row wrap;
		align-content: flex-start;
		justify-content: flex-start;
		text-align: left;
		line-height: 100%;
	}

}