/* CSS Document */

#gallery {
	position:relative;
	width:800px;
	padding-top: 15px;
	padding-bottom: 15px;
}
#thumbs {
	width:180px; 
	float:left;
}
#thumbs a {
	display:block; 
	float:right; 
	margin:0 0 5px 5px; 
	width:30px; height:30px;
}
#thumbs a img {
	width:30px;
 	height:30px; 
	border:0;
}
#thumbs a:hover {
	border-color:#ddd;
}
#thumbs a:hover img {
	position:absolute;
	width:auto;
	height:auto;
	right:0px;
	top:0;
	padding: 15px;
}
#thumbs a:active, #thumbs a:focus {
	border:1px solid #c00; 
	z-index:10;
}

#thumbs a:active span, #thumbs a:focus span {
	visibility:visible; 
	z-index:10;
}

#thumbs a:active span img, #thumbs a:focus span img {
	border:1px solid #000; 
	position:relative; 
	margin:10px; 
	z-index:10;
}

