/*

	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 */
#gallery
{
  visibility: hidden;
}

/* GALLERY CONTAINER */
.gallery
{
  margin-bottom: 30px;
}

div#InoContenuContainer div#InoContenuContent ul.filmstrip li
{
  list-style-image: none;
  list-style-type: none;
}

/* LOADING BOX */
.loader {
  background: url('/images/loading.gif') center center no-repeat #ddd;
}

/* GALLERY PANELS */
.panel
{
  background: #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: 70px;
  padding: 0;
}

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background
{
  background: #222;
}

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay
{
  color: white;
  font-size: 0.7em;
}

.panel .panel-overlay a
{
  color: white;
  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
{
}

/* FRAME IMAGES */
.frame img
{
  border: none;
}

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

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

/* Boutons Zoom et High def */

span.encartPictosVisuel-fr,
span.encartPictosVisuel-en
{
  display: block;
  position: absolute;
  /*width: 100px;*/
  height: 60px;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  z-index: 11;
  margin: 0px;
  padding: 0px;
  padding-right: 5px;
}

span.encartPictosVisuel-fr a:link,
span.encartPictosVisuel-fr a:visited,
span.encartPictosVisuel-fr a:hover,
span.encartPictosVisuel-fr span.highdef,
span.encartPictosVisuel-fr span.zoom,
span.encartPictosVisuel-en a:link,
span.encartPictosVisuel-en a:visited,
span.encartPictosVisuel-en a:hover,
span.encartPictosVisuel-en span.highdef,
span.encartPictosVisuel-en span.zoom
{
  margin: 0px;
  padding: 0px;
  display: inline;
  height: 50px;
  width: 35px;
  background-repeat: no-repeat;
  margin-left: 5px;
  margin-top: 5px;
  float: left;
  text-decoration: none;
}

span.encartPictosVisuel-fr a.highdef:link,
span.encartPictosVisuel-fr a.highdef:visited,
span.encartPictosVisuel-fr a.highdef:hover,
span.encartPictosVisuel-fr span.highdef,
span.encartPictosVisuel-en a.highdef:link,
span.encartPictosVisuel-en a.highdef:visited,
span.encartPictosVisuel-en a.highdef:hover,
span.encartPictosVisuel-en span.highdef
{
  width: 50px;
}

span.encartPictosVisuel-fr a span,
span.encartPictosVisuel-fr span.highdef span,
span.encartPictosVisuel-fr span.zoom span,
span.encartPictosVisuel-en a span,
span.encartPictosVisuel-en span.highdef span,
span.encartPictosVisuel-en span.zoom span
{
  margin: 0px;
  padding: 0px;
  font-size: 1px;
  visibility: hidden;
}

div#galleryContainer
{
  margin: 0px;
  padding: 0px;
  width: 880px;
  height: 472px;
  overflow: hidden;
  margin-bottom: 30px;
}

div#galleryContainer.masqueFilmStrip
{
  height: 399px;
}