@charset "UTF-8";

/*	HEADER/FOOTER //////////////////////////////////////////
	
	#footerと#footer_spaceのheightに同じ値を設定する
	#footer_spaceのmargin-topに(height * -1)値を設定する
*/

* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
}
* html #container {
	height: 100%;
}
#container {
	clear: both;
	min-height: 100%;
}
#header {
	clear: both;
	height: 2em;
}
#content {
	clear: both;
}
#footer-space {
/*	
	#containerのpadding-bottomにて同じ効果を実装可能だが
	明示的にclear: bothするため#footer-spaceの使用を推奨。
*/	
	clear: both;
	height: 2em;
}
#footer {
	clear: both;
	height: 2em;
	margin-top: -2em;
}
