/* Import Skins */
@import url('../slider_skins/modern/style.css');

/* Global Styles */
.isInFullScreen {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	margin: auto !important;
	z-index: 10000 !important;
}

.mSCaption {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
			transform: translateZ(0);
}

.mightyslider_modern_skin .mSClose {
	width: 77px;
	height: 77px;
	background: url('../slider_skins/modern/icon-close.gif') no-repeat center;
	background-color: #111;
	background-color: rgba(0,0,0,0.6);
	cursor: pointer;
	overflow: hidden;
	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-border-radius: 3px;
	        border-radius: 3px;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

.mightyslider_modern_skin .mSClose:hover,
.mightyslider_modern_skin .mSVideo:hover,
.mightyslider_modern_skin .mSFlash:hover,
.mightyslider_modern_skin .mSIframe:hover {
	background-color: #00adef;
}
/* LightBox Styles */
body.mobile {
	overflow: hidden;
}
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100090;
}
.modal {
	background: transparent;
	visibility: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 960px;
	height: 480px;
	max-width: 100%;
	max-height: 100%;
	z-index: 100100;
	border: none;
	
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
	        border-radius: 6px;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;

	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;

	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;

	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	        transform-style: preserve-3d;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
}
.modal.show {
	visibility: visible;
}
.modal .modal-content {
	position: relative;
	width: 100%;
	background: #000;
	opacity: 0;

	-webkit-box-shadow: 0 0 45px rgba(0,0,0,.9);
			box-shadow: 0 0 45px rgba(0,0,0,.9);

	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	        transition: all 0.3s ease;

	-webkit-transform: rotateY(-90deg);
	   -moz-transform: rotateY(-90deg);
	    -ms-transform: rotateY(-90deg);
	        transform: rotateY(-90deg);
}
.height100 .modal-content {
	height: 100%;
}
.modal.mobile .modal-content {
	height: 100%;
}
.modal .modal-content:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	pointer-events: none;
	
	-webkit-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
			box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.11);
}
.ie .modal .modal-content:after {
	display: none;
}
.modal.show .modal-content {

	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	        transition: all 0.3s ease;
	opacity: 1;
	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
	    -ms-transform: rotateY(0deg);
	        transform: rotateY(0deg);
}
.modal .modal-content a.close-modal {
	position: absolute;
	width: 36px;
	height: 36px;
	top: -13px;
	right: -13px;
	background: url('../images/close_modal.png') no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	z-index: 102;
}
.modal.mobile .modal-content a.close-modal {
	top: 8px;
	right: 8px;
}
.modal .modal-content .modal-title {
	position: absolute;
	width: 100%;
	height: 75px;
	padding-top: 20px;
	padding-left: 25px;
	top: 0;
	left: 0;
	color: rgba(255,255,255, .85);
	font-size: 22px;
	font-weight: 300;
	z-index: 101;
	text-shadow: 1px 1px 1px rgba(0,0,0, .35);
	pointer-events: none;
	
	background-image: -o-linear-gradient(top , rgba(0,0,0, .3) 0%, rgba(0,0,0, 0) 100%); /* Opera 11.10+ */
	background-image: -moz-linear-gradient(top , rgba(0,0,0, .3) 0%, rgba(0,0,0, 0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0, .3)), color-stop(1, rgba(0,0,0, 0))); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top , rgba(0,0,0, .3) 0%, rgba(0,0,0, 0) 100%); /* Chrome10+,Safari5.1+ */
	background-image: -ms-linear-gradient(top , rgba(0,0,0, .3) 0%, rgba(0,0,0, 0) 100%); /* IE10+ */
	background-image: linear-gradient(top , rgba(0,0,0, .3) 0%, rgba(0,0,0, 0) 100%); /* W3C */

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.modal.mobile .modal-content .modal-title {
	height: 52px;
	top: 0;
	left: 0;
	font-size: 22px;
	line-height: 32px;
	padding: 0;
	padding-top: 10px;
	padding-left: 20px;
}
.modal .modal-content div.slider {
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.modal .modal-content div.frame {
	height: 100%;
}
.modal .modal-content div.frame div.slide_element,
.modal .modal-content div.frame div.slide_element .slide {
	height: 100%;
	margin: 0;
	padding: 0;
	float: left;
}
.modal .modal-content div.frame .mSCover img {
	max-width: none;
}

/* Tabs Styles */
#tabSlides .mightyslider_modern_skin {
	margin-right: 299px;
}
#tabSlides .frame {
	width: 100%;
	height: 350px;
}
#tabSlides .frame .slide_element {
	height: 100%;
}
#tabSlides .frame .slide_element > div {
	float: left;
	height: 100%;
}
#tabSlides .frame .mSCover img {
	max-width: none;
}
#tabSlides .tabs {
	position: absolute;
	width: 299px;
	height: 100%;
	right: 0;
	background: #2E2E2E;
}
#tabSlides .tabs ul {
	width: 100%;
	margin: 0;
	padding: 0;
}
#tabSlides .tabs ul li {
	background: #2E2E2E;
	width: 100%;
	cursor: pointer;
	padding: 15px 10px;
	border-bottom: #333 1px solid;
	color: #5a5a5a;
	font-weight: 300;
	font-size: 12px;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;

	-webkit-transition: background 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	   -moz-transition: background 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
		-ms-transition: background 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
		 -o-transition: background 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
			transition: background 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#tabSlides .tabs ul li:last-of-type {
	border-bottom: 0;
}
#tabSlides .tabs ul li h3 {
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	margin: 0;
	margin-bottom: 10px;
}
#tabSlides .tabs ul li:hover {
	background: #000;
	color: #999;
}
#tabSlides .tabs ul li:hover h3 {
	color: #FFF;
}
#tabSlides .tabs ul li.active {
	background: #080;
	color: #FFF;
}

