* { /* Voir ici : http://blog.goetter.fr/post/27612618411/box-sizing-et-pourquoi-pas */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
body, html {
	margin: 0;
	padding: 0;
	min-width: 1024px; /* Permet d'éviter le bug du background coupé sur iPad */
}
.hideMobile {
	display: initial;	
}
.hideTablette {
	display: none;	
}
.colonneCentrale {
	position: relative;
	width: 1024px;
	margin: 0 auto;
	padding: 0 27px;
}
.fadeToWhite {
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.fadeToWhite:hover {
		opacity: 0.9;
	}
}
.bigBouton {
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out; 
	transition: all .3s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.bigBouton:hover {
		color: #FFF;
		background-color: #222;
	}
}
h1 {
	font-size: 58px;
	line-height: 58px;
	padding: 47px 0 53px 0;	
}
#preview { /* Preview d'une image dans les articles */
	position:absolute;
	display:none;
	z-index: 10000;
}
#preview img {
	max-width: 500px;
	max-height: 500px;
	z-index: 10001;
}
.photo500px {
	width: 500px;
	display: block; 
	margin-left: auto; 
	margin-right: auto;
	margin-bottom: -20px;
}
.shoppingLinkContainer {
	display: inline-block;
	width: 270px; 
	height: 440px;
	margin-right: 30px;
}
.shoppingLinkContainer img {
	width: 270px; 
	height: 360px;
}
.shoppingLinkContainerBottom {
	height: 80px;
}
.shoppingLinkContainerBottomTitre {
	font-size: 15px;
	bottom: 50px; 
	height: 20px;
}
.shoppingLinkContainerBottomDesc {
	font-size: 13px;
	bottom: 25px; 
	height: 20px;
}
.shoppingLinkContainerBottomPrix {
	font-size: 13px;
	bottom: 0px; 
	height: 20px;
}


/****************** LIEN ARTICLE GENERIQUE ******************/

.apercuArticleContainer {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	height: 325px;
	margin: 33px 19px 0 0;
}
.apercuArticleContainer img {
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
	box-shadow: #000 0 0 0; /* Permet d'éviter le bug de l'image qui tremble sous FF (et parfois Chrome) */
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.apercuArticleContainer:hover img {
		opacity: 0.9;
	}
}



/****************** COMMENTAIRES ******************/

.commentTabReponse {
	margin-left: 30px;
}
.commentTabReponse2 {
	margin-left: 60px;
}




/****************** HEADER ******************/

#logoHome {
	width: 270px;
	position: absolute;
	top: 37px;
	left: 25px;
	max-height: none;
}
#logo {
	width: 232px;
	position: absolute;
	top: 30px;
	left: 25px;
	max-height: none;
}
#header, #headerHome {
	height: 124px;
	line-height: normal;
	margin: 0px;
}

#miniMenu {
	position: absolute;
	top: 22px;
	right: -5px;
	width: 450px;
	height: 40px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	button.headerReseauxSociaux:hover {
		opacity: 0.7;
	}
}
#headerBarreVerticale {
	position: absolute;
	top: 9px;
	right: 134px;
	height: 20px;
	border-right: 1px solid #bbb;
}
#headerRechercheForm {
	position: absolute;
	top: 8px;
	right: 170px;
	display: block;
	width: 210px;
	height: 26px;
}
#headerRechercheFormNew {
	position: absolute;
	display: block;
	border: 1px solid #ccc; 
	width: 358px; 
	height: 32px; 
	top: 4px; 
	right: 170px; 
	border-radius: 15px; 
	background-color: #f8f8f8;
}
#headerRechercheInput {
	position: absolute;
	padding: 0 5px;
	background-color: transparent;
	font-weight: 300;
	font-size: 14px;
	width: 325px; 
	height: 28px; 
	top: 1px; 
	right: 30px; 
	border-radius: 15px; 
	padding-left: 10px; 
	color: #aaa;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
#headerRechercheInput:focus {
	color: #aaa;
}
#headerRechercheImage {
	position: absolute;
	top: 7px; 
	right: 7px;
	width: 15px;
	padding: 0px;
}
#headerRechercheForm:hover #headerRechercheInput { /* ATTENTION : NE PAS DESACTIVER CE HOVER POUR LES TABLETTES */
	opacity: 1;
}
#headerRechercheFormNew:hover #headerRechercheInput { /* ATTENTION : NE PAS DESACTIVER CE HOVER POUR LES TABLETTES */
	opacity: 1;
}

