/* gluing footer to bottom http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page */

/* padding and margins are Top; Right; Bottom; Left; */
/* Complimentary colors to #2699049
*/
html, body 
	{
	width: 100%;
	margin:0;
	padding:0;
	height:100%;
	background: #FFFFFF;
	}

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

#Header
	{
	background-color: #009933;
	background-image: url('/functions/topgradient.php');
	background-repeat: repeat-x;
	color: #FFFFFF; 
	height: 25px;
	width: 100%; 
	}

#Header-logo
	{
float: left;
	}
	a.header-logo 
		{
		text-decoration: none;
		font-size: large;
		color: white;
		font-weight: bolder;
		}
#Header-nav
	{
	position: relative;
	float: right;
	margin-right: 50px; 
	}
	a.header-nav {
		text-decoration: none;
		font-weight: bolder;
		color: white;
		margin-left: 10px;
		}


#MainContainer 
	{
	padding:10px;
	padding-bottom:35px;   /* Height of the footer */
	margin: auto;
	background: white;
	height: 100%;
	position: relative;
	width: 80%;
	}

#Footer 
{	
	/* footer attach to bottom or below. 
	http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page 
	or http://alistapart.com/articles/footers may be better */
	/* rest of css */
	background-color: #009933;
	background-image: url('/functions/bottomgradient.php');
	background-repeat: repeat-x;
	background-position: top;
	color: #FFFFFF; 

	height: 25px;
	clear: both; 
	text-align: center;
	font-size: .8em;
	margin: 0;
	position:absolute;
   bottom:0;
   width:100%;
}

#BlogFooter 
{	
	/* footer attach to bottom or below. 
	http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page 
	or http://alistapart.com/articles/footers may be better */
	/* rest of css */
	background-color: #009933;
	background-image: url('http://www.edamamebeans.com/functions/bottomgradient.php');
	background-repeat: repeat-x;
	background-position: top;
	color: #FFFFFF; 

	height: 25px;
	clear: both; 
	text-align: center;
	font-size: .8em;
	margin: 0;
	position:absolute;
	left: 0px;
   bottom:0;
   width:100%;
}
/****** HACKS ********/ 