
/*-------------------------------
 IMAGES
********************************/
.wrapper {
	background-color: #1E1E1E;
	float:left;
	height: 0;
	width:100%;
	overflow:hidden;
	position:relative;
}

.loading {
	background: #1E1E1E url('js/loading.gif') center center no-repeat;
}
img.b-lazy {
	width:100%;
	opacity:0;
	padding:2px 2px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;   
	-webkit-transition: opacity 500ms ease-in-out 100ms;
    -moz-transition: opacity 500ms ease-in-out 100ms;
    -o-transition: opacity 500ms ease-in-out 100ms;
    transition: opacity 500ms ease-in-out 100ms;
}

img.b-loaded {
	opacity:1;
	width:auto;
}

.ratio_big-img {
	padding-bottom:56.7%;
}
.ratio_small-img {
	padding-bottom:32.61%;
	width:50%;
}


