a.buy-btn {
	text-align: center;
    width: 100%;
    display: block;
    height: auto;
    padding: 20px 10px;
    color: #fff;
    font-size: 1em;
    letter-spacing: 3px;
    background: #222;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 40px auto 0;
	position: relative;
}

.buy-btn .link {
	position: absolute;
	right: 10px;
	bottom: 24px;
}

.buy-btn:hover{
    background: #b1a17b;
	text-decoration: none;
}

.buy-btn:active{
    opacity: 0.9;
}