@charset "utf-8";

/*
	* Name: space.css
	* License: MIT License
	  - http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license

	* Contents:
	  - 初期設定 - Space -
	    - 01. 初期設定 - Margin -
	    - 02. 初期設定 - Padding -


/* Stylesheet Document */

@media all {

	/* ========================================
	   * 01. 初期設定 - Margin -
	======================================== */

	.nomgn {
		margin: 0 !important;
	}

	.nomgn_b {
		margin-bottom: 0 !important;
	}

	.nomgn_l {
		margin-left: 0 !important;
	}

	.nomgn_r {
		margin-right: 0 !important;
	}

	.nomgn_t {
		margin-top: 0 !important;
	}

	.mgn_b4 {
		margin-bottom: 4px !important;
	}

	.mgn_b12 {
		margin-bottom: 12px !important;
	}


	/* ========================================
	   * 02. 初期設定 - Padding -
	======================================== */

	.nopdg {
		padding: 0 !important;
	}

	.nopdg_b {
		padding-bottom: 0 !important;
	}

	.nopdg_l {
		padding-left: 0 !important;
	}

	.nopdg_r {
		padding-right: 0 !important;
	}

	.nopdg_t {
		padding-top: 0 !important;
	}

}