/**
 * jQuery popup plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-popup.js
 * @author George Desmyter - http://www.bargeo.fr
 * @version 0.1
 * @date Novembre 10, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 George Desmyter (http://www.bargeo.fr)
 */


#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9997;
	width: 100%;
	height: 500px;
}
#jquery-popup-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9998;
}
#jquery-popup-container img { border: none; }
#jquery-popup-container-load {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	z-index: 9999;
}
#popup-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
}

table#preload, table#preload td, table#preload th {
	border-spacing: 0px;
	margin: 0px;
	padding: 0px;
	width: auto;
	height: auto;
}