.linea_de_tiempo{
  float: left; 
  width: 96%; 
  margin: 20px 2% 50px; 
  position: relative; 
  box-sizing: border-box;
}

.linea_de_tiempo:before{
  background-color: #ccc; 
  bottom: 0; 
  content: " "; 
  left: 50%; 
  position: absolute; 
  top: 0; 
  width: 1px;
}

.linea_de_tiempo:after{
  border-radius: 50%; 
  bottom: -22px; 
  content: ""; 
  height: 18px; 
  left: 50%; 
  margin-left: -11px; 
  position: absolute; 
  width: 18px; 
  border: 2px solid #ccc;
}

.linea_de_tiempo li {
  position: relative; 
  float: left; 
  width: 100%;
}

.linea_de_tiempo li .linea_de_tiempo_borde{
  background-color: #ccc; 
  font-size: 1.4em; 
  height: 1px; 
  left: 50%; 
  margin-left: -8%; 
  position: absolute; 
  text-align: center; 
  top: 50%; 
  width: 8%; 
  z-index: 100;
}

.linea_de_tiempo li.lado_opuesto .linea_de_tiempo_borde{
  left: auto; 
  right: 50%; 
  margin-left: 0; 
  margin-right: -8%;
}

.linea_de_tiempo_contenedor{
	padding: 16px;
}

.linea_de_tiempo li .linea_de_tiempo_borde:before {
  background-color: #ccc; 
  content: ""; 
  height: 7px; 
  position: absolute; 
  right: -4px; 
  top: -3px; 
  width: 7px;
}

.linea_de_tiempo li.lado_opuesto .linea_de_tiempo_borde:before{
  left: -4px; 
  right: auto;
}

.linea_de_tiempo li .linea_de_tiempo_descripcion{
  border-radius: 8px; 
  background-color: #FFFFFF; 
  border: 1px solid #ccc; 
  float: left; 
  font-size: 13px; 
  padding: 0px; 
  position: relative; 
  width: 42%;
}

.linea_de_tiempo li.lado_opuesto .linea_de_tiempo_descripcion{
  float: right;
}

.linea_de_tiempo_destacar{
	position: absolute;
	color: #ffcc00;
	right: 10px;
	top: 10px;
	font-size: 24px;
}