/* Category Photo Formatting */
img.photo-view {
	display: block;
	width: 100%;
	height: auto;
}

p.date {
	font-family: 'Roboto', sans-serif;
	color: #6c6c6c;
	text-align: right;
	margin-right: 20%;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 1.1em;
}

/* Photoalbum's Story Comments */
p.photoalbum-story-comments {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1em;
	text-align: left;
	margin-left: 20%;
	margin-right: 20%;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 10px;
}

a.photoalbum-story-comments {
	color: #4a4a4a;
	text-decoration: underline;
	cursor: pointer;
}

a.photoalbum-story-comments:hover {
	font-weight: bold;
}

/* Pagination Block */
#pagination {
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#previous {
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
}

#page-number {
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 10px;
	margin-right: 10px;
}

#next {
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
}

/* Embedded Google Maps */
#map {
	width: 100%;
	height: 600px;
	border-left: 0px;
	border-right: 0px;
}


/* Unique styles for screen resolution of 1024px and below */
@media screen and (max-width: 1024px) {
	p.photoalbum-story-comments {
		font-size: 1em;
		margin-left: 10%;
		margin-right: 10%;
	}

	p.date {
		margin-right: 10%;
		font-size: 1em;
	}

	#pagination {
		font-size: 1.1em;
	}

	#map {
		height: 450px;
	}
}


/* Unique styles for screen resolution of 640px and below */
@media screen and (max-width: 640px) {
	p.photoalbum-story-comments {
		font-size: 0.9em;
		margin-left: 10px;
		margin-right: 10px;
	}

	p.date {
		margin-right: 15px;
		font-size: 0.9em;
	}

	#pagination {
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 1em;
	}

	#previous {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	#page-number {
		margin-top: 10px;
		margin-bottom: 10px;
		margin-left: 5px;
		margin-right: 5px;
	}

	#next {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.pagination-arrow {
		display:none;
	}

	#map {
		height: 350px;
	}
}


/* Unique styles for screen resolution of 320px and below */
@media screen and (max-width: 320px) {
	p.photoalbum-story-comments {
		font-size: 0.8em;
		margin-left: 10px;
		margin-right: 10px;
	}

	p.date {
		margin-right: 10px;
		font-size: 0.8em;
	}

	#pagination {
		font-size: 0.9em;
	}

	#map {
		height: 200px;
	}
}