#headerReseauxSociauxContainer {
	position: absolute;
	top: 10px;
	right: 0px;
}
button.headerReseauxSociaux {
	padding: 0 5px;	
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
	background: none; 
	border: none; 
	cursor: pointer;
}
.headerFacebook img {
	width: 10px;
}
.headerInstagram img {
	width: 16px;
}
.headerTwitter img {
	position: relative;
	bottom: 2px;
	width: 17px;
}
.headerPinterest img {
	position: relative;
	top: 1px;
	right: 1px;
	width: 14px;
}


#menuHeader {
	position: absolute;
	top: 70px;
	right: 0px;
	height: 30px;
	list-style-type: none;
}
#menuHeader li {
	position: relative;
	display: inline;
	float: left;
	padding-left: 26px;	
	height: 30px;
}
#menuHeader li a, #menuHeader li button {
	font-size: 13px;
	letter-spacing: 2px;
	color: #444;
	height: 34px;
	font-weight: 600;
	padding-left: 1px; /* Contre le letter-spacing: 2px qui ajoute un padding de 2 sur la droite */
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#menuHeader li a:hover, #menuHeader li button:hover {
		border-bottom: 2px solid #444;
	}
}

#headerReseauxSociauxContainerMobile, #menuMobile, #headerRechercheFormMobile {
	display: none;
}

#bigMenu {
	position:relative;
	left: 0;
	height: auto;
	width: auto;
	background-color: transparent;
	padding: 0px;
}



/****************** FOOTER ******************/

#footer {
	height: 234px;
	padding-top: 0px;
	text-align: left;
}
#logoFooter {
	position: absolute;
	top: 48px;
	left: 25px;
	width: 251px;
}
#footerNbContainerBig {
	width: auto;
	position: absolute;
	top: 41px;
	left: 355px;
}
.footerNbContainer {
	width: auto;	
	margin-right: 37px;
}


#footerMenuContainer {
	position: absolute;
	top: 128px;
	left: 355px;
}
.footerMenu {
	display: inline-block;
	padding-bottom: 3px;
	margin-right: 23px;
	border-bottom: 2px solid transparent;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.footerMenu:hover {
		color: #999;
		border-bottom: 2px solid #999;
	}
}


#footerCopyright {
	position: absolute;
	top: 158px;
	left: 355px;
	margin: 0px;
}


#footerColorz {
	position: absolute;
	top: 158px;
	height: 20px; /* Le height et le padding sont important sinon bug quand on redimensionne */
	padding: 0px; /* Le height et le padding sont important sinon bug quand on redimensionne */
	right: 25px;
	font-weight: 300;
	font-style: italic;
	color: #555;
	font-size: 11px;
}
#footerColorz button {
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#footerColorz button:hover {
		color: #ddd;
	}
}


#footerReseauxSociauxContainer {
	position: absolute;
	top: 68px;
	right: 15px;
	margin: 0px;
}
.footerReseauxSociaux {
	padding: 0 5px;
}
.footerReseauxSociaux img {
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	button.footerReseauxSociaux:hover img {
		opacity: 0.5;
	}
}
#footerFacebook img {
	width: 10px;
}
#footerInstagram img {
	width: 17px;
}
#footerTwitter img {
	width: 18px;
	bottom: 1px;
}
#footerPinterest img {
	width: 15px;
	top: 1px;
	right: 1px;
}


#footerInstagramMosaique img {
	width: 16.666%; 
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
	box-shadow: #000 0 0 0; /* Permet d'éviter le bug de l'image qui tremble sous FF (et parfois Chrome) */
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#footerInstagramMosaique a:hover img {
		background-color: green;
		opacity: 0.9;	
	}
}

#footerInstagramTitre {
	font-size: 40px;
	padding: 52px 0 28px 0px;
}
#footerInstagramTitreItalic {
	font-weight: 200;
	font-style: italic;
	font-size: 40px;
}


/****************** PAGE D'ACCUEIL ******************/

#homeContainerTop {
	height: 805px;
	padding: 0px;
}

