.button 
	{
  border-radius: 20px;
  background-color: #4CAF50;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  width: 64%;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 10px #999;
  margin: 5px;
	}

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

.button span:after 
	{
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.2s;
	}

.button:hover 
	{
	background-color: #3e8e41
	}

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

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

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(5px);
	}


