
/*
the following css is an attempt at using divs/spans to layout the page instead of tables, but it didn't work very well
now, it is only included if we are going to try and use that layout, which is probably never.
*/

.tbl, .tblRow, .tblCell
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
	overflow: visible;
	margin: 0px;
}

.tbl, .tblRow
{
	font-size: 0px;
	padding: 0px;
}

.tbl
{
	clear: none;
	width: auto;
	display: table;
}

.tblRow
{
	clear: both;
	width: 100% !important;
	 display: table-row;
}

.tblCell
{
	
	display: table-cell;
	clear: none;
	
}


.centerButton			{ text-align: center!important; }
.hidden				{ display: none!important; }