/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 *
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 *
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: none;
}

#fancybox-wrap {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 1101;
    outline: none;
    display: none;
}

#fancybox-outer {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

#fancybox-content {
    width: 0;
    height: 0;
    padding: 0;
    outline: none;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    z-index: 1102;
    border: 0 solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

#fancybox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: transparent url("images/fancybox1.png");
    cursor: pointer;
    z-index: 1103;
    display: none;
}

#fancybox-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.mobile #fancybox-content {
    overflow-y: scroll;
    border-radius: 1px;
    -webkit-overflow-scrolling: touch;
}
