/**
 * 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/
 * 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 {
	margin:0;
	padding:0;
	height:100%;
}
#wrapper {
	min-height:100%;
	position:relative;
}
#header {
	background:#transparent;
	padding:0px;
}
#content {
	padding-bottom: 100px;
	font-weight: bold;
}
#footer {
	background: #333333;
	width: 100%;
	height: 28px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 12px;
	color: #FFF;
}
footer2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #FFF;
}#wrapper #footer table tr td {
	font-size: 10pt;
	color: #FFF;
}
#wrapper #header table tr td p {
	color: #FFF;
	font-family: abeatbyKai;
	font-size: 36px;
}
