/*
 * jQuery Lightbox Plugin (balupton edition) - Lightboxes for jQuery
 * Copyright (C) 2007-2009 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) 2007-2009 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 a, #lightbox a:link, #lightbox a:visited, #lightbox a:hover {
	text-decoration:underline;
	color:#999999;
}

#lightbox-overlay {
	z-index: 90;
	background-color:#11151b;
	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: 0;
	background-color:#323e45;
	width:400px;
	height:400px;
	margin:0 auto;
	padding:30px 30px 10px 30px !important;
}

#lightbox-imageContainer {
	padding:10px;
	background:#29343b;
}

#lightbox-loading {
	position:absolute;
	top:40%;
	left:0%;
	height:25%;
	width:100%;
	text-align:center;
	line-height:0;
}

#lightbox-nav {
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:10;
}
/* #lightbox-imageBox > #lightbox-nav { left: 0; } 
#lightbox-nav a { outline: none; }*/


#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	display:block;
	width:49%;
	height: 100%;
	background:transparent url("../images/blank.gif") no-repeat; /* Trick IE into showing hover */
	/* cursor:pointer; */
	zoom:1; /* who knows why? */
	
	padding:0px;
	margin:0px;
}
#lightbox-nav-btnPrev { 
	left:0;
	right:auto;
	float:left;
}
#lightbox-nav-btnNext { 
	left:auto;
	right:0;
	float:right;
}
/*
.preload_largeLink, #prevLink:hover, #prevLink:visited:hover {
	background:url("../images/prev.gif") left 45% no-repeat;
}
.preload_nextLink, #nextLink:hover, #nextLink:visited:hover {
	background:url("../images/next.gif") right 45% no-repeat;
}
*/

#lightbox-infoBox {
	font:10px Arial, Helvetica, sans-serif;
	background-color:#323e45;
	margin:0 auto;
	padding:0px 30px 20px 30px;
	
	/* width: 100%;
	padding: 0 10px 0; */
}

#lightbox-infoContainer {
	padding-left:10px;
	padding-right:10px;
	padding-top:5px;
	padding-bottom:5px;
	color:#666;
	
	line-height:normal;
	/* height:30px; */
}
#lightbox-infoHeader {
	width:100%;
	text-align:left; 
}
#lightbox-caption {
	text-align:left;
}
#lightbox-caption-title{
	float:left;
	width:60%
}
#lightbox-print a{
	display:block;
	color:#fff !important;
	text-decoration:none !important;
	font-size:11px;
	background:url(../images/print.gif) no-repeat 0 0;
	padding:0 0 0 25px;
	font-family:"Lucida Grande",Verdana,Arial,sans-serif;
	float:right;
}
#lightbox-caption-title {
	font-weight:bold;
	color:#ff6600;
	font-size:12px;
}
#lightbox-caption-description {
	font-weight:normal;
}

#lightbox-infoFooter {
	color:#fff;
	position: absolute;
	top:-29px;
	right:0;
	width:257px;
	height: 59px;
	background:#ff6600;	
}
#lightbox-currentNumber {
	display:block;
	width:49%;
	float:left;
	text-align:left;
}
#lightbox-close {
}
#lightbox a#lightbox-close-button{
	color:#fff;
	font-size:11px;
	background:url(../images/close.gif) no-repeat center left;
	display:block;
	width:125px;
	height:18px;
	/*margin:20px 0 0 25px;*/
	position: absolute;
	top:20px;
	left:25px;
	padding:4px 0 0 30px;
	text-decoration: none;
	text-align:left;
	line-height: 1em;
	z-index:30;
}
#lightbox a#lightbox-prev-button,
#lightbox a#lightbox-next-button{
	/*background:url(../images/prev.gif) no-repeat center center;*/
	display:block;
	width:20px;
	height:20px;
	text-indent:-999em;
	position: absolute;
	top:20px;
	right:40px;
	z-index:100;
}
#lightbox a#lightbox-next-button{
	/*background:url(../images/next.gif) no-repeat center center;*/
	right:10px;
}

#lightbox-close-button:hover {
	text-decoration: underline;
}

#lightbox-infoContainer-clear {
	clear:both; 
	visibility:hidden;
}
#lightbox span#lightbox-print a:hover{
	color:#bdc1c4 !important;
}
#lightbox a#lightbox-close-button:hover{
	color:#ffe0cc !important;
}
#lightbox-zit-logo{
	display: none;
}

#playLink {
    /* Edit here for a different image! Add width & height here if needed*/
    background:transparent url(../images/play.gif) no-repeat center;
    display:block;
    float:right;
    /* Set these two to the actual dimensions of your images! If they differ in size you have to set them seperately!*/
    width:26px;
    height:26px;
    /* End*/
    margin-left:1.0em;
}

#pauseLink {
    /* Edit here for a different image! Add width & height here if needed*/
    background:transparent url(../images/pause.gif) no-repeat center;
    display:block;
    float:right;
    /* Set these two to the actual dimensions of your images! If they differ in size you have to set them seperately!*/
    width:26px;
    height:26px;
    /* End*/
    margin-left:1.0em;
}

#saveLink {
    /* Edit here for a different image! Add width & height here if needed*/
    background:transparent url(../images/save.gif) no-repeat center;
    display:block;
    float:right;
    /* Set these two to the actual dimensions of your images! If they differ in size you have to set them seperately!*/
    width:26px;
    height:26px;
    /* End*/
    margin-left:1.0em;
}

#lightbox-currentNumber {
    display:none;
    margin-bottom:0.1em;
}

#lightbox-currentNumber a {
    color:#666;
    margin-right:1.0em;
}

#lightbox-currentNumber a.act {
    font-weight:bold;
    color:#fff;
    background:#777;
    border-right:0.2em solid #777;
    border-bottom:0.1em solid #777;
    border-left:0.4em solid #777;
}

