/*
 * Menu
 */

.menu
{
	height: 100px;
	background: #eee;
	border-bottom: 1px solid #ccc;
}

.menu>.table
{
	height: 100%;
	width: 900px;
	margin: auto;
	display: table;
	table-layout: fixed;
}

.menu>.table>.cell
{
	display: table-cell;
	vertical-align: bottom;
	text-align: left;
	padding: 10px;
}

.menu>.table>.cell>.item-table
{
	display: table;
}

.menu>.table>.cell>.item-table>.item-cell
{
	display: table-cell;
	padding: 0 20px;
}

.menu>.table>.cell>.item-table>.item-cell>a
{
	color: #555;
}

.menu>.table>.cell>.item-table>.item-cell>a:hover
{
	text-decoration: none;
	color: #94bd5e;
}

.menu>.table>.cell>.item-table>.item-cell>.selected
{
	font-weight: bold;
}

.menu>.table>.cell>.item-table>.item-cell>.selected:hover
{
	color: #555;
}

.menu>.table>.logo-cell
{
	width: 100px;
	text-align: right;
}

.menu>.table>.logo-cell>.image
{
	display: inline-block;
	width: 80px;
	height: 80px;
	background-size: 80px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url('../img/logo.png');
}


/*
 * Footer
 */

.footer
{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 70px;
	background: #eee;
	border-top: 1px solid #ccc;
}

.footer>.table
{
	display: table;
	height: 100%;
	width: 100%;
	table-layout: fixed;
}

.footer>.table>.cell
{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #888;
	font-size: 10pt;
}

