

.blogContainer {
  width: 60%;
  margin-top: 30px;
  margin-left: 18%;
  margin-bottom: 30px;
  overflow: auto;
  padding-right: 10px;
}

.blogContainer:hover{
  /*background-color: #e9f2e8;*/
}

.blogHeader {
  cursor: pointer;
  margin-top: 5px;
}
.blogTitle, .blogDate {
  text-align: left;
  /*border-left: solid;
  border-left-color: #408814;
  border-left-width: 5px;*/
  padding-left: 10px;
  margin-top: 1px;
  overflow: hidden;
}

.blogTitle, .blogDate:hover {

}
.blogTitle {
  font-size: 115%;
}

.blogDate {
  font-style: italic;
}

.blogContent {
  text-align: justify;
  /*margin-top: 20px;*/
  font-size: 110%;
  font-family: Palatino;
  /*padding-bottom: 25px;*/
  border-bottom: solid;
  border-bottom-width: 0.3px;
  border-bottom-color: #e6e6e9;
  margin-left: 55px;
  display: none;


}

a:link {
  background-color: transparent;
  text-decoration: none;
}

a:hover {
    color: green;
    background-color: transparent;
    text-decoration: underline;
}

.links {
  margin-top: 15px;
  font-size: 12px;
  font-style: italic;
}

.links p {
  margin-top: 2px;
}

.links p a:link {
  background-color: transparent;
  text-decoration: none;
}

.links p a:hover {
    color: green;
    background-color: transparent;
    text-decoration: underline;
}

.buttonDiv {
      width: 2%;
      float:left;
      margin-right: 30px;
}

.button {
  border-radius: 4px;
  background-color: #408814;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;

  width: 5px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0px;
  height: 38px;
}

.button:hover {
  width: 40px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  width: 125%;
  opacity: 0;
  top: -15px;
  right: -0px;
  transition: 0.5s;

}

.button:hover span {
  padding-right: 25px;

}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
