@charset "utf-8";

/*
	* Name: clearfix.css
	* License: MIT License
	  - http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license

	* Contents:
	  - 初期設定 - Clearfix -
*/


/* Stylesheet Document */

@media all {

	/* ========================================
	   * 初期設定 - Clearfix -
	======================================== */

	/* CSS HACK: IE5.5 - IE7 */
	.clearfix {
		zoom: 1;
	}

	/* CSS HACK: Modern Browser */
	.clearfix:after {
		clear: both;
		content: ".";
		display: block;
		height: 0;
		line-height: 0; /* CSS HACK: Safari */
		font-size: 0; /* CSS HACK: Firefox3 */
		visibility: hidden;
	}

	.clear {
		display: inline-block;
	}

}