/* layout.css
* 
* Deals with the major layout components. Generic type class and styles are in style.css
*/

html, body 
{
	background-color: #ffffff;
	min-height: 100%;
	height: 100%;
	margin: 0px 5px;
	padding: 0px;
	font-family: Georgia, serif;
}

* {
	box-sizing: border-box;
}

#divLogin
{
	float: right;
	text-align: right;
	margin: auto 0px;
	margin-top: 75px;
	border: 0px;
}

#page-header, #page-header div.container
{
	background-color: #d5d5d8;
	margin-top: 0px;
	margin-bottom: 0px;
}

#page-nav
{
	z-index: 10;
}

#page-nav .container
{
	margin-top: 0px;
	margin-bottom: 0px;
}

.navbar-brand
{
	padding: 7px;
}
.mainlogo
{
	width: 35px;
	height: 35px;
}

#full-site-logo img
{
	max-height: 100px;
}

#body-content
{
	margin-bottom: 40px;
	min-height: calc(100vh - 120px - 70px - 30px);
	position: relative;
}

#page-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	font-size: 0.8em;
	height: 30px;
	background-color: #f5f5f5;
	padding: 5px;
	margin: 0px;
	z-index: 1000;
}
