.cd-container {
	width: 100%;
	max-width: 822px;
	margin: 0 auto;
}
.cd-container::after {
	content: '';
	display: table;
	clear: both;
}
.cd-timeline-announcement-image {
	-webkit-box-shadow: none!important;
	box-shadow: none!important;
	width: 100%;
	display: block;
	margin: 1em auto;
}
#cd-timeline {
	position: relative;
	padding: 2em 0;
	margin-top: 2em;
	margin-bottom: 3em;
	/* @since v1.1.5.7 */
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	/* IE 5-7 */
	filter: alpha(opacity=0);
	/* Netscape */
	-moz-opacity: 0;
	/* Safari 1.x */
	-khtml-opacity: 0;
	/* Good browsers */
	opacity: 0;
}
#cd-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	height: 100%;
	width: 4px;
	background: #d7e4ed;
}
/*
 * Important Note: Prevent the duplicate arrow, since with legacy support ALL announcements
 * have the .timeline-announcement-left class assinged to them.
*/
.cd-timeline-block:nth-child(even).timeline-announcement-left .cd-timeline-content::before {
	border-left-color: transparent;
}
/**
 * 2 column filter styles
 */
	.timeline-express-filter-dropdown select {
		width: 100%;
	}
	.timeline-express-filter-checkbox {
		display: inline-block;
		width: 100%;
	}
		.timeline-express-filter-checkbox li {
			list-style: none;
			float: left;
			margin-right: 12px;
		}
		.timeline-express-filter-checkbox input[type="checkbox"] {
			margin-right: 3px;
		}
	.timeline-express-filter-submit {
		display: block;
		margin-top: 12px;
	}
	.timeline-express-filter-left {
		float: left;
		width: 50%;
		padding: 0 15px 0 0;
	}
	.timeline-express-filter-right {
		float: right;
		width: 50%;
		padding: 0 0 0 15px;
	}
	.timeline-express-filter-group:after {
		content:"";
		display: table;
		clear: both;
	}
	/* Filter Break Point */
	@media screen and (max-width: 480px) {
		.timeline-express-filter-left,
		.timeline-express-filter-right {
			float: none;
			width: auto;
		}
		.timeline-express-filter-left {
			padding-right: 0;
			width: 100%;
		}
		.timeline-express-filter-right {
			margin: 18px 0 15px 0;
			width: 100%;
			padding-left: 0;
		}
		.timeline-express-filter-submit {
			width: 100%;
		}
	}
	/* Widget Filter Styles */
	.widget .timeline-express-filter-left,
	.widget .timeline-express-filter-right {
		width: 100%;
		padding: 10px 0;
	}
