@charset "windows-874";
/* CSS Document */

/*@import url(http://fonts.googleapis.com/css?family=Noto+Sans);*/
/*
body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  font-size: 100%;
  font-family: "Noto Sans", sans-serif;
  
  color: #eee9dc;
  background: #48b379;
  
}


h2 {
  margin: 3em 0 0 0;
  font-size: 1.5em;
  letter-spacing: 2px;
  text-transform: uppercase;
}
*/

/* -------------------------------------
 * timeline
 * ------------------------------------- */
#timeline {
  list-style: none;
  margin: 50px 0 30px 120px;
  padding-left: 30px;
  border-left: 8px solid #eee9dc;
}
#timeline li {
  padding-top:10px; padding-bottom:10px; 
  position: relative;
}
#timeline p {
  margin-top:5px;
  margin-left:20px;
}

.date {
  margin-top: -10px;
  top: 47%;
  left: -90px;
  font-size: 0.95em;
  line-height: 20px;
  position: absolute;
  color:#0098FF;
  font-weight:bold;
}

.circle {
  margin-top: -10px;
  top: 50%;
  left: -40px;
  width: 10px;
  height: 10px;
  background:#090;
  border: 5px solid #eee9dc;
  border-radius: 50%;
  display: block;
  position: absolute;
}

.content {
  max-height: 20px;
  padding: 50px 20px 0;
  border-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-radius: 0.5em;
  position: relative;
}
.content:before, .content:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  position: absolute;
  pointer-events: none;
  right: 100%;
}
.content:before {
  border-right-color: inherit;
  border-width: 20px;
  top: 50%;
  margin-top: -20px;
}
.content:after {
  border-right-color: #48b379;
  border-width: 17px;
  top: 50%;
  margin-top: -17px;
}
.content p {
  max-height: 0;
  color: transparent;
  text-align: justify;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}

label {
  font-size: 1.3em;
  position: absolute;
  z-index: 100;
  cursor: pointer;
  top: 13px;
  left:10px;
  transition: transform 0.2s linear;
}

.radio {
  display: none;
}

.radio:checked + .relative label {
  top:10px;
  left:10px;
  color:#48B379;
  font-size:1.8em;
  font-weight:bold;
  cursor: auto;
  transform: translateX(42px);
}
.radio:checked + .relative .circle {
  background: #48B379;
}
.radio:checked ~ .content {
  max-height: 100%;
  border-color: #eee9dc;
  margin-right: 20px;
  transform: translateX(20px);
  transition: max-height 0.4s linear, border-color 0.5s linear, transform 0.2s linear;
}
.radio:checked ~ .content p {
  top:10px;
  left:10px;
  max-height: 100%;  
  color:#ffffff;
  transition: color 0.3s linear 0.3s;
}

.radio:checked ~ .content p .content-topic {
	color:#0098FF;
	font-size:1.3em;
	font-weight:bold;
	padding-top:200px !important;
}



/* -------------------------------------
 * mobile phones (vertical version only)
 * ------------------------------------- */
@media screen and (max-width: 767px) {
  #timeline {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  #timeline li {
    margin: 50px 0;
  }

  label {
    width: 85%;
    font-size: 1.1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    transform: translateX(18px);
  }

  .content {
    padding-top: 45px;
    border-color: #eee9dc;
  }
  .content:before, .content:after {
    border: solid transparent;
    bottom: 100%;
  }
  .content:before {
    border-bottom-color: inherit;
    border-width: 17px;
    top: -16px;
    left: 50px;
    margin-left: -17px;
  }
  .content:after {
    border-bottom-color: #48b379;
    border-width: 20px;
    top: -20px;
    left: 50px;
    margin-left: -20px;
  }
  .content p {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .circle, .date {
    display: none;
  }
}