#homeMainArticleImgContainer {
	position: absolute; 
	left: 287px; 
	top: 0px;
	width: 450px;
	height: 450px;
	margin: 0px;
	z-index: 5; 
}
#homeMainArticleImg img {
	z-index: 2; 
}
#homeMainArticleBackground {
	left: -38px; 
	top: 279px; 
	width: 439px; 
	height: 150px; 
}
#homeMainArticleContainer {
	left: -38px; 
	top: 279px; 
	width: 439px; 
	height: 150px; 
	line-height: 150px;
	padding: 0 20px;
}
#homeMainArticleTitre {
	font-size: 37px;
	line-height: 38px;
}
#homeMainArticleTitreSmall {
	font-size: 31px; /* avant 35 */
	line-height: 34px;
}


#homeBreveTopBackground {
	background-color: #ffce49; 
	opacity: 0.28;
	z-index: 2; 
	position: absolute; 
	left: 27px; 
	top: 149px; 
	width: 233px; 
	height: 362px; 
}
#homeBreveTopContainer {
	background: none;
	display: block;
	z-index: 2; 
	position: absolute; 
	left: 27px; 
	top: 149px; 
	width: 233px; 
	height: 362px; 
	padding: 32px 35px 0 20px;
}
#homeBreveTopTxt {
	font-size: 24px;
	color: #222;
	line-height: 27px;
}


#homeSecondArticleContainer {
	position: absolute; 
	left: 767px; 
	top: 64px; 
	width: 230px; 
	height: 230px; 
}
#homeSecondArticleDegrade {
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 230px; 
	height: 230px; 
}
#homeSecondArticleTitre {
	font-size: 24px;
	line-height: 27px;
}


#homePDJContainer {
	position: absolute; 
	left: 725px; 
	top: 346px; 
	width: 232px; 
	height: 310px; 
	z-index: 1;
}
#homePDJDegrade {
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 100%; 
	height: 100%; 
}
#homePDJTitre {
	font-size: 24px;
	line-height: 27px;
}


#homeConseilContainer {
	z-index: 0; 
	position: absolute; 
	left: 408px; 
	top: 521px; 
	width: 291px; 
	line-height: auto;
	padding: 27px 19px;
}
#homeConseilRubrique {
	margin-bottom: 15px;
}
#homeConseilTitre {
	font-size: 30px;
	line-height: 32px;
}


#homeLookbookContainer {
	position: absolute; 
	left: 109px; 
	top: 482px; 
	width: 273px; 
	height: 273px; 
	z-index: 1;
}
#homeLookbookContainerTxt {
	padding: 17px;
}
#homeLookbookDegrade {
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 273px; 
	height: 273px; 
}
#homeLookbookRubrique {
	margin-bottom: 10px;
}
#homeLookbookTitre {
	font-size: 30px;
	line-height: 31px;
}


#homeActuDuMomentContainer {
	padding: 41px 0 23px 0;
}
#homeActuDuMomentContainer .smallTitre {
	font-size: 20px;
}
#homeActuDuMomentContainer .homeTitre{
	padding-bottom: 0px;
}

#homeTouteLactuContainer {
	margin: 0px;	
	position: absolute;
	top: -3px;
	left: 505px;
}


.homeSuivreTDMSocialContainer {
	width: 188px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.homeSuivreTDMSocialContainer:hover img {
		filter: brightness(10%);
	    -webkit-filter: brightness(10%);
	    -moz-filter: brightness(10%);
	    -o-filter: brightness(10%);
	    -ms-filter: brightness(10%);
	}
	.homeSuivreTDMSocialContainer:hover .homeSuivreTDMSocialIcon {
		background-color: #FFF;
	}
}


#homeBrevesContainer {
	position: absolute;
	top: -516px;
	right: 28px;
	width: 304px;
	padding: 22px 20px 28px 20px;
}
#homeBrevesImage {
	margin: 12px 0 25px 0;
}
#homeBrevesImage a {
	display:block;
	max-height: 360px;
	overflow: hidden;
}


#homeConseilsContainer {
	width: 310px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	a.homeConseilsItem:hover {
		background-color: #fed160;	
	}
	/*a.homeConseilsItem:hover img {
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-moz-filter: invert(100%);
		-o-filter: invert(100%);
		-ms-filter: invert(100%);
	}*/
}


#homeEntreNousContainer {
	position: relative;
	float: right;
}
#homeEntreNousTitreContainer {
	margin-left: 20px;
	margin-bottom: 0px;
}
#homeEntreNousContainer .bigBouton {
	margin: 0px;
	position: absolute;
	top: 15px;
	right: 0px;
}
#homeEntreNousContainer .apercuArticleContainer {
	width: 310px;
	margin-right: 0px;
	margin-left: 20px;
}


