﻿.Lightbox
{
	position: absolute;
	background: #fff;
	border: 10px solid #fff;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin: -100px;
	overflow: hidden;
	z-index: 2;
	visibility: hidden;
}

.LightboxLoading
{
	background-image: url(../Images/Loading.gif);
	background-position: center;
	background-repeat: no-repeat;
}

.Lightbox .Content
{
	overflow: hidden;
}
	.Lightbox .Content .Image
	{
		position: relative;
	}
	.Lightbox .Content .Image .Next,
	.Lightbox .Content .Image .Previous
	{
		display: block;
		top: 0;
		width: 49%;
		height: 100%;
		outline: 0;
	}
		.Lightbox .Content .Image .Next
		{
			float: right;
		}
			.Lightbox .Content .Image .Next:hover
			{
				background: transparent url(../Images/Next.gif) no-repeat 100% 15%;
			}
			
		.Lightbox .Content .Image .Previous
		{
			float: left;
		}
			.Lightbox .Content .Image .Previous:hover
			{
				background: transparent url(../Images/Previous.gif) no-repeat 0% 15%;
			}
		
	.Lightbox .Content .Bottom
	{
		position: relative;
		width: 100%;
		overflow: hidden;
	}
		.Lightbox .Content .Bottom .Title
		{
			margin: .3em;
		}	
		.Lightbox .Content .Bottom .Close
		{
			display: inline;
			float: right;
			width: 32px;
			height: 32px;
			background: transparent url(../Images/Close.gif) no-repeat center;
			margin: 10px 0 10px 10px;
		}