.gallery {
    margin: 10px;
    padding: 5px;
    float: right;
    width:130px;
    height: 600px;
    overflow: auto;
}

.gallery a.image {
	text-decoration:none;
}

.gallery a.image:hover {
	background-color:transparent;
}

.gallery a.image img {
	border: 2px solid #1e1e01; /*Border around thumbnail*/
	margin: 0; /*Margin around thumbnail*/
	padding: 0; /*Mat size around the thumbnail*/
	background-color:gray; /*Mat color around thumbnail*/
}

.gallery a.image:hover img {
	border:2px solid #2a3a61; /*Border around viewed thumb - use link color?*/	
}

.gallery a.image span {
    position:fixed;
	visibility:hidden;
	display:none;
	left:-2000px;
}

.gallery a.image:hover span {
	position:fixed;
	visibility:visible;
	display:block;
	z-index:2;
	border: 0; /*Border around the container*/
	padding:10px; /*Container size around the image*/
	background-color:white;	/*container color*/
	font-size:12px; /*Caption size*/
	color:black; /*Caption color*/
	font-family:Helvetica, Arial, sans-serif; /*Caption font*/
}

.gallery a.image:hover span img {
	margin:0;
	border: 0; /*Border around image mat*/
	padding:0; /*Image mat size*/
	background-color:white; /*Image mat color*/
}

