figure.effect-bubba {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#9aaab7+3,000000+100 */
background: #9aaab7; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #9aaab7 3%, #000000 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover, #9aaab7 3%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center, #9aaab7 3%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9aaab7', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	margin:10px 0;
position:relative;
}

figure.effect-bubba img {
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-bubba:hover img {
	opacity: 0.4;
}


figure.effect-bubba span {
	display:block;
	position:absolute;	
	width:50px;
	height:50px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	top:50%;
	left:50%;
	-webkit-transform: translate3d(-25px,-55px,0);
	transform: translate3d(-25px,-55px,0);
	text-align:center;
	border-radius: 100%;
}
figure.effect-bubba span i {font-size:30px;color:#fff;}
figure.effect-bubba:hover span {
	opacity: 1;
	-webkit-transform: translate3d(-25px,-25px,0);
	transform: translate3d(-25px,-25px,0);
	display:block;
	z-index:1;
}
