/**
 * 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: 500px;
}

#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;
}

div#lightbox-container-image-box {
	position: relative;
	background-color: #000;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
div#lightbox-container-image {
	padding: 9px;
}
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

/* Vor-/Zurueck-Navigation */

div#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
div#lightbox-container-image-box > div#lightbox-nav {
	left: 0;
}
div#lightbox-nav a {
	outline: none;
}
a#lightbox-nav-btnPrev, a#lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
	background: none !important;
}
a#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
a#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}


/* Bild-Meta-Angaben (Bild X von Y; Vor-, Zurueck-, Schliessen-Icons) */

#lightbox-container-image-data-box {
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0 auto;
	overflow: auto;
	width: 100%;
	padding: 0 9px 9px;
	color: #bdbdbd;
	position: relative;
}
div#lightbox-container-image-data {
}
div#lightbox-container-image-data div#lightbox-image-details span {
	display: block;
	text-align: left;
}
span#lightbox-image-details-caption {
	font-weight: bold;
}
span#lightbox-image-details-currentNumber {

}

/* Vor-/Zurueck-Icons (in 2. Nav) */

a#secNav-btnPrev, a#secNav-btnNext {
	display: block;
	width: 5px;
	height: 15px;
	padding: 0 5px;
	position: absolute;
	top: 0;
	outline: none;
}
a#secNav-btnPrev {
	background: #000 url(../images/icon_prev.gif) no-repeat 50% 0 !important;
	right: 78px;
}
a#secNav-btnPrev:hover {
	background-image: url(../images/icon_prev_hover.gif) !important;
}
a#secNav-btnNext {
	background: #000 url(../images/icon_next.gif) no-repeat 50% 0 !important;
	right: 43px;
}
a#secNav-btnNext:hover {
	background-image: url(../images/icon_next_hover.gif) !important;
}

/* Schliessen-Icon */

a#lightbox-secNav-btnClose {
	display: block;
	width: 9px;
	height: 15px;
	background: url(../images/icon_close.gif) no-repeat;
	position: absolute;
	top: 0;
	right: 9px;
	outline: none;
}
a#lightbox-secNav-btnClose:hover {
	background-image: url(../images/icon_close_hover.gif);
}
a#lightbox-secNav-btnClose img {
	display: none;
}