﻿/* Each gallery item should have a frame around it */
.Item a
{
	display:block;
	border:solid 1px;
	padding:4px 4px 4px 4px;

	background-color:White;
}

.Item a:hover 
{
	border:solid 3px;
	padding:2px 2px 2px 2px;
}

/* The albums in the gallery */
.Gallery .AlbumPanel .TabControl
{
	margin-bottom:auto;
	padding-left:5px;
	font-size:small;
}

/* The thumbnails (left side) of the gallery */
.Gallery .ThumbPanel
{
	display:inline-block;
	float:left;
	
	padding-left:5px;
	padding-top:10px;
	
	border-left:solid 1px;
}

.Gallery .Thumb a
{
	float:left;
	margin-right:5px;
	margin-bottom:3px;
}

.Gallery .Thumb img
{
	width:80px;
	height:60px;
}

.Gallery .SelectedThumb a
{
	border:solid 3px;
	padding:2px 2px 2px 2px;
}

/* The displayed item (right side) of the gallery */
.Gallery .ItemPanel
{
	display:inline-block;
	float:right;
	
	padding:5px 5px 5px 5px;
	margin-top:10px;
}

.Gallery .ItemPanel .ItemTitle
{
	display:block;
	font-size:x-large;
}

.Gallery .ItemPanel .ItemDescription
{
	display:block;
}

.Gallery .ItemPanel .Item
{
	margin-top:10px;
	margin-bottom:10px;
}