/**
 * jQuery lightBox 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-lightbox-0.5.js
 * @author Igor
 * @version 0.5
 * @date October 13, 2009
 * @category jQuery plugin
 * @copyright (c) 2009 Igor
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox img { 
	border: none;
	width: 0px;
	height: 0px;
}
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 0px;
	height: 0px;
	margin: 0;
}
#lightbox-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 0;
	background-color: transparent;
	background-image: url('../images/lightbox-ico-loading.gif');
	background-repeat:no-repeat;
}