/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * Modified 2012 Nikola Vidoni (mobile ready, CSS3 optimizations, dropped IE6-7 support for shadows & opacity)
 * 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.6 (22/11/2012)
 * 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_ns-loading_ {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	width: 44px;
	height: 44px;
	background: url('../images/vl-box/controls.png') 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 1000000;
	display: none;
}

#fancybox_ns-loading_ div {
	width: 44px;
	height: 44px;
	background: url('../images/vl-box/loading.gif') center center no-repeat;
}

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

#fancybox_ns-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox_ns-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
	z-index:9999;
        box-sizing:content-box;
}

#fancybox_ns-outer {
	position: relative;
	width: 100%;
	height: auto !important;
	background: #fff;
	-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.50);