#Images,
#Folders
{
	width: 100%;
	overflow: hidden;
}
	#Images li,
	#Folders li
	{
		float: left;
		position: relative;
		text-align: center;
		text-decoration: none;
		margin: .4em;
	}
		#Images li a,
		#Folders li a
		{
			display: block;
			color: #eeeeee;
		}
		#Images li a:visited,
		#Folders li a:visited
		{
			color: #555555;
		}
		#Images li a:hover,
		#Folders li a:hover
		{
			color: #fff;
			text-decoration: none;
			font-weight: bold;
		}
			#Images li a img,
			#Folders li a img
			{
				border: 5px solid #fff;
			}
			#Images li a span,
			#Folders li a span
			{
				display: block;
				margin-top: .2em;
			}
	
	#Folders li a.Delete,
	#Images li a.Delete
	{
		position: absolute;
		right: 5px;
		top: 5px;
		width: 20px;
		height: 20px;
		display: block;
		border: 0;
		background-image: url(Delete.gif);
	}

#Pages
{
	margin-top: 2em;
}
	#Pages a
	{
		color: #888;
		text-decoration: none;
	}
		#Pages a:hover
		{
			text-decoration: underline;
			color: #eee;
		}
	
		
	
/*
	Administration
*/
#Admin
{
	margin-top: 5em;
}

#Admin fieldset br
{
	clear: left;
}
#Admin label,
#Admin input.Text
{
	display: block;
	width: 14em;
	float: left;
	margin-bottom: .2em;
}

#Admin label
{
	text-align: right;
	width: 15em;
	padding-right: .5em;
	color: #eee;
}

#Admin input.Text,
#Admin textarea
{
	display: block;
	padding: .1em 0 .2em .5em;
	background: #161619;
	border: 1px solid #444;
	color: #eee;
}

#Admin input.Text:focus
{
	border-color: #eee;
	background-image:url(edit.gif);
	background-repeat:no-repeat;
	background-position:right;
}
#Admin input.Submit
{
	font-size: 90%;
	font-weight: bold;
	border: 1px solid #444;
	color: #444;
	margin-top: 1em;
	padding: .3em 2em .3em 2em;
	background: #161619 url(arrow.gif) top right no-repeat;
	
}
	#Admin input.Submit:hover
	{
		border: 1px solid #eee;
		color: #eee;
	}
	
/*
	Popup
*/


.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(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(next.gif) no-repeat 100% 15%;
			}
			
		.Lightbox .Content .Image .Previous
		{
			float: left;
		}
			.Lightbox .Content .Image .Previous:hover
			{
				background: transparent url(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(close.gif) no-repeat center;
			margin: 10px 0 10px 10px;
		}