div#all-container {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: "Trebuchet MS", sans-serif;
}

@keyframes appear
{
	0% {opacity: 0;}
	100% {opacity: 1;}
}

table#gallery
{
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	font-size: x-small;
	border-spacing: 10px 25px;
	empty-cells: hide;
	margin: 0 auto;
}

header#gallery-header span#span-info
{
	font-family: Trebuchet MS, sans-serif;
	text-align: center;
	display: block;
}

img.gal-img
{
	border: none;
	max-height: 124px;
	max-width: 150px;
	padding: 0;
}

div.gal-img-bkg
{
	height: 150px;
	width: 150px;
	display: inline-block;
	margin-top: 5px;
	background-color: black;
	background-position: center center;
	background-size: cover;
}

div.img-container
{
	-webkit-filter: sepia(100%);
	filter: sepia(100%);
	width: 160px;
	height: 188px;
	border: 1px solid #aaaaaa;
	padding: 5px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
	-webkit-transition: 0.25s linear;
	-moz-transition: 0.25s linear;
	transition: 0.25s linear;
	-webkit-animation: appear 2s ease;
	-moz-animation: appear 2s ease;
	animation: appear 2s ease;
}

div.img-container:hover
{
	-webkit-filter: sepia(0%);
	filter: sepia(0%);
	-webkit-box-shadow: 0 0 5px 4px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 5px 4px rgba(0,0,0,0.4);
	box-shadow: 0 0 5px 4px rgba(0,0,0,0.4);
}

div.img-container a
{
	display: block;
	text-decoration: none;
	color: black;
}

p.gal-img-desc
{
	margin: 0;
}

footer#gallery-footer
{
	font-size: xx-small;
	text-align: center;
	padding: 10px;
}