.header-bar {
	display: block;
	width: 100%;
}
.column {
	display: block;
	width: 95%;
	margin: 25px auto;
}
.column-secondary {
	text-align: center;
}
.column-secondary > div {
	display: block;
	width: 100%;
	margin: 15px auto;
	text-align: center;
}
.logo {
	max-width: 30%;
	width: 30%;
	height: auto;
}
.custom-logo {
	width: 100%;
}
.site-branding {
	font-size: 0.35rem;
	line-height: 2.5;
}
.site-description {
	font-size: 0.7rem;
}
.header-search {
	float: none;
	padding: 5%;
}
.search-form {
	text-align: center;
}

@media all and (min-width: 600px) {
	.site-branding {
		font-size: 0.7rem;
	}
}

@media all and (min-width: 768px) {
	.site-branding {
		font-size: 0.8rem;
	}
}

@media all and (min-width: 900px) {
	.header-bar {
		display: block;
		position: relative;
		max-width: 90%;
		width: 90%;
		margin: 75px auto;
	}
	.column {
		display: block;
		position: absolute;
		top: 50%;
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: 0;
	}
	.column-secondary {
		max-width: 70%;
		width: 70%;
		left: 0%;
		text-align: left;
	}
	.column-secondary > div {
		display: block;
		position: absolute;
		top: 50%;
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		text-align: left;
	}
	.logo {
		max-width: 15%;
		width: 15%;
		left: 0%;
	}
	.site-branding {
		max-width: 85%;
		width: 85%;
		left: 17%;
		font-size: 0.6rem;
		line-height: 2.5;
	}
	.header-search {
		padding: 0px;
		max-width: 30%;
		width: 30%;
		right: 0%;
	}
	.search-form {
		text-align: right;
	}
}

@media all and (min-width: 1200px) {
	.site-branding {
		font-size: 0.45rem;
	}
	.site-description {
		font-size: 0.45rem;
	}
}

#myaccessibility {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #333333;
	color: #ffffff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	bottom: 30px;
}
#myaccessibility.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}
.entry-meta , .tag-links {
	display: none;
}
.author-profile-card {
	background: #eee;
	border: 1px solid #ccc;
	padding: 20px;
	margin-bottom: 20px;
}
.author-photo {
	float: left;
	text-align: left;
	padding: 5px;
}
@media all and (max-width: 500px) {
	.user-profile {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		text-align: center;
		font-size: 10px;
		width: 100%;
	}
	.author-photo {
		display: flex;
		justify-content: center;
	}
	.user-basic-details {
		text-align: left;
	}
}