/*
	I basically took bits and pieces and ideas from three sources 
	to create this sticky footer:
	http://ryanfait.com/resources/footer-stick-to-bottom-of-page/
	http://www.cssstickyfooter.com/
	http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page
*/


html, body {
	height: 100%;
}


body:before {
	height: 100%;
	width: 0;
	float: left;
	margin-top: -32767px;
	content: "";
}


#container {
	position: relative;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}


#contents {
	overflow: auto;
	padding-bottom: .77in;
}


#footer {
	position: relative;
	width: 100%;
	height: .52in;
	bottom: 0;
	margin: -.52in 0 0 0;
	clear: both;
	background-color: #808080;
	text-align: center;
}


#footerContent {
	position: relative;
	margin: 0 auto;
	width: 9in;
	text-align: left;
	font-size: .8em;
	line-height: 1.2em;
}


#footerContent table {
	width: 100%;
}


#footerContent .disclaimer {
}

#footerContent .copyright {
}

#footerContent .author {
	text-align: right;
}






