/**
* CSS for LightBox Gone Wild.
*
* @author Kevin Hale (February 1, 2006)
* @link http://particletree.com/features/lightbox-gone-wild/
*
* @author Pavel Jartsev <papi@digitalfruit.ee>
* @package Api
* @subpackage JavaScript
*/

#overlay2
{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-image: url("img/overlay.png");
}
#overlay2[id]
{
	position:fixed;
}
* html #overlay2 /* IE */
{
	background-color: #333;
	back\ground-color: transparent;
	background-image: url("img/blank.gif");
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="api/js/lightbox2/img/overlay.png", sizingMethod="scale");
}

#lightbox2
{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width: 750px;
	height: 425px;
	margin: -212px 0 0 -375px;
/* 	border: 1px solid #fff; */
	background: #fff;
	text-align:left;
}
#lightbox2[id]
{
	position:fixed;
}

#lightbox2.loading #lbContent
{
	display: none;
}
#lightbox2.loading #lbLoadMessage
{
	background: url("img/loading.gif") no-repeat center center;
	display: block;
	height: 100%;
}

#lightbox2.done
{
	background: #fff;
	padding: 0;
}
#lightbox2.done #lbLoadMessage
{
	display: none;
}
#lightbox2.done #lbContent
{
/* 	border: 10px solid #fff; */
	display: block;
	height: 100%;
	margin: 10px;
}
#lightbox2.done img
{
}

.lbHeader
{
	background: #09f url("img/lbHeader.png") repeat-y left top;
	height: 30px;
	margin: 0;
	padding: 0 10px;
}
.lbHeader h5
{
	background: none;
	color: #fff;
	float: left;
	line-height: 30px;
	margin: 0;
	padding: 0;
}
.lbHeader .lbClose
{
	background: url("img/close.gif") no-repeat right center;
	color: #fff;
	float: right;
	height: 30px;
	width: 16px;
}

.lbBody
{
	padding-top: 10px;
}
.lbBody #images
{
	float: left;
	position: relative;
	width: 425px;
}
.lbBody #images img
{
	left: 0;
	position: absolute;
	top: 0;
}
.lbBody #images-switch
{
	left: 10px;
	position: absolute;
	margin: 0;
	top: 385px;
	list-style: none;
}
.lbBody #images-switch li
{
	float: left;
}
.lbBody #images-switch li a
{
	background: url("img/image_switch.gif") no-repeat left center;
	color: #022c5e;
	float: left;
	line-height: 16px;
	font-size: 10px;
	font-weight: bold;
	height: 16px;
	margin-right: 5px;
	width: 14px;
	text-decoration: none;
	text-align: center;
}
.lbBody #images-switch li a:hover
{
	text-decoration: none;
}
.lbBody #images-switch li.active a
{
	background-image: url("img/image_switch_a.gif");
	color: #fff;
}
.lbBody #project
{
	float: right;
	height: 365px;
	overflow: auto;
	padding-left: 10px;
	width: 295px;
}
.lbBody #project p
{
	padding: 10px 0 0 0;
}
.lbBody #project a
{
	line-height: 30px;
	text-decoration: none;
}
.lbBody #project a:hover
{
	text-decoration: underline;
}
