/* ==========================================================================

// Author: Steve Furley - http://www.varn.co.uk/
// Version: 900003.2.2 

========================================================================== */
.pink-button  {
	background: #B53388;
  color: white;
  font-size: 16px;
  min-width: 222px;
  padding: 17px 30px;
  text-align: center;
  transition: background 300ms ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
  opacity: 1;

}

.pink-button:hover {
	background: #9c2a75;
    transition: background 300ms ease;
    color: white;
  }