#homeTendancesContainer {
	padding: 47px 0 49px 0;
}
#homeTendancesContainer .apercuArticleContainer {
	width: 310px;
	margin-right: 20px;
}
#homeTendancesContainer .homeTitre {
	padding-bottom: 0px;	
}
#homeToutesTendancesContainer {
	margin: 0px;	
	position: absolute;
	top: -3px;
	right: 27px;
}


#homeLookbooksContainer {
	padding: 45px 0 50px 0;
}
#homeLookbooksImageContainer {
	position: relative;
	width: 471px;
}


#homeIdeesShoppingContainerBig {
	margin-top: 0px;
	text-align: center;
	width: 490px;
	position: absolute;
	top: 0px; 
	right: 17px;
}
#homeIdeesShoppingContainer {
	margin: 0;
	overflow: hidden;
}
#homeIdeesShoppingContainer button {
	width: 150px;
	height: 200px;
	display: inline-block;
	float: left;
	padding: 0px;
	margin: 0 0 10px 10px;
}
#homeIdeesShoppingContainer img {
	display: block;
	padding: 0px;
}
#homeIdeesShoppingContainerBig .bigBouton {
	margin-top: 16px;
}


#homeNewsletterForm, #conseilsRechercheForm, #conseilsSoloNewsletterConseilsForm {
	display: block;
	margin: 28px auto 4px auto;
	width: 431px;	
	-webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out; 
	transition: background-color .2s ease-in-out;	
}	
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#homeNewsletterForm a:hover, #conseilsRechercheForm a:hover, #conseilsSoloNewsletterConseilsForm a:hover {
		background-color: #FFF;
		color: #333;	
	}
	#homeNewsletterForm:hover, #conseilsRechercheForm:hover, #conseilsSoloNewsletterConseilsForm:hover {
		background-color: #35353e;
	}
}


/****************** PAGE RUBRIQUES ******************/

#rubriquesContainer .apercuArticleContainer {
	width: 310px;
	height: 380px;
	margin-right: 20px;
	margin-top: 0px;
	vertical-align: top;
}
#rubriquesContainer #homeSuivreTDMContainer {
	margin: 0px 0 50px 0;
}
#rubriquesMenu {
	width: 700px;
	margin: -20px auto 50px auto; 
}


/****************** PAGINATION ******************/

#pagination {
	padding: 0px;
	margin-top: 0px;
	text-align: center;
}
#pagination a {
	display: inline-block;
	font-size: 15px;
	margin: 0px;
	width: 48px;
	padding: 0 0px 0 0px;
	border-top: 3px solid transparent;
}
#pagination button {
	display: inline-block;
	font-size: 15px;
	margin: 0px;
	width: 48px;
	padding: 0 0px 0 0px;
	border-top: 3px solid transparent;
}
a#paginationBoutonLeft, a#paginationBoutonRight, button#paginationBoutonLeft, button#paginationBoutonRight {
	display: inline-block;
	padding: 0 30px 0 30px;
	width: auto;
	margin: 0px;
	font-size: 10px;
}
#paginationBoutonLeft {
	float: none;
}
#paginationBoutonRight {
	float: none;
}
a#currentPagination, button#currentPagination {
	border-top: 3px solid #ecab16;
	color: #ecab16;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#pagination a:hover, #pagination button:hover {
		border-top: 3px solid #222;
	}
	a#paginationBoutonLeft:hover, a#paginationBoutonRight:hover, button#paginationBoutonLeft:hover, button#paginationBoutonRight:hover {
		border-top: 0;
	}
	a#currentPagination:hover, button#currentPagination:hover {
		border-top: 3px solid #ecab16;
	}
}
	
	
	
/****************** ARCHIVES ******************/
	
#menuArchivesContainer {
	width: 500px;
	margin: 10px auto 50px auto;
}	
.menuArchivesTitre img {
	right: 14px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	a.menuArchivesTitre:hover + ul {
		display: block;
	}
	.menuArchives:hover {
		display: block;
	}
	.menuArchives a:hover {
		color: #FFF;
		background-color: #1e1e25;	
	}
	a.menuArchivesTitre:hover {
		color: #FFF;
		background-color: #1e1e25;	
	}
	a.menuArchivesTitre:hover img {
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-moz-filter: invert(100%);
		-o-filter: invert(100%);
		-ms-filter: invert(100%);
	}
}



