/*
	Author: Danilo Cicognani
	Script: slb.css
	Version: 1.00
	Date: 07/04/2008
	super-lightbox is freely distributable under the terms of an MIT-style license.
	For details, see the super-lightbox web site: http://www.super-lightbox.com/
	Copyright (c) 2008 CicoNET di Danilo Cicognani (http://www.ciconet.it/)
	Based on the works of Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2), Kevin P Miller (http://www.stickmanlabs.com) and Jeroen Wijering (http://www.jeroenwijering.com) that I thank.
*/

#slb_overlay {
	/* REQUIRED */
	display: none;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 500;
	/* REQUIRED */
}

#slb {
	/* REQUIRED */
	/* Of Note - The height and width of this element are set to 0px */
	display: none;
	visibility: hidden;
	position: absolute;
	z-index: 999;
	line-height: 0px;
	/* REQUIRED */
}

#slb_container {
	/* REQUIRED */
	display: none;
	visibility: hidden;
	position: absolute;
	/* REQUIRED */
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

/* IE6 needs this or it messes with our positioning */
* html #slb_container {
	overflow: hidden;
}

#slb_contents {
	overflow: hidden;
	z-index: 0;
	position: relative;
	border: 10px solid #ffffff;
	background-color: #ffffff;
}

#slb_loading {
	/* REQUIRED */
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 9999;
	position: absolute;
	/* REQUIRED */
	background-color: #f0f0f0;
	padding: 10px;
}

#slb_loading_shim {
	display: none;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
}

#slb_loading span {
	font-size: 12px;
	line-height: 32px;
	color: #444444;
	float: left;
	padding: 0 10px 0 0;
}

#slb_loading span a,
#slb_loading span a:link,
#slb_loading span a:visited {
	color: #09F;
	text-decoration: none;
	cursor: pointer;
}

#slb_loading span a:hover,
#slb_loading span a:active {
	text-decoration: underline;
}

#slb_loading img {
	float: left;
	margin: 0 10px 0 0;
}

/*-----------------------------------------------------------------------------------------------
	I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
	I mean let's face it, it works really well and is very easy to figure out.
-----------------------------------------------------------------------------------------------*/

#slb_navigation {
	/* REQUIRED */
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
	/* REQUIRED */
}
/* We need to shim the navigation for IE, though its more of a sub-floor */
#slb_navigation_shim {
	/* REQUIRED */
	display: none;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	/* REQUIRED */
}

#slb_navigation a,
#slb_navigation a:link,
#slb_navigation a:visited,
#slb_navigation a:hover,
#slb_navigation a:active {
	/* REQUIRED */
	outline: none;
	/* REQUIRED */
}

#slb_previous,
#slb_next {
	width: 49%;
	height: 100%;
	background: transparent url(blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
}

#slb_previous {
	float: left;
	left: 0px;
}

#slb_next {
	float: right;
	right: 0px;
}

#slb_previous:hover,
#slb_previous:active {
	background: url(prevlabel.gif) left 15% no-repeat;
}

#slb_next:hover,
#slb_next:active {
	background: url(nextlabel.gif) right 15% no-repeat;
}

#slb_previous_title,
#slb_next_title {
	display: none;
}

#slb_galleries {
	width: 100%;
	position: absolute;
	z-index: 50;
	display: none;
	overflow: hidden;
	margin: 0 0 0 10px;
	bottom: 0px;
	left: 0px;
}

#slb_galleries_tab_container {
	width: 100%;
	height: 0px;
	overflow: hidden;
}

a#slb_galleries_tab,
a:link#slb_galleries_tab,
a:visited#slb_galleries_tab {
	display: block;
	height: 20px;
	width: 77px;
	float: right;
	line-height: 22px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	font-size: 11px;
	color: #ffffbe;
	background: url(black-70.png) repeat 0 0 transparent;
}

* html a#slb_galleries_tab,
* html a:link#slb_galleries_tab,
* html a:visited#slb_galleries_tab {
	background: none;
	background-color: #000000;
	opacity: .70;
	filter: alpha(opacity=70);
}

a:hover#slb_galleries_tab,
a:active#slb_galleries_tab {
	color: #ffffbe;

}

#slb_galleries_tab_span {
	display: block;
	height: 20px;
	width: 63px;
	padding: 0 7px 0 7px;
}

#slb_galleries_tab .up	{
	background: url(arrow-up.gif) no-repeat 60px 5px transparent;
}

#slb_galleries_tab .down {
	background: url(arrow-down.gif) no-repeat 60px 6px transparent;
}

#slb_galleries_list {
	background: url(black-70.png) repeat 0 0 transparent;
	overflow: hidden;
	height: 0px;
}

* html #slb_galleries_list {
	background: none;
	background-color: #000000;
	opacity: .70;
	filter: alpha(opacity=70);
}

.slb_galleries_list {
	width: 200px;
	float: left;
	margin: 0 0 10px 0;
	padding: 10px;
}

.slb_galleries_list h1 {
	color: #09F;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 0 5px 0;
	font-size: 16px;
}

.slb_galleries_list li {
	margin: 5px 0 5px 0;
	list-style-type: none;
}

.slb_galleries_list a,
.slb_galleries_list a:link,
.slb_galleries_list a:visited {
	display: block;
	line-height: 22px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	padding: 0 0 0 10px;
	font-size: 11px;
}

.slb_galleries_list a:hover,
.slb_galleries_list a:active {
	background: #000000;
	color: #ffffbe;
	border-left: 3px solid #ffffbe;
	padding: 0 0 0 7px;
}

#slb_data {
	/* REQUIRED */
	position: absolute;
	/* REQUIRED */
}

#slb_data_slide {
	/* REQUIRED */
	position: relative;
	/* REQUIRED */
}

#slb_data_slide_inner {
	background-color: #ffffff;
	padding: 0 10px 10px 10px;
}

#slb_data_caption {
	padding: 10px 0 0 0;
	color: #666666;
	line-height: 25px;
	background-color: #ffffff;
	clear: both;
}

#slb_data_details {
	background-color: #f0f0f0;
	padding: 0 10px 0 10px;
	height: 20px;
}

#slb_data_author_container {
	width: 40%;
	text-align: right;
	color: #666666;
	font-style: italic;
	font-size: 10px;
	line-height: 20px;
	float: right;
	overflow: hidden;
}

#slb_data_gallery_container {
	font-size: 10px;
	width: 40%;
	text-align: left;
	color: #666666;
	line-height: 20px;
	float: left;
	overflow: hidden;
}

#slb_title_bar {
	height: 25px;
	overflow: hidden;
}

#slb_title_bar_title {
	color: #ffffbe;
	font-size: 14px;
	line-height: 25px;
	text-align: left;
	float: left;
}

a#slb_title_bar_close_link,
a:link#slb_title_bar_close_link,
a:visited#slb_title_bar_close_link {
	float: right;
	text-align: right;
	cursor: pointer;
	color: #ffffbe;
	line-height: 25px;
	padding: 0;
	margin: 0;
}

a:hover#slb_title_bar_close_link,
a:active#slb_title_bar_close_link {
	color: #ffffff;
}

/*-----------------------------------------------------------------------------------------------
	Theme styling stuff
-----------------------------------------------------------------------------------------------*/

#slb p {
	color: #000000;
	padding-right: 10px;
}
