﻿#gallery 
{
	position: relative;
	width: 520px;
	height: 550px;
	margin: auto;
	padding: 5px;
}

#image 
{
	position: relative;
	background: url(images/loading.gif) center center no-repeat;
}

#image img
{
	position: absolute;
}

#thumbwrapper,
#thumbarea,
#thumbs
{
	height: 150px;
}

#thumbwrapper
{
    background-color: #F0F0F0; /*Lighter Gray */
	padding: 5px 0px;
    border: solid 2px #C0C0C0; /* Light Gray */
	margin-bottom: 10px;
}

#thumbarea
{
	position: relative;
	overflow: hidden;
}

#thumbs
{
	position: absolute;
	list-style: none;
	margin: 5px 10px;
	width: 1000px;
	padding: 0px;
}

#thumbs li
{
	float: left;
	margin-right: 20px;
	cursor: pointer;
}

#thumbs li img	/* Fixes stupid positioning issue in IE */
{
	display: inline;	
}