/****************** ARTICLES ******************/

#articleChapo {
	margin: 0 auto 42px auto;
	font-size: 23px;
	line-height: 31px;
	color: #444;
	width: 80%;
}
#articleNormal h1 {
	padding: 47px 0 35px 0;	
}
#articleContent {
	width: 90%;
	font-size: 17px;
	line-height: 24px;
}
#articleContent h2 {
	font-size: 27px;
}
#articleContent img {
	width: auto;
	max-width: 800px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#articleContent a:hover {
		color: #f0c95d;
	}
	#articleSuivezTDM a:hover {
		color: #777;
	}
}
#articleContent .hideImage {
	display: none;
	opacity: 0;
}
#articleContent .showImage {
	display: block;
	opacity: 1;
}	


#articleCarousel {
	position: relative; 
	overflow: hidden; 
	margin-top: 61px;
}
#articleCarouselContent {
	float: right;
	width: 424px;
}
#articleCarouselContent h1 {
	margin-top: -4px;
	padding: 0 0 35px 0;	
}
#articleCarouselImageContainer {
	display: block;
}
#articleCarouselImageContainer img {
	display: block;
	width: 424px;
	float: left; 
	margin: 0px;
	z-index: 1;
}
#articleCarousel img {
	margin: 0px;
}


#articleCarouselContent img {
	padding-top: 300px;
	display: none;
}
.articleCarouselSauterUneLigne { /* Petite combine pour les articles de type "carousel" permettant de sauter une ligne quand on met 2 lignes vides d'affilé */
	margin-top: 20px;
}
.articleCarouselSauterDeuxLignes { /* Cas particulier quand on a des H2 - voir article Aya Jones */
	margin-top: 40px;
}

#articlePartagerContainer {
	margin-top: 30px;
}
#articlePartagerContainer div {
	display: inline-block;
	margin-bottom: 0px;
	padding: 0 5px;
}


@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#articlePartagerFacebook a:hover {
		background-color: #345190;
		color: #fff;
	}
	#articlePartagerTwitter a:hover {
		background-color: #28a1dd;
		color: #fff;
	}
	#articlePartagerComments a:hover img {
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-moz-filter: invert(100%);
		-o-filter: invert(100%);
		-ms-filter: invert(100%);
	}
	#articlePartagerContainer a:hover #articlePartagerFacebookID path {
		fill: #FFF;
	}
	#articlePartagerContainer a:hover #articlePartagerTwitterID path {
		fill: #FFF;
	}
}


#articlePartagerContainerBig .homeTitre {
	padding-bottom: 0px;	
}
#articlePartagerDate {
	font-size: 15px;	
}
#articlePartagerTags a {
	font-size: 19px;	
}


.articleMemeThemeConseilContainer {
	height: 354px;
	line-height: 354px;
	padding: 0px 20px 0px 20px;
}
.articleMemeThemeConseilTexte {
	display:inline-block;
	vertical-align: middle;
	line-height: 1;
}
.articleMemeThemeConseilTitre {
	font-size: 37px;
	line-height: 40px;
}

 
#articleCommentairesAddContainerGlobal {
	position: relative;
	overflow: hidden;	
	min-height: 600px;
}
#articleCommentairesContainer {
	float: left;
	width: 472px;
}
#articleCommentairesAddContainerBig {
	position: absolute;
	right: 0px;
	width: 472px;
	height: 100%;
}
#articleCommentairesAddContainer {
	width: 472px;
	margin: 0px;
}
.articleCommentairesTitre {
	display: block;
	margin: 10px 0 30px 0;
	font-size: 27px;
}
#articleCommentairesCaptcha {
	float: left;
}

#articleReseauxSociauxTopContainer {
	margin: -13px 0 23px 0;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#articleReseauxSociauxTopContainer a:hover {
		color: #333;
	}
	.articleMemeThemeConseilContainer:hover {
		background-color: #fdf4df; 
	}
}


.articleTendanceContainerImg {
	float: left; 
	margin: 0 5px 0 0 !important;
	width: auto !important;
}





/****************** CONSEILS ******************/

#conseilH1 {
	margin-top: auto;
	font-size: 48px;
	line-height: 48px;
	letter-spacing: -2px;
	margin-bottom: -10px;
}
.conseilSousTitre {
	font-size: 33px;
	line-height: 33px;
	text-align: left;
	letter-spacing: -1px;
	padding: 0 0 20px 0;
	margin: -15px 0 3px -1px;
}
#conseilQuestion {
	margin-bottom: -10px;
	line-height: 23px;
}

