/**
 * .header-article-wrapper
 */

.banner-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 130px 0 55px;
	background: #000;
}

.banner-inner,
.banner-title {
	color: #fff;
}

@media only screen and (min-width: 641px) {
	.banner-wrapper {
		padding: 180px 0 155px;
	}
}

.banner-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	opacity: 0.3;
}

.banner-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	overflow: hidden;
}

@-webkit-keyframes overlayAnim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes overlayAnim {
	0% {opacity: 0; }
	100% {opacity: 1;}
}

.banner-image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0; /* Left offset in flint-common.js */
	min-height: 100%;
	min-width: 100%;
	margin: auto;
	opacity: 0;
	-webkit-animation: overlayAnim .2s ease-in-out .2s forwards;
	animation: overlayAnim .2s ease-in-out .2s forwards;
}

html.ie9 .banner-image img {
	opacity: 1;
}

.banner-inner {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	z-index: 100;
	position: relative;
	width: 100%;
	max-width: 1084px;
	margin: 0 auto;
	padding: 32px;
	text-align: center;
	text-rendering: optimizeLegibility;
}

.banner-title-pre,
.banner-title-post {
	display: block;
	margin-bottom: .75em;
	font-size: 24px;
	text-transform: none;
	letter-spacing: 1px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.125em;
	text-shadow: 2px 2px #0f0f0f;
}

.banner-inner .banner-title {
	margin: auto auto .2em;
	font: 700 68px/1em 'Open Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-shadow: 2px 2px #0f0f0f;
}

@media screen and (max-width: 640px) {
	.banner-inner .banner-title {
		font-size: 23px;
	}
}