/** End 2 column styles **/
.announcement-banner-image {
	width: 100%;
	margin-bottom: 5px;
}
.timeline-express-single-page-announcement-date {
	display: block;
	margin-bottom: 1em;
}
@media only screen and (min-width:822px) {
	#cd-timeline {
	margin-top: 3em;
	margin-bottom: 5.5em;
	}
	#cd-timeline::before {
	left: 50%;
	margin-left: -2px;
	}
}
.cd-timeline-block {
	margin: 25px 0;
}
.cd-timeline-block:after {
	content: "";
	display: table;
	clear: both;
}
.cd-timeline-block:first-child {
	margin-top: 0;
}
.cd-timeline-block:last-child {
	margin-bottom: 0;
}
@media only screen and (min-width:822px) {
	.cd-timeline-block {
	width: 100%;
	margin: -3.5em 0;
	}
	.cd-timeline-block:first-child {
	margin-top: 0;
	}
	.cd-timeline-block:last-child {
	margin-bottom: 0;
	}
}
.cd-timeline-img {
	position: absolute;
	top: -5px;
	left: -10px;
	height: 55px;
	width: 55px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
	box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
}
.cd-timeline-img span.year {
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 55px;
}
.cd-timeline-img img {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
}
.cd-timeline-img.cd-picture {
	background: #75ce66;
}
.cd-timeline-img.cd-movie {
	background: #c03b44;
}
.cd-timeline-img.cd-location {
	background: #f0ca45;
}
@media only screen and (min-width:822px) {
	.cd-timeline-img {
	width: 60px;
	height: 60px;
	left: 50%;
	margin-left: -30px;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	}
	.cd-timeline-img span.year {
		display: inline-block;
		width: 100%;
		height: 100%;
		line-height: 60px;
		text-align: center;
	}
	.cssanimations .cd-timeline-img.is-hidden {
	visibility: hidden;
	}
	.cssanimations .cd-timeline-img.bounce-in {
	visibility: visible;
	-webkit-animation: cd-bounce-1 .6s;
	animation: cd-bounce-1 .6s;
	}
}
@-webkit-keyframes cd-bounce-1 {
	0% {
	opacity: 0;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	}
	60% {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	}
	100% {
	-webkit-transform: scale(1);
	transform: scale(1);
	}
}
@keyframes cd-bounce-1 {
	0% {
	opacity: 0;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	}
	60% {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	}
	100% {
	-webkit-transform: scale(1);
	transform: scale(1);
	}
}
.cd-timeline-content {
	position: relative;
	margin-left: 60px;
	background: #fff;
	-webkit-border-radius: .25em;
	border-radius: .25em;
	padding: 1em;
	-webkit-box-shadow: 0 3px 0 #B9C5CD;
	box-shadow: 0 3px 0 #B9C5CD;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
.cd-timeline-content:after {
	content: "";
	display: table;
	clear: both;
}
.cd-timeline-content .timeline-express-read-more-link {
	position: relative;
	z-index: 9999;
}
.cd-timeline-content .cd-date {
	float: left;
	padding: .8em 0;
	opacity: .7;
	font-size: 12px;
}
.cd-timeline-title-container {
	display: inline-block;
	width: 100%;
	float: left;
}
.cd-timeline-content .timeline-date {
	display: block;
	margin: 5px 0;
}
.cd-timeline-content::before {
	content: '';
	position: absolute;
	top: 16px;
	right: 100%;
	height: 0;
	width: 0;
	border: 7px solid transparent;
	border-right: 7px solid #fff;
}
@media only screen and (min-width:768px) {
	.cd-timeline-content h2 {
	margin-top: 0;
	margin-bottom: 0;
	}
	.cd-timeline-content .the-excerpt {
		position: relative;
	display: block;
	float: left;
	width: 100%;
	z-index: 9;
	}
	.cd-timeline-content .cd-date, .cd-timeline-content .timeline-express-read-more-link {
	position: relative;
	z-index: 10;
	}
}
@media only screen and (min-width:822px) {
	.cd-timeline-content {
	margin-left: 0;
	padding: 1.6em;
	width: 42.5%;
	background: #EFEFEF;
	}
	.cd-timeline-content::before {
	top: 24px;
	left: 100%;
	border-color: transparent transparent transparent #EFEFEF;
	}
	.cd-timeline-content .cd-date {
	position: absolute;
	width: 100%;
	left: 125%;
	top: 15px;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content {
	float: right;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content::before {
	top: 24px;
	left: auto;
	right: 100%;
	border-color: transparent #EFEFEF transparent transparent;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
	left: auto;
	right: 125%;
	text-align: right;
	}
	.cssanimations .cd-timeline-content.is-hidden {
	visibility: hidden;
	}
	.cssanimations .cd-timeline-content.bounce-in {
	visibility: visible;
	-webkit-animation: cd-bounce-2 .6s;
	animation: cd-bounce-2 .6s;
	}
}
@media only screen and (min-width:822px) {
	.cssanimations .cd-timeline-block: nth-child(even) .cd-timeline-content.bounce-in {
	-webkit-animation: cd-bounce-2-inverse .6s;
	animation: cd-bounce-2-inverse .6s;
	}
}
@-webkit-keyframes cd-bounce-2 {
	0% {
	opacity: 0;
	-webkit-transform: translateX(-100px);
	transform: translateX(-100px);
	}
	60% {
	opacity: 1;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	}
	100% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
}
@keyframes cd-bounce-2 {
	0% {
	opacity: 0;
	-webkit-transform: translateX(-100px);
	transform: translateX(-100px);
	}
	60% {
	opacity: 1;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	}
	100% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
}
@-webkit-keyframes cd-bounce-2-inverse {
	0% {
	opacity: 0;
	-webkit-transform: translateX(100px);
	transform: translateX(100px);
	}
	60% {
	opacity: 1;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	}
	100% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
}
@keyframes cd-bounce-2-inverse {
	0% {
	opacity: 0;
	-webkit-transform: translateX(100px);
	transform: translateX(100px);
	}
	60% {
	opacity: 1;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	}
	100% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
}
.more-to-come-container {
	position: relative;
	background: #EFEFEF;
	display: block;
	width: 100%;
	text-align: center;
}
.more-to-come {
	margin: 10em 0 0;
	padding: 1em 0;
	font-weight: 200;
	color: rgba(100, 100, 100, .46);
}
.page article.page {
	background: 0 0!important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	-webkit-box-shadow: none;
}
#cd-timeline span.fa {
	color: #fff;
	font-size: 28px;
	display: block;
	text-align: center;
	margin-top: 17px;
}
.cd-timeline-icon-link {
	color: #fff !important;
}
@media only screen and (max-width:821px) {
	#cd-timeline span.fa {
	color: #fff;
	font-size: 24px;
	display: block;
	text-align: center;
	margin-top: 15px;
	}
	.cd-timeline-block:nth-child(even) .cd-timeline-content .timeline-express-read-more-link,
	.cd-timeline-block:nth-child(odd) .cd-timeline-content .timeline-express-read-more-link {
	position: relative;
	z-index: 10;
	}
}
.timeline-date-left {
	width: 100%;
	float: left !important;
}