#conseilsBandeau {
	position: relative;
	padding: 25px 0 25px 0;
	text-align: left;
}
#conseilsBandeauTitreLight {
	display: inline;
}
#conseilsBandeauBouton {
	position: absolute;
	right: 28px;
	top: 9px;
	margin: 0px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	a#conseilsBandeauBouton:hover {
		background-color: #FFF;
		color: #1e1e25;
	}
	a#conseilsBandeauBouton:hover #conseilsBandeauBoutonImage path {
		fill: #1e1e25;
	}
}



#conseilsDerniersConseilsContainer {
	padding: 42px 0 22px 0;
}
#conseilsDerniersConseilsContainer .homeTitre {
	text-align: left;
}
.conseilsDerniersConseils { 
	width: 227px;
	height: 227px;
	line-height: 227px;
	padding: 0 20px;
	margin: 0 20px 20px 0;
}
.conseilsDerniersConseilsColorAlt2 {
	background-color: #fbebc5; 
}
.conseilsDerniersConseilsColorAlt3 {
	background-color: #fbe3a9; 
}
.conseilsDerniersConseilsTexte {
	display:inline-block;
	vertical-align: middle;
	line-height: 1;

}
.conseilsDerniersConseilsTexte .apercuArticleCategorie {
	margin: 0px;
}
#conseilsDerniersConseilsList {
	margin-top: 16px;
	overflow: hidden;
}
.conseilsDerniersConseilsListColumn {
	float: left;
	width: 305px;
	margin-right: 27px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.conseilsDerniersConseils:hover {
		background-color: #fdf4df; 
	}
	#conseilsDerniersConseilsList a:hover {
		color: #777;		
	}
	a#conseilsRechercheOK:hover #conseilsRechercheImage path {
		fill: #111;
	}
}

#conseilsRecherche #homeNewsletterInput {
	font-size: 20px;
	padding-left: 20px;
}
#conseilsRechercheForm {
	width: 760px;
}


#conseilsTagsContainer .homeTitre {
	padding-bottom: 45px;
}


@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#conseilsTags a:hover, #conseilsTags button:hover {
		background-color: #fdf4df; 
	}
}



#conseilsSoloQuestion .colonneCentrale, #conseilsSoloReponse .colonneCentrale {
	width: 830px;
}
#conseilsSoloDate {
	margin: -40px 0 48px 0;
}
#conseilsSoloIntro {
	font-size: 17px;
}
#conseilsSoloQuestion, #conseilsSoloReponse {
	padding: 44px 0 44px 0;
}
#conseilsSoloContainer {
	display: table;
    width: 816px;
	border-spacing: 20px;
    margin: -20px 0 -20px -20px;
}
.conseilsSoloCombinaison {
	width: 245px;
	display: table-cell;
}


#conseilsSoloNewsletterConseilsSoustitre {
	font-size: 18px;
	margin-top: 9px;
}



#conseilsSoloLettresContainer {
	text-align: center;	
}
#conseilsSoloLettresContainer a {
	padding: 5px 12px;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out; 
	transition: all .2s ease-in-out;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#conseilsSoloLettresContainer a:hover {
		background-color: #EEB315;
		color: #111;
	}
}

.conseilsAFaire {
	background-color: rgba(255, 125, 125, 1);
}
.conseilRed {
	background-color: #9e3434;
}
.conseilOrange {
	background-color: orange;
}
.conseilGreen {
	background-color: green;}




a#conseilsCodeExclusif {
	height: 110px;
}
#conseilsCodeExclusifTexte {
	font-size: 18px;
}

a#conseilsCodeExclusif:hover {
	background-color: #f5e7c4;
}
a#conseilsCodeExclusif:hover .conseilsCodeExclusifBackground {

}



/****************** TAGS ******************/

@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.tagsQuestionsCompletesItem:hover {
		background-color: #fdf4df; 
	}
}

