#wrapper{
	padding: 50px 3%;
}

#wrapper > div{
	width: 240px;
	margin:0 auto;
}

a.boton{
	position: relative;
	display: block;
	padding: 9px 10px;
	border-radius: 10px;
	border: black 2px solid;
	text-align: center;
	font-weight: normal;
	max-width: 320px;
	height: 40px;
	margin-bottom: 60px;
	overflow: hidden;
	color:rgba(5,5,5,1.00);
	cursor: pointer;
	letter-spacing: 2px;
	box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);
	text-decoration: none;
	transition: all ease 0.5s;
	background:#A69C9C;
}

a.boton:after,
a.boton:before{
	width: 80px;
	height: 200px;
	content: '';
	display: block;
	background: rgba(255,255,255,0.5);
	transform: rotate(45deg);
	top: -60px;
	position: absolute;
	transition: none;
	right:-45%;
	cursor: pointer;
}

a.boton:before{
	left: -48%;
}

a.boton:hover{
	background:#66666
		
}

a.boton:hover:after,
a.boton:hover:before{
	transform: rotate(45deg), scaleX(130%);
	background: rgba(255,255,255,0.1);
	transition: all ease 2.5s;
}

a.boton:hover:after{
	right: 130%;
}

a.boton:hover:before{
	left: 130%;
}



