.timeline {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEElEQVQIW2NMTEz8z8gABAAPKwIlXWq1kgAAAABJRU5ErkJggg==);
    background-position: 50% 0;
    background-repeat: repeat-y;
    height: auto;
    list-style-type: none;
    margin: 0px auto;
    /*max-width: 700px;*/
    overflow: hidden;
    padding: 0px;
    position: relative;
}

.timeline .year {
    background: #505050;
    border-radius: 30%/100%;
    clear: both;
    color: white;
    font-size: 3em;
    margin: 1em auto;
    margin-top: 50px;
    max-width: 4em;
    text-align: center;
}

.timeline .year:first-of-type { margin-top: 0 !important; }

.timeline .event {
    -moz-transition: background .15s linear;
    -ms-transition: background .15s linear;
    -o-transition: background .15s linear;
    -webkit-transition: background .15s linear;
    background: white;
    border: 1px solid #9d9d9d;
    border-radius: 5px;
    clear: right;
    color: #4d4d4d;
    display: block;
    float: right;
    list-style-type: none;
    margin: 10px 2.5%;
    padding: .4em;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background .15s linear;
    width: 45%;
    z-index: 15;
@media

all and (max-width: 600px) { width: 85%; }

}

.timeline .event.featured {
	width: 95% !important;
	background: #e8e8e8;
}

.timeline .event.featured:after, 
.timeline .event.featured:before {
	display: none;
}

.timeline .event.offset-first {
	margin-top: -1.5em !important;
}

.timeline .event img {
	margin-top: 10px;
	max-width: 100%;
}

.timeline .event:nth-child(2n) {
	float: left;
	clear: left;
	@media all and(min-width: 600px) {
		margin-top: 20px;
	}
}

.timeline .event:after {
	@media all and (min-width: 650px) {
		display: block;
		content: ' ';
		height: 9px;
		width: 9px;
		background: #9d9d9d;
		border-radius: 50%;
		position: absolute;
		left: -5%;
		top: 1.5em;
		border: 2px solid white;
	}
}

.timeline .event:nth-child(2n):after {
	right: -5%;
	left: auto;
}