/* Légende */
.caption {
	line-height: normal;
	font-weight: 300;
	opacity: 0;
	z-index: 1002;
	color: #FFF;
}
.caption1 {
	font-size: 22px;
	top: 60px;
	left: 130px;
	margin-left: -6px;
	text-align: left;
	word-spacing: 4px;
	line-height: 100%;
	text-transform: uppercase;
	z-index: 101;
	text-shadow: 2px 2px 2px rgba(0,0,0, .65);
}
.caption2 {
	bottom: 45px;
	left: 30px;
	right: 30px;
	text-transform: none;
	font-size: 14px;
	padding: 13px 15px;
	border-radius: 6px;
	background: #000;
	background: rgba(0,0,0,0.6);
	text-shadow: rgba(0,0,0,0.7) 0 1px 0px;
}
.caption3 {
	width: 166px;
	height: 166px;
	line-height: normal;
	font-size: 166px;
	font-family: Times;
	top: 300px;
	left: 300px;
}

.credit {
	position: absolute;
	bottom: 15px;
	left: 30px;
	font-size: 11px;
	line-height: normal;
	font-weight: 300;
	text-shadow: rgba(0,0,0,0.7) 0 1px 0px;
	color: #ddd;
	background: #000;
	background: rgba(0,0,0,0.4);
	border-radius: 2px;
	padding: 3px 4px;
	white-space: nowrap;
	z-index: 102;
	text-transform: uppercase;
}
.credit a {
	color: #FFF;
	font-weight: 400;
}

/* Responsive */
@media (min-width: 980px) and (max-width: 1199px) {
	#tabSlides .mightyslider_modern_skin {
		margin-right: 239px;
	}
	#tabSlides .tabs {
		width: 239px;
	}
	#tabSlides .tabs ul li h3 {
		font-size: 14px;
		line-height: 14px;
	}
}

@media (max-width: 979px) {
	#tabSlides .mightyslider_modern_skin {
		margin-right: 182px;
	}
	#tabSlides .tabs {
		width: 182px;
	}
	#tabSlides .tabs ul li h3 {
		font-size: 11px;
		line-height: 11px;
	}
}

@media (max-width: 767px) {
	.marketing2  {
		margin-left: -20px;
		margin-right: -20px;
	}
	.mSPrev, .mSNext {
		display: none;
	}
}

@media (max-width: 480px) {
	#tabSlides .mightyslider_modern_skin {
		margin-right: 0;
	}
	#tabSlides .tabs {
		display: none;
	}
	#tabSlides .frame {
	}
}

@media (min-width: 481px) {
	#tabSlides .mSPages {
		display: none;
	}
}

/* hauteur de la lightbox avec vignettes en fonction de la fenêtre*/
@media (min-height: 490px) {
	#tabSlides .frame {
		height: 390px;
	}
}
@media (min-height: 590px) {
	#tabSlides .frame {
		height: 490px;
	}
}
@media (min-height: 690px) {
	#tabSlides .frame {
		height: 590px;
	}
}
@media (min-height: 790px) {
	#tabSlides .frame {
		height: 690px;
	}
}
@media (min-height: 890px) {
	#tabSlides .frame {
		height: 790px;
	}
}
@media (min-height: 990px) {
	#tabSlides .frame {
		height: 890px;
	}
}
@media (min-height: 1090px) {
	#tabSlides .frame {
		height: 990px;
	}
}
@media (min-height: 1190px) {
	#tabSlides .frame {
		height: 1090px;
	}
}
@media (min-height: 1290px) {
	#tabSlides .frame {
		height: 1190px;
	}
}
@media (min-height: 1390px) {
	#tabSlides .frame {
		height: 1290px;
	}
}
@media (min-height: 1490px) {
	#tabSlides .frame {
		height: 1390px;
	}
}
