/* The gallery overlay */

#galleryOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	opacity:0;
	z-index:100000;
	background-color:#222;
	background-color:rgba(0,0,0,0.8);
	overflow:hidden;
	display:none;
	
	-moz-transition:opacity 1s ease;
	-webkit-transition:opacity 1s ease;
	transition:opacity 1s ease;
}

/* This class will trigger the animation */

#galleryOverlay.visible{
	opacity:1;
}

#gallerySlider{
	height:100%;
	
	left:0;
	top:0;
	
	width:100%;
	white-space: nowrap;
	position:absolute;
	
	-moz-transition:left 0.4s ease;
	-webkit-transition:left 0.4s ease;
	transition:left 0.4s ease;
}

#gallerySlider .placeholder{
	background: url("../img/preloader.gif") no-repeat center center;
	height: 100%;
	line-height: 1px;
	text-align: center;
	width:100%;
	display:inline-block;
}

/* The before element moves the
 * image halfway from the top */

#gallerySlider .placeholder:before{
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right:-1px;
}

#gallerySlider .placeholder img{
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	vertical-align: middle;
}

#gallerySlider.rightSpring{
	-moz-animation: rightSpring 0.3s;
	-webkit-animation: rightSpring 0.3s;
}

#gallerySlider.leftSpring{
	-moz-animation: leftSpring 0.3s;
	-webkit-animation: leftSpring 0.3s;
}

/* Firefox Keyframe Animations */

@-moz-keyframes rightSpring{
	0%{		margin-left:0px;}
	50%{	margin-left:-30px;}
	100%{	margin-left:0px;}
}

@-moz-keyframes leftSpring{
	0%{		margin-left:0px;}
	50%{	margin-left:30px;}
	100%{	margin-left:0px;}
}

/* Safari and Chrome Keyframe Animations */

@-webkit-keyframes rightSpring{
	0%{		margin-left:0px;}
	50%{	margin-left:-30px;}
	100%{	margin-left:0px;}
}

@-webkit-keyframes leftSpring{
	0%{		margin-left:0px;}
	50%{	margin-left:30px;}
	100%{	margin-left:0px;}
}

/* Arrows */

#prevArrow,#nextArrow{
	border:none;
	text-decoration:none;
	background:url(../img/slider-arrows.png) no-repeat;
	opacity:0.5;
	cursor:pointer;
	position:absolute;	
	top:46%;
	width: 48px;
    height: 48px;
    font-size:0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    -ms-transition: background .3s ease-in-out;
    -o-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

#nextArrow {
    background-position: -48px 0;
    right:40px;
}
#nextArrow:hover {
    background-position: -48px -48px;
	opacity:1;
}
#prevArrow {
    left:40px;
}
#prevArrow:hover {
    background-position: 0 -48px;
	opacity:1;
}	 


/* Close button */

#closeButton{
	border:none;
	text-decoration:none;
	background:url(../img/close.png) no-repeat;
	background-position: 0 0;
	opacity:0.5;
	cursor:pointer;
	position:absolute;
	z-index:100500;
	top:20px;
	right:20px;
	width: 48px;
    height: 48px;
    font-size:0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    -ms-transition: background .3s ease-in-out;
    -o-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
#closeButton:hover {
    background-position: 0 -48px;
	opacity:1;
}




/* =============================================================================
   ADDTHIS IMAGES CUSTOMISÉ
   ========================================================================== */
   
#images_share {
	position:absolute;
	bottom:10px;	
	width: 100%;
	overflow:hidden;
}

#images_share_bar {
	position: relative;	
	margin:auto;
	width: 280px;
	clear:both;
	height:40px!important;	
}
#images_share_title {
	float:left;
	display:inline-block;
	position: relative;	
	padding:10px 4px 10px 10px;
	font-family: 'helioscondbold', Arial, "Helvetica CY", Helvetica, sans-serif;
	font-size:20px;
	font-weight: normal;
	font-style: normal;		
	text-transform:uppercase;
	height:40px!important;	
	background: url(../img/pattern/pattern_marron.gif) repeat;
}
#images_share_title i {
	color:#ff8d27;
}
#images_share a {
	float:left;
	color:#ffffff;
	text-decoration:none;
}
#images_share a:hover {
	color:#ff9d00;
}

#images_share_content {
  position:relative;
  float:left;  
  display:inline-block;  
  padding:6px;
  font-size:13px;
  height:40px!important;
	background: url(../img/pattern/pattern_marron.gif) repeat;
}


/* BOUTONS SHARE SOCIAL */
#images_addthis .btn-share {
	font-family: 'helioscondregular', Arial, "Helvetica CY", Helvetica, sans-serif;
	background-color: #3a4051;
	text-transform: uppercase;
	font-size: 12px;	
	display: inline-block;
	position: relative;
	float: left;	
	height:28px;
	color:#fff;
	text-align:center;
	font-size:20px;
}

#images_addthis .btn-share:hover {
	background-color: #fff;
	color:#1b1b1b;
}

#images_addthis .icon-facebook {
	background-color: #3b5998;
	/* padding: top right bottom left; */
	padding:4px 10px 0px 10px;
	margin-left: 6px;	
}
#images_addthis .icon-twitter {
	background-color: #00bef6;
	font-size:14px;
	padding:7px 6px 1px 6px;
	margin-left: 6px;	
}
#images_addthis .icon-pinterest {
	background-color: #c91f25;
	padding:3px 6px 1px 5px;
	margin-left: 6px;	
}
#images_addthis .icon-share {
	background-color: #ff9d00;
	color:#1b1b1b;
	padding:4px 6px 0px 6px;
	margin-left: 6px;	
}

/* ADDTHIS */
#images_addthis .addthis_button_compact {
	cursor:pointer;
	overflow:hidden;
}
/* pour cacher les boutons AddThis sur Facebook et Twitter*/
#images_addthis .addthis_button_pinterest span, #images_addthis .addthis_button_twitter span, #images_addthis .addthis_button_facebook span  {
	display:none;
}

