/*
    laurels.css
    web-communication.eu | 14/04/2016
    Copyright 2017 web-communication.eu
*/



.laurels {
	position:					relative;
	margin: 					0 auto;
	width:						100%;
	/*max-width: 320px;*/
}

.laurels .fading {
	position:						absolute;
	bottom:							0;
	left:							0;
	width:							100%;
	height:							50px;
	
	/* webkit example */
	background-image: -webkit-gradient(
	linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.8))
	);

	/* mozilla example - FF3.6+ */
	background-image: -moz-linear-gradient(
	  rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 95%
	);

}

.laurels .container {
	width:						100%;
	display: 					inline-block;
}

.laurels .column {
	float: 						left;
	width:						25%;
	/*max-width:						80px;*/
	padding: 5px;
	/*margin-left:1%;*/
}


.laurels .column img {
	max-width: 					100%;
}

