/*	WRAPPER	*/
.items-wrapper {
}
	.items-inside {
		display: flex; display: -webkit-flex; 
		flex-flow: row wrap; -webkit-flex-flow: row wrap;
		justify-content: flex-start; -webkit-justify-content: flex-start;
		position: relative;
		z-index: 6700;
	}
		.items-inside .listing-title {
			padding-left: 37px;
		}

	.items-inside.w-padding {
		padding: 40px 0;
	}
	.items-inside.home {
		padding: 0;
		margin-top: -50px;
	}


/*	COLONNES 	*/
.items-inside .item-col25 {
	width: 25%;
	margin: 0;
}
.items-inside .item-col33 {
	width: 33%;
	margin: 0;
}
.items-inside .item-col49 {
	width: 49%;
	margin: 0;
}
.items-inside .item-col100 {
	width: 100%;
}


/*	ITEM 	*/
.content-item {
	display: block;
	width: 90%;
	margin: 0 auto 40px;
	overflow: hidden;
	position: relative;
	background-color: #FFF;
	border-top-left-radius: 0px;
/*	border-right: 12px solid #FFF; */
	-webkit-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
	-moz-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
	box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
}
	
	.content-item .picture {
		margin: auto;
		margin-left: 0px;
		height: 113px;
		margin-right: 10px;
		overflow: hidden;
		position: relative;
		z-index: 5;
	    -webkit-transition: all .5s ease-in-out 0s;
	    -moz-transition: all .5s ease-in-out 0s;
	    -ms-transition: all .5s ease-in-out 0s;
	    -o-transition: all .5s ease-in-out 0s;
	    transition: all .5s ease-in-out 0s;
	}
		.content-item .picture img {
			height: auto;
			width: 105%;
		}

	.content-item:hover .picture {
		margin-right: 0px;
	}

	.content-item .description {
		margin: 0;
		margin-right: 10px;
		height: 135px;
		text-align: left;
		line-height: 1.1;
		position: relative;
		z-index: 5;
	}
		.content-item .description .date {
			font-family: 'Trade Regular';
			font-weight: bold;
			font-size: 10px;
			padding: 7px 5px 1px;
			text-align: left;
		}
		.content-item .description .title {
			font-family: 'Trade Hv';
			line-height: 1.0;
			font-size: 14px;
			color: #0b2149;
			height: 45px;
			padding: 0 5px;
			text-transform: uppercase;
			display: flex; display: -webkit-flex; 
			flex-flow: row wrap; -webkit-flex-flow: row wrap;
		}
			.content-item .description .title .inside {
				margin: auto 0;
			}
		.content-item .description .intro {
			font-size: 13px;
			color: #0b2149;
			padding: 5px;
			overflow: hidden;
		}
	.content-item .more {
		position: absolute;
		bottom: 0px;
		right: -10px;
		z-index: 7;
	}

	.content-item.green .date {
		color: #009de2;
	}


/*	COMPORTEMENTS 	*/
.content-item:hover {
	text-decoration: none;
}


/*  LINKS MORE */
.link-more-wrapper {
	width: 100%;
	text-align: center;
}
	.link-more {
		display: block;
		color: #FFFFFF;
		font-family: 'Trade Hv';
		font-size: 14px;
		text-decoration: underline;
		text-transform: uppercase;
	}


/*	SHORTCUTS 	*/
.shortcuts-item {
	display: block;;
	margin: 15px auto;
	padding: 0 10px;
}
	.shortcuts-item img {
		width: 100%;
		height: auto;
	}
	.shortcuts-item .title {
		font-family: 'Trade Hv';
		line-height: 1.0;
		font-size: 14px;
		color: #0b2149;
		margin: 0px;
		padding: 5px 0;
		text-transform: uppercase;
		height: 40px;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: flex-start; -webkit-justify-content: flex-start;
	}
		.shortcuts-item .title .inside {
			margin: auto 0;
		}
	.shortcuts-item .shortcuts-intro {
		line-height: 1.0;
		font-size: 12px;
		font-family: 'Trade Regular';
	}


