@charset "utf-8";



/* webfont
----------------------------- */




.box {
	margin: 5em 0 3em;
}





.popup img {
	background:#fff;
	padding:10px;
	margin: 1em 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);

	-moz-transition: all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	transition: all .2s ease-out;

	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'saturate\' values=\'0.2\' /></filter></svg>#grayscale");
	filter: gray;
	-webkit-filter: grayscale(80%);
}

.popup img:hover {
	box-shadow: 0 0 25px rgba(0,0,0,0.2);

	transform: rotate(-2deg);
	filter: none;
	-webkit-filter: grayscale(0%);
}
