

/* Common style */
 .figure {
	position: relative;
	overflow: hidden;
	max-width: 215px;
	min-width: 215px;
	/*max-height: 229px;*/
	width: 48%;
	background: #fff;
	text-align: center;
	cursor: pointer;
	
	
	border:5px solid #000;
	float:left;
	margin-right:50px;
	background:#fff;
}
.figure a{
	display:block;
	padding:5px;
	border:4px solid #000;
	margin:1px;
}
 .figure img {
	position: relative;
	display: block;
	max-width: 100%;
	opacity: 0.8;
	opacity: 1;
}


/* Individual effects */

/*---------------*/
/***** Chico *****/
/*---------------*/

.figure.effect-chico img {
	-ms-transition: opacity 0.35s, -webkit-transform 0.35s;
	-moz-transition: opacity 0.35s, -webkit-transform 0.35s;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

.figure.effect-chico:hover img {
	opacity: 0.3;
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/*
@media screen and (max-width: 50em) {
	.content {
		padding: 0 10px;
		text-align: center;
	}
	 .figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}*/