@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(/img/ajax-loader.gif) no-repeat;
    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;
}

.ui-dialog-titlebar {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fff;
    bottom: 0;
    box-shadow: 0px 0px 10px #222;
    -moz-box-shadow: 0px 0px 10px #222;
    -webkit-box-shadow: 0px 0px 10px #222;
}

.ui-dialog-title {
    padding: 5px;
    display: block;
    float: left;
}

.ui-dialog-titlebar-close {
    float: right;
    padding: 5px;
}

.gallery-dialog-fullscreen .ui-dialog-titlebar .ui-dialog-titlebar-close {
    right: 2em;
}

a.image-link .photo-info {
    display: none;
}

span.filename {
    font-size: 12px;
    padding-left: 18px;
    background: url(/img/icons/image.png) no-repeat left center;
}

.deleted span.filename {
    text-decoration: line-through;
}

.deletion-info {
    display: none;
}

.deleted .deletion-info {
    display: inline;
}