			.figure {
				background: #ffede0;
				/*box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);*/
				/*display: inline-block;*/ 
				margin:  0; /*5px 5px 20px 5px;*/
				overflow: hidden;
				padding: 0;
				width: 400px;
				height: auto;      /*250px;*/
				-webkit-transition: all 0.25s ease-in;   /* für Safari 5.1, Android 2.3 bis 4.3 */
				transition: all 0.25s ease-in;
			}
 
			.figure img {
				height: 150px;
			}
 
			.figure:hover {
				box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
				margin: center;  /* -15px 0px 0 20px; */
				/* padding: 5px 5px 30px 5px; */
				width: 500px;
				z-index: 2;
				-webkit-transform: scale(2);  /* für Safari, Android */
				-ms-transform: scale(2); /* für IE9 */
				transform: scale(2);
			}
 
			.figure:after {
				clear: both;
				content: " ";
				display: block;
			}
			}
