a.top_linkbotton {
  position: relative;
  display: inline-block;
  background: #82b727;
  color: #ffffff;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 120%;
  line-height: 1.9;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 1em 2em;
  transition: all 0.4s;
}
a.top_linkbotton:visited {
  background: #82b727;
  color: #ffffff;
  border: none;
  text-decoration: none;
}
a.top_linkbotton:active {
  background: #e9ede2;
  color: #82b727;
  border: none;
  text-decoration: none;
}
a.top_linkbotton:hover {
  background: #e9ede2;
  color: #82b727;
  border: none;
  text-decoration: none;
  opacity: 1;
}
a.top_linkbotton:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  display: block;
  height: 4px;
  background: #82b727;
  transition: all 0.4s;
}
a.top_linkbotton:hover:before {
  left: 0;
  right: 0;
  background: #82b727;
}


