/**
  *  SPDX-FileCopyrightText: 2015-2022 Bill Ross Photoriot <phobrain@sonic.net>
  *
  *  SPDX-License-Identifier: Fair
  *
  * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
  * 
  * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
  * Original License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
  *
  * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
  */
html,
body {
	background:#909090;
	background-color:#909090;
	margin:0;
	padding:0;
	height:100%;
}
#wrapper {
	background:#909090;
	background-color:#909090;
	min-height:100%;
	padding:0;
	position:relative;
}
#header {
	background:#909090;
	background-color:#909090;
	padding:5px;
}
#content {
	padding-bottom:140px; /* Height of the footer element */
}
#footer {
	background:#909090;
	background-color:#909090;
	width:100%;
	height:140px;
	position:absolute;
	bottom:0;
	left:0;
}
 
