.stories-index {
	padding: 20px 0 0;
	width: 100%;
	display: flex; display: -webkit-flex; 
	flex-flow: row wrap; -webkit-flex-flow: row wrap;
	justify-content: flex-start; -webkit-justify-content: flex-start;
}
	.stories-index .stories-item {
		display: flex; display: -webkit-flex; 
		flex-flow: column; -webkit-flex-flow: column;
		justify-content: flex-start; -webkit-justify-content: flex-start;
		width: 100%;
		border: 1px solid #c0bcbc;
		border-radius: 7px;
		padding: 20px 10px 26px;
		position: relative;
		z-index: 1;
		background-position: center center;
		background-repeat: no-repeat;			
		transition: all .4s ease;
	}
		.stories-index .stories-item .picture {
			width: 100%;
			height: 180px;
			text-align: center;
			display: flex; display: -webkit-flex; 
			flex-flow: column; -webkit-flex-flow: column;
			justify-content: center; -webkit-justify-content: center;
		}
			.stories-index .stories-item .picture img {
				margin: auto;
				max-width: 100%;
				max-height: 180px;
			}
		.stories-index .stories-item .title {
			padding-top: 10px;
			padding-bottom: 2px;
			text-align: center;
			font-size: 19px;
			line-height: 0.9;
			font-family: 'Bebas Neue', cursive;
		}
		.stories-index .stories-item .date {
			text-align: center;
			font-size: 16px;
		}
		.stories-index .stories-item .voir {
			position: absolute;
			z-index: 2;
			bottom: -6px;
			width: 100%;
			text-align: center;
		}
	.stories-index .stories-item:hover {
		border: 1px solid #999;
  		border-radius: 13px;
		-webkit-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
		-moz-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
		box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);	
	}		

/* 

	STORY > LAST (bandeau)
*/
.last-item {
	margin: 7px 15px;
	width: 120px;
	display: flex; display: -webkit-flex; 
	flex-flow: column; -webkit-flex-flow: column;
	justify-content: center; -webkit-justify-content: center;
}
	.last-item .logo {
		width: 100%;
		text-align: center;
	}
		.last-item .logo img {
			width: 85px;
			height: auto;
			margin: auto;
		}
	.last-item .infos {
		margin: 0;
		width: 100%;
		text-align: center;
		padding-top: 7px;
	}
		.last-item .infos .title {
			font-weight: 500;
			color: #333;
			font-size: 13px;
			line-height: 1.0;
		}
	.last-item.race .logo {
		margin: auto;
		width: 80px;
		height: 80px;
		overflow: hidden;
		border-radius: 75px;
		background-color: #FFF;
		-webkit-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
		-moz-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
		box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);	
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: space-around; -webkit-justify-content: space-around;	
	}
		.last-item.race .logo img {
			width: 81px;
			height: auto;
			margin: auto;
		}


/*

	ITEM > EVENTS

*/
.events-item {
	width: 233px;
	margin: 0 auto;
	display: block;
	position: relative;
	background-color: #f6f6f6;
	border-radius: 7px;
	-webkit-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
	-moz-box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);
	box-shadow: 3px 2px 14px -1px rgba(94,94,94,0.63);	
}
	.events-item .label-view {
		position: absolute;
		right: -10px;
		top: 208px;
		z-index: 10;
		width: 160px;
		height: 37px;
	}	
		.events-item .label-view.red {
			background: url('../../_img/buttons/events-voir-red.png') no-repeat top right;
		}
		.events-item .label-view.yellow {
			background: url('../../_img/buttons/events-voir-yellow.png') no-repeat top right;
		}
	.events-item .picture-wrapper {
		width: 230px;
		height: 230px;
		overflow: hidden;
		position: relative;
		z-index: 5;
		background-color: #f6f6f6;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: space-around; -webkit-justify-content: space-around;
	}
		.events-item .picture-wrapper .picture {
			width: 200px;
			height: 200px;
			margin: auto;
			background-size: cover !important;
		}
	.events-item .infos {
		padding: 10px;
		height: 108px;
		border: 1px solid #f6f6f6;
		background-color: #FFF;
		position: relative;
		line-height: 1.1;
		color: #21211f;
		display: flex; display: -webkit-flex; 
		flex-flow: column; -webkit-flex-flow: column;
		justify-content: center; -webkit-justify-content: center;
	}
		.events-item .infos .title {
			font-size: 16px;
			line-height: 1.0;
			font-weight: bold;
			text-transform: uppercase;
		}
		.events-item .infos .date {
			line-height: 1.0;
			font-size: 12px;
			padding-top: 5px;
		}
		.events-item .more {
			padding-top: 9px;
			font-size: 13px;
			font-weight: 900;
			text-align: center;
			text-transform: uppercase;
		}
		.events-item .more.red {
			color: #ed1a3b;
		}
		.events-item .more.yellow {
			color: #ffcc00;
		}

/* 	HOVER 	*/
.events-item:hover .picture-wrapper .picture {
  	-moz-transform: scale(1.2);
  	-webkit-transform: scale(1.2);
  	transform: scale(1.2);	
}
.events-item:hover .infos {
}

