.photoGallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	background-color: #666;
}
.onePhoto {
	position: relative;
	min-height: 135px;
	top: 0;
	left: 0;
}

@media screen and (max-width: 499px) {
	.onePhoto {
		flex-basis: 50%;
	}
	.linkedPhoto {
		padding-bottom: 20px;
	}
}
@media screen and (min-width: 500px) and (max-width: 649px) {
	.onePhoto {
		flex-basis: 33%;
	}
	.linkedPhoto {
		padding-bottom: 20px;
	}
}
@media screen and (min-width: 650px) and (max-width: 799px) {
	.onePhoto {
		flex-basis: 25%;
	}
	.linkedPhoto {
		padding-bottom: 20px
	}
}
@media screen and (min-width: 800px) {
	.onePhoto {
		flex-basis: 20%;
	}
	.linkedPhoto {
		padding-bottom: 20px
	}
}


.linkedPhoto img {
	width: 100%;
	height: auto;
}
.photoDescription {
	position: absolute;
	box-sizing: border-box;
	padding: 3% 5% 5% 5%;
	width: 100%;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(bottom, rgba(30,30,30,1.0) 0%, rgba(30,30,30,0.85) 50%, rgba(30,30,30,0.10) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(bottom, rgba(30,30,30,1.0) 0%, rgba(30,30,30,0.85) 50%, rgba(30,30,30,0.10) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to top, rgba(30,30,30,1.0) 0%, rgba(30,30,30,0.85) 50%, rgba(30,30,30,0.10) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0 ); /* IE6-9 */
}
.photoDescription a {
	color: white;
	text-decoration: none;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 12px;
}


.albumPaginator {
	font-size: 18px;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	display: table;
	border-spacing: 5px;
	margin: 8px auto;
}
.albumPaginator .endcap {
	width: 9%;
	text-align: center;
	display: table-cell;
}
.albumPaginator .end {
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	width: 36px;
	height: 100%;
	color: white;
}
.albumPaginator div.end {
	background-color: #666;
}
.albumPaginator a.end {
	background-color: green;
	text-decoration: none;
}
.albumPaginator .end span {
	line-height: 36px;
	position: relative;
}
.albumPaginator .pages {
	display: table-cell;
	max-width: 80%;
	line-height: 40px;
	text-align: center;
}
.albumPaginator .page {
	text-align: center;
	display: inline-block;
	border-radius: 5px;
	line-height: 36px;
	width: 36px;
	color: white;
}
.albumPaginator span.page {
	background-color: #666;
}
.albumPaginator a.page {
	background-color: green;
	text-decoration: none;
}