/*
 * jQuery Lightbox Plugin (balupton edition) - Lightboxes for jQuery
 * Copyright (C) 2008 Benjamin Arthur Lupton
 * http://jquery.com/plugins/project/jquerylightbox_bal
 *
 * This file is part of jQuery Lightbox (balupton edition).
 * 
 * jQuery Lightbox (balupton edition) is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * jQuery Lightbox (balupton edition) is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with jQuery Lightbox (balupton edition).  If not, see <http://www.gnu.org/licenses/>.
 *
 * @name jquery_lightbox: jquery.lightbox.css
 * @package jQuery Lightbox Plugin (balupton edition)
 * @version 1.3.0-rc1
 * @date August 24, 2008
 * @category jQuery plugin
 * @author Benjamin "balupton" Lupton {@link http://www.balupton.com}
 * @copyright (c) 2008 Benjamin Arthur Lupton {@link http://www.balupton.com}
 * @license GNU Affero General Public License - {@link http://www.gnu.org/licenses/agpl.html}
 * @example Visit {@link http://jquery.com/plugins/project/jquerylightbox_bal} for more information.
 */

html, body { margin: 0; padding: 0; height: 100%;}

#lightbox, #lightbox-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom:auto;
	right:auto;
	
	z-index:100;
	width:100%;
	height:auto;
	
	text-align:center;
	color:#333333;
	
	/* stop stupid conflicts */
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	line-height:0;
	
	/* general conflict stopper */
	text-decoration:none;
	background:none;
	word-spacing:normal;
	letter-spacing:normal;
	float:none;
	clear:none;
	display:block;
}



#lightbox-overlay {
	z-index: 90;
	background-color:#000000;
	height: 100%;
	position:fixed;
}
#lightbox-overlay-text {
	text-align: right;
	margin-right: 20px;
	margin-top: 20px;
	color: white;
	font-size: 12px;
	cursor: default;
	line-height:normal;
}
#lightbox-overlay-text a, #lightbox-overlay-text a:hover, #lightbox-overlay-text a:visited, #lightbox-overlay-text a:link {
	color:white;
}
#lightbox-overlay-text span {
	padding-left:5px;
	padding-right:5px;
}

#lightbox img, #lightbox a img, #lightbox a { border:none; outline:none; }

#lightbox-imageBox {
	position:relative;
	border:1px solid black;
	background-color:white;
	width:400px;
	height:400px;
	margin:0 auto;
}

#lightbox-imageContainer {
	padding:1px;
}

#lightbox-loading {
	position:absolute;
	top:40%;
	left:0%;
	height:25%;
	width:100%;
	text-align:center;
	line-height:0;
}


#lightbox-infoBox {
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	background-color:#FFFFFF;
	margin:0 auto;
	padding:0px;
}

#lightbox-infoContainer {
	padding-left:10px;
	padding-right:10px;
	padding-top:5px;
	padding-bottom:5px;
	line-height:normal;
}

#lightbox-infoHeader {
	width:100%;
}


#lightbox-caption-title { /* títol de la imatge */
	font-size:13px;
	margin-bottom:3px;
	color:black;
	font-weight:bold;
	display:block;	
	text-align:center;
}

#lightbox-caption-description { /* descripció de la imatge */
	color:#666666;
	display:none; /* No mostrem la descripcio perque fem servir el span del titol perque en aquest projecte nomes mostrem la descripcio */
}

#lightbox-infoFooter {
	margin-top:5px;
	border-top:1px solid #999999;
	border-bottom:1px solid #999999;
	padding:10px 0;
}


/* vincles de navegació */
a#lightbox-prev,
a#lightbox-next {
color:#0099FF;
}

a#lightbox-prev {
float:left;
}

a#lightbox-next {
float:right;
}

#lightbox-currentNumber {
	display:block;
	width:40%;
	margin:0 auto;
	text-align:center;
	color:#999999;
	font-size:11px;
}

#lightbox-close {
	display:block;
	margin:0 auto;
	background:#1E1E1E;	
	padding:2px;
}

#lightbox-close-button{
display:block;
height:15px;
width:15px;
margin:0 0 0 auto;
background-color:white;
text-indent:-10000px;
text-decoration:none;
background:transparent url("../images/boto-tancar.png") no-repeat;
}


#lightbox-infoContainer-clear {
	clear:both; 
	visibility:hidden;
}