/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	
	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#photos,
#logosClients{ visibility: hidden; }

#photos{
	margin-left: auto;
	margin-right: auto;
}

.gallerieClients {
	background-image: url(../../images/logos/clients/galerie_clients.gif);
	background-repeat: no-repeat;
	background-position: center 28px;
	height: 148px;
	background-color: transparent;
	padding-bottom: 38px;
	margin-bottom: 14px;
}
.gallerieClients .nav-prev, 
.gallerieClients .nav-next, 
.gallerieClients .nav-overlay {
    left:-5000px!important
}
#colSecondaire .gallerieClients h4{
	text-align: center;
	margin-top: 0;
	margin-bottom: 8px;
	background-image: none;
	color: #333;
}
#colSecondaire .gallerieClients h5{
	margin-top: 3px;
	margin-bottom: 0;
	font-size: .8em;
}
#colSecondaireComp .gallerieClients h4{
	text-align: center;
	margin-top: 0;
	margin-bottom: 8px;
	background-image: none;
	color: #333;
}
#colSecondaireComp .gallerieClients h5{
	margin-top: 3px;
	margin-bottom: 0;
	font-size: .8em;
}
/* GALLERY CONTAINER */


.gallery li{
list-style-type: none;
}

/* LOADING BOX */
.loader {  }

/* GALLERY PANELS */
.panel {}
.gallerieClients .panel {
background-color: transparent!important;}
#photos .panel {
	background-color: transparent!important;
	border: 2px solid #fff;
}
/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background { /*height: 60px; padding: 0 1em;*/ }

#photos .overlay {
	 width: 1px;!important
    margin-top:-5000px!important
}

/* PANEL OVERLAY BACKGROUND */
 .panel .overlay-background { }

/* PANEL OVERLAY CONTENT */
.gallery#logosClients .panel .panel-overlay {
	color: #000;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	background-image: url(../../images/interface/tuile_grise_1.gif);
	background-repeat: repeat-y;
	background-position: center top;
	padding-top: 6px!important;
	padding-bottom: 7px;
}


.panel .panel-overlay a { color: #000; text-decoration: underline; font-weight: bold; }

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap {  }

/* FRAME IMAGES */
.frame img { border: none; }
#photos .frame img { width: 40px!important; height: 30px!important; }


/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
.pointer {
	border-color: #000!important;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
	filter: chroma(color=pink);
}
