.figtext {
	font-size:85%;
	color:#fff;
}

figure {
	margin: 0;
	position: relative;
	overflow: hidden;
	width: 115px;
}
figcaption {
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 45px;
	background: rgba(0,0,0,.5);
	-webkit-transform: rotate(90deg) scale(0);
	transform: rotate(90deg) scale(0);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
figure:hover figcaption {
	-webkit-transform: rotate(360deg) scale(1);
	transform: rotate(360deg) scale(1);
	opacity: 1;
}
