/* Hide high level WP elements */
#wpadminbar
{ display: none; }

/* Hide/tweak elements in continuation of hiding process */
footer.entry-meta {
	display: none;
}

/* Archive widget */
.archive-widget-year {
	display: inline-block;
	line-height: 35px;
	font-size: 22px;
	font-family: "Droid Serif";
	margin-right: 20px;
}

/* Hide S5-specific elements */

/* Add S5-specific elements */

/* Responsive display of Wordpress media player (mejs)  (From https://goo.gl/87s7db) (NOTE: Similar to the behavior in the backend, the player exhibits some odd "full screen icon wraps" behavior.  I'm not as concerned about it here, though, so let's hold off on fixing it for now.) */
.wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load {
	width: 100% !important;
	height: 100% !important;
}
.mejs-container {
	padding-top: 56.25%;
}
.wp-video, video.wp-video-shortcode {
	max-width: 100% !important;
}
video.wp-video-shortcode {
	position: relative;
}
.mejs-mediaelement {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.mejs-controls {
	display: none;
}
.mejs-overlay-play {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto !important;
	height: auto !important;
}
