/* CSS Image Viewer from CSSplay (www.cssplay.co.uk) */

#gallery 
{
	width: 600px;
	height: 310px;
	border: 1px solid #CCC;
	padding: 20px;
	position: relative;
}

#thumbs 
{
	width: 205px;
	float: right;
}

#thumbs a 
{
	display: block;
	float: right;
	width: 50px;
	height: 50px;
	border: 2px solid #999;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 8px;
}

#thumbs a img 
{ width: 50px; 
  height: 50px; 
  border: 0;
}

#thumbs a:hover {border-color: #ddd;}

#thumbs a:hover img 
{
	position: absolute;
	width: auto;
	height: auto;
	right: 210px;
	top: 20px;
	padding: 5px;
	border: 1px solid #CCC;
}
