/**
 * jQuery lightBox plugin
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @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
 */
div#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}

div#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
}

div#lightbox-container-image-box {
	position:;
	background-color: #ccc;
	width: 0;
	height: 0;
	margin:0 auto;
}
div#lightbox-container-image-box img{
	margin:10px 0 0;
}

div#lightbox-container-image-data-box{
	background:#ccc;
	padding:7px 10px;
}
div#lightbox-container-image-data-box:after{
	display:block;
	clear:both;
	height:1px;
	overflow:hidden;
	content:" ";
}
div#lightbox-container-image-data-box a{
	display:block;
	width:60px;
	height:13px;
	float:right;
	background:url(../images/lightbox_close.gif) no-repeat;
}
div#lightbox-container-image-data-box a:hover{
	background-position:0 100%;
}
div#lightbox-container-image-data-box a span{
	display:none;
}


