﻿#gallery{
	margin: auto auto;
	text-align: center;
}

.block{
	height: 150px;
	width: 150px;
	display: inline-block;
}

.thumbnail{
	width: 128px;
	height: 128px;
	overflow: hidden;
	
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
	border-radius: 4px 4px 4px 4px;
	transition: all 0.2s ease-out 0s;
	padding: 5px;
}

.thumbnail:hover{
	background-color: darkolivegreen;
}

.subText{
	margin: 5px;
	color: gainsboro;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
	font-style: italic;
	line-height: 110%;
	text-align: center;
}

.text {
	text-align: center;
}