.tagsAffil {
	width: 25%; 
	padding-right: 10px; 
	margin-top: 0px;	
	margin-bottom: 10px;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	.tagsAffil:hover {
		opacity: 0.8;
	}
}
.tagsAffilMarque {
	font-size: 17px; 
}
.tagsAffilPrix {
	font-size: 15px; 
}
.tagsAffilAcheter {
	font-size: 11px;
}
#tagsPhotosContainer {
	margin: 0 0 30px 0;
}
.tagsPhotosContainerSmall {
	width: 25%;
	float: left;
}
#tagsPhotosContainer img {
	width: 100%;
	margin: 0;
	padding: 0;
}
#conseilsPhotosContainer {
	margin: 0 0 30px 0;
}
#conseilsPhotosContainer img {
	width: auto;
	max-width: 20%;
	margin: 0;
	padding: 0;
}


#tagsBandeau {
	margin: -50px 0 60px 0; 
}
#tagsBandeau img {
	width: auto;
}
#tagsBandeauTxt {
	font-size: 30px; 
	line-height: 30px; 
	margin: 28px 0 0 30px;
	width: auto;
}

#tagsBandeauConseils {
	margin: 45px 0 40px 0;
}
#tagsBandeauConseils img {
	width: auto;
}
#tagsBandeauConseilsTxt {
	font-size: 24px;
	line-height: 24px; 
	margin: 32px 0 0 15px;
	width: auto;
}


#tagsTendancesContainer {
	width: 969px; 
	text-align: center; 
	margin: -40px auto 80px auto; 
}
#tagsTendancesContainer img {
	text-align: center;
	border: 9px solid #FFF;
	width: auto;
}
#tagsTendances {
	margin: 40px 0 0 20px; 
	text-align: center; 
}
.tagsTendancesItem { 
	width: 25%;
	padding: 0 0 0 28px; 
	background-size: 20px;
	margin-bottom: 30px; 
}
.tagsTendancesNom { 
	bottom: 1px;
}

	

#sliderTags {
	margin: -40px auto 80px auto; 
	width: 830px;
}
#sliderTagsCadre {
	position: absolute; 
	border: 6px solid #e7e7e7; 
	height: 327px; 
	width: 612px; 
	background-color: #FFF;
}
#sliderTagsUL {
	height: 327px; 
}
#sliderTagsUL li {
	display: block; 
	width: 824px; 
	margin: 6px 0 0 6px;
}
#sliderTagsUL figure {
	overflow: hidden;
}
#sliderTagsUL figure img {
	float: left; 
	height: 315px;
	width: auto;
	border: none;
}
#sliderTagsUL figcaption {
	position: relative;
	bottom: 0px;
	left: 0px;
	width: 175px; 
	float: right;
	margin: 205px 0px 0 0;
}
.sliderTagsCompteur {
	position: absolute; 
	left: 648px; 
	top: -10px; 
	bottom: auto;
	right: auto;
}
.sliderTagsAchat {
	position: absolute; 
	right: 55px; 
	bottom: 0px;
}
.tagsNavigation {
	position: absolute; 
	width: 80px; 
	right: 100px; 
	top: 61px; 
	left: auto;
	height: auto;
}
.tagsNavigation .button-previous {
	position: absolute; 
	top: 67px;
}
.tagsNavigation .button-next {
	position: absolute; 
	top: 0px;
}
.tagsNavigation button {
	margin-bottom: 10px;
	
}	
.tagsNavigation button img {
	width: 50px;
}
	
/****************** PIECES DU JOUR ******************/

#PDJContainerBig .colonneCentrale {
	padding: 0 27px;
}
.PDJItem {
	width: 20%;
}
.PDJItemLandingPage {
	width: 25%;
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	button#PDJBottomBoutonNext:hover, button#PDJBottomBoutonPrev:hover {
		color: #FFF;
	}
	button#PDJBottomBoutonNext:hover #PDJBottomImgNext path {
		stroke: #FFF;
	}
	button#PDJBottomBoutonPrev:hover #PDJBottomImgPrev path {
		stroke: #FFF;
	}
	button.PDJItem:hover #homePDJDegrade {
		opacity: 1;
	}
	button.PDJItem:hover #homePDJContainerTxt {
		opacity: 1;
	}
}



/****************** LOOKBOOKS ******************/

#lookbooksImageContainer {
	position: relative;
	display: inline-block;
	margin: 0 40px 40px 0;
	width: 463px;
}
#lookbooksTitre {
	font-size: 40px;
	line-height: 36px;
}
#lookbooksTitre .italicBlancLight {
	font-size: 29px;
}

#lookbooksMarques {
	margin: 0px 0 50px 0;
}

