﻿/* funky styles to get images horizontal and vertical align in a div */
.imgtile
{
	background-color: #cccccc;
	display: inline-table;
	height: 144px; 
	width: 144px;
	#position: relative; 
	overflow: hidden;
}
.imgtile>div
{
	#position: absolute; 
	#top: 50%;
	#left: 50%;
	display: table-cell; 
	vertical-align: middle;
	text-align: center;
	width: 100%;
}
.imgtile>div>div
{
	#position: relative; 
	#top: -50%;
	#left: -50%;
	/*
	margin-left: auto; 
	margin-right: auto;
	*/
}
