.single #content #main .byline .divider {
	display: block;
	visibility: hidden;
	margin: 0;
	padding: 0;
	line-height: 0.7;
}

.single #content #main .byline .categories,
.single #content #main .byline .tags {
	font-size: 0.65em;
}

.single #content #main p.byline {
	line-height: 0.7;
}

.hiddenLogos {
	display: none;
}

#logos {
	text-align: center;
	vertical-align: middle;
	min-height: 105px;

	display: flex;
	justify-content: space-evenly; /* align horizontal */
	align-items: center; /* align vertical */

	max-width: 1040px;
	margin: auto;
}

#logos img {
	animation-duration: 3s;
	animation-name: fadein;
	animation-iteration-count: infinite;
	animation-direction: alternate;

	-o-animation-duration: 3s;
	-o-animation-name: fadein;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: alternate;

	-ms-animation-duration: 3s;
	-ms-animation-name: fadein;
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: alternate;

	-moz-animation-duration: 3s;
	-moz-animation-name: fadein;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;

	-webkit-animation-duration: 3s;
	-webkit-animation-name: fadein;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;

	vertical-align: middle;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}