/**
 * 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.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
 
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 100%;
}

#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}

#jquery-lightbox a img { 
	border: none; 
}

#lightbox-wrapper {
	background: url('images/lightbox-bg.png') no-repeat;
	width: 627px;
	height: 485px;
	padding-top: 5px;
}

#lightbox-frame {
	height: 480px;
	overflow: auto;
	width: 617px;
	margin: 0 auto;
}

#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 600px;
	height: 480px;
	margin: 0 auto;
	max-height: 480px;
	margin-top: 40px;
}

#lightbox-container-image { 
	width: 600px;
}

#lightbox-loading {
	position: absolute;
	top: 45%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}	
	
#lightbox-close {
	position: absolute;
	top: -12px;
	left: -12px;
	z-index: 200;
}

#lightbox-corner {
	position: absolute;
	bottom: -5px;
	left: 5px;
	z-index: 200;
	background: transparent url('images/curve-corner.png') no-repeat;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/curve-corner.png', sizingMethod='scale');
	width: 12px;
	height: 12px;
}
