@charset 'UTF-8';
/*
 * jQuery Image Gallery Plugin CSS 1.3.2
 * https://github.com/blueimp/jQuery-Image-Gallery
 *
 * Copyright 2011, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://creativecommons.org/licenses/MIT/
 */

/* The loading animation: */
.gallery-dialog-loader,
.gallery-dialog-fullscreen-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  margin: -64px 0 0 -64px;
  background: url(loading.gif);
  z-index: 9999;
}

/* Fix for IE 6 which does not support position:fixed: */
*html .gallery-dialog-loader,
*html .gallery-dialog-fullscreen-loader {
  position: absolute;
}

.gallery-dialog .ui-dialog-content {
  cursor: pointer;
  text-align: center;
}

.gallery-dialog .ui-dialog-content img {
  border: 0;
}

/* Full screen styles: */
.gallery-dialog-fullscreen {
  padding: 0;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 20px #000;
  -moz-box-shadow: 0 0 20px #000;
  box-shadow: 0 0 20px #000;
}

.gallery-dialog-fullscreen .ui-dialog-titlebar {
  display: none;
}

.gallery-dialog-fullscreen .ui-dialog-content {
  padding: 0;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.gallery-dialog-fullscreen .ui-dialog-content img,
.gallery-dialog-fullscreen .ui-dialog-content canvas {
  float: left;
  border: 0;
}

/* Fix for IE 6 which shows a full width dialog: */
*html .gallery-dialog-fullscreen .ui-dialog-content img {
  float: none;
}

.gallery-body-fullscreen .ui-widget-overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* Fix for overlay hiding the dialog effects: */
.gallery-body .ui-effects-explode,
.gallery-body .ui-effects-wrapper,
.gallery-body-fullscreen .ui-effects-wrapper,
.gallery-body-fullscreen .ui-effects-explode {
  z-index: 10000!important;
}

/* Fix for scrollbars showing with some effects: */
.gallery-body,
.gallery-body-fullscreen {
  overflow: hidden;
}

/* Fix for IE 6 showing select boxes on top: */
*html .gallery-body select,
*html .gallery-body-fullscreen select {
  display: none;
}