body {
			font-family: 'Open Sans',sans-serif;
			font-size:1em;
		}
.container {
			max-width:1200px;
			margin:0 auto;
		}

p {
			padding-left:10px;
			font-size:100%;
		}

.center {
			text-align: center;
		}
		
.timeline {
  box-sizing: border-box; }
  .timeline::before {
    box-sizing: border-box; }
  .timeline * {
    box-sizing: border-box; }
    .timeline *::before {
      box-sizing: border-box; }

/* Main logic */
.timeline {
  position: relative;
  font-size: 1em;
  width: auto;
  height: 100%;
  margin: 0 auto;
  overflow-y: hidden;
  margin-top: 0; }
  .timeline .timeline-block {
    margin: 20px 0; }
  .timeline .timeline-icon {
    position: absolute; 	/* the dot*/
    width: 24px;
    height: 24px;
    left: 100%;
    border: 3px solid #c0c0c0;  
    border-radius: 100%;
    background-color: #d0d0d0;
    text-align: center; }

  .timeline .timeline-content { /* the box on the right */
    position: relative;
    width: 45%;
    padding: 6px;
    background-color: #EEE;
    border: 1px solid #e5e5e5;
    line-height: 20px;
    min-height: 64px; }
	
  .timeline .timeline-date { /* the year */
    position: absolute;
    width: auto;
    top: 0;
    left: 118%;
    font-size: 120%;
	font-weight: 700;	}

.timeline::before {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -1px;
  /* Half of width */
  background-color: #CFCFC4; /* line colour */
  content: ""; }

@media screen and (min-width: 800px) {
  .timeline.timeline-alternating:not(.timeline-left) .timeline-block:nth-of-type(2n) .timeline-content {
    left: 55%; }
  .timeline.timeline-alternating:not(.timeline-left) .timeline-block:nth-of-type(2n) .timeline-date {
    left: auto;
    right: 118%;
    margin-left: -400px; } }

@media screen and (max-width: 800px) {
  .timeline.timeline-collapsing::before {
    left: auto;
    margin-left: 850px; }
  .timeline.timeline-collapsing .timeline-block {
    margin-left: 85px;
    margin-right: 10px; }
  .timeline.timeline-collapsing .timeline-icon {
    left: auto;
    margin-left: -49px; }
  .timeline.timeline-collapsing .timeline-content {
    width: auto; }
  .timeline.timeline-collapsing .timeline-date {
    width: auto;
    left: 0;
    margin-left: -130px;
    text-align: right; } }

/* Left based logic */
.timeline.timeline-left::before {		/* where the line on the left is */
  left: auto;
  margin-left: 71px; }

.timeline.timeline-left .timeline-block {
  margin-left: 110px;
  margin-right: 10px; }

.timeline.timeline-left .timeline-icon {  /* dot margin */
  left: auto;
  margin-left: -50px; }

.timeline.timeline-left .timeline-content {
  width: auto; }

.timeline.timeline-left .timeline-date {	/* year margin */
  width: auto;
  left: 20px;
  margin-left: -130px;
  text-align: right; }