.lookbooksMarquesListeColumnBig {
	width: auto;
	float: none;
	padding-left: 97px;
}
.lookbooksMarquesListeColumn {
	float: left;
	width: 194px;
	
}
@media only screen and (min-device-width : 1024px) { /* Permet d'éviter les tablettes */
	#lookbooksMarquesListe1 a:hover, #lookbooksMarquesListe2 a:hover, #lookbooksMarquesListe3 a:hover {
		color: #EEB315;
	}
	#lookbooksTopSaisonsListMenu a:hover {
		color: #FFF;
		background-color: #1e1e25;	
	}
}

#lookbooksMenuTop {
	margin-top: -10px;
}
#lookbooksMenuTopTxt {
	display: inline-block;
	margin: 0 15px 0 0;
}
#lookbooksMenuTop a {
	margin: 0 10px;
}
#lookbooksMenuTopMarque {
	padding: 12px 44px;
}
#lookbooksMenuTopSaison {
	padding: 12px 47px;
}
#lookbooksTopMarques {
	width: 969px;
	margin-left: auto;
	margin-right: auto;
}

#lookbooksTopSaisons {
	width: 969px;
	margin-left: auto;
	margin-right: auto;
}
#lookbooksTopSaisonsList {
	width: 500px;
}


.lookbooksSingleContentItem { /* Permet d'éviter de se retrouver avec 2 images sur la même ligne */
	margin-right: 50px;
	margin-left: 50px;
}



/****************** BREVES ******************/

#brevesLightboxBackground {
	position: fixed;
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
	background-color: rgba(0, 0, 0, 0.80);
	z-index: 100000;
}
a.brevesImage {
	display: inline-block;
	width: 311px;
	margin: 0 15px 15px 0;
}
button.brevesImage {
	display: inline-block;
	width: 311px;
	margin: 0 15px 15px 0;
}
.brevesDate {
	font-size: 45px;
	margin: 10px 0 30px 0;
	letter-spacing: -2px;
}
.brevesConseil {
	display: inline-block;
	width: 311px;
	height: 414px;
	line-height: 414px;
	padding: 0px 25px;
	margin: 0 15px 15px 0;
}


#brevesLightboxWhite {
	display: none;
	position: fixed;
	top: 20px;
	bottom: 20px;
	left: 50%;
	margin-left: -300px;
	width: 600px; 
	height: calc(100% - 40px); 
	background-color: #FFF; 
	z-index: 100001;
}
#brevesLightbox {
	display: none;
	position: fixed;
	top: 20px;
	bottom: 20px;
	left: 50%;
	margin-left: -300px;
	width: 600px; 
	height: calc(100% - 40px); 
	background-color: #FFF; 
	z-index: 100002;
	overflow: auto;
}
#brevesLightboxPart1 {
	padding: 0 50px 30px 50px;	
}
#brevesLightboxTopContainer .brevesDate {
	font-size: 33px;
	line-height: 35px;
	padding-left: 0px;
}
#brevesLightboxFlecheGauche {
	top: 22px;
	left: 48px;
}
#brevesLightboxFlecheDroite {
	position: absolute;
	top: 22px;
	left: 93px;
}
#brevesCroixLien {
	padding: 20px 0;
}
#brevesLightboxTopTitre {
	font-size: 36px;
	line-height: 36px;
}

#brevesLightboxPart2 .colonneCentrale {
	width: 100%;
	padding: 0 50px;
}

#brevesLightboxPart2 #articleCommentairesContainer {
	float: none;
	width: 100%;
}
#brevesLightboxPart2 #articleCommentairesAddContainerBig {
	position: relative;
	right: 0px;
	width: 100%;
	height: auto;
	padding-top: 20px;
}
#brevesLightboxPart2 #articleCommentairesAddContainer {
	width: 100%;
}



/****************** A Propos ******************/

#aProposImage {
	width: 480px;	
	float: left;
	margin: 0 20px 20px 0;
}



/****************** Recherche ******************/

.rechercheConseilsContainer {
	height: 300px;
	line-height: 300px;
	padding: 0px 20px 0px 20px;
	margin-top: 20px;
	margin-bottom: 0px;
}
.rechercheConseilsTitre {
	margin-bottom: 14px;
}




/****************** Sélecteur de langue ******************/

#langSelectorBox {
	position: absolute;
	top: 148px;
	right: 224px;
}



/****************** A LAISSER EN BAS ******************/

.titreMedium {
	font-size: 46px;
	line-height: 46px;
}
.titreSmall {
	font-size: 36px;
	line-height: 36px;
}