@charset "UTF-8";

.timeline {
  margin: 8px;
  box-sizing: border-box;
  width: 60%;
  max-width: 800px;
  
  padding: 100px 20px 0px 0px;
  
  box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0px;
  left: calc(31%);
  bottom: 0px;
  width: 4px;
  background: #ddd;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: .5em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
}
.entry .title:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid #005492;
  background-color: #fff;
  border-radius: 100%;
  top: 0%;
  right: -2px;
  z-index: 99;
}
.entry .title h3 {
  margin: 0;
  font-size: 120%;
}

.entry .body {
  margin: 0 0 3em;
  /* float: right; */
  width: 100%;
  padding-left: 240px;
}
.entry .body p {
  font-size: 110%;
  line-height: 1.4em;
}
.entry .body p:first-child {
  margin-top: 0;
  font-weight: 400;
}


