@charset "UTF-8";


/* prefix clear */

	* {margin: 0; padding: 0;}
	ul, ol, dl {list-style-type: none;}
	img, a img {border: 0;}

/* body */
	body{background:#ededed; color:#444;font-size:12px;}
	
	
/* txt */

	.txt10{font-size:10px;}
	.txt11{font-size:11px;}
	.ctr{text-align:center;}
	.left{text-align:left;}
	.right{text-align:right;}
	.strike{text-decoration:line-through;}
	
	
/* clearfix */

	/*floatの回り込み解除*/
	.clearfix:after {
		content: ".";  /* 新しい要素を作る */
		display: block;  /* ブロックレベル要素に */
		clear: both;
		height: 0;
		line-height:0; 
		visibility: hidden;
	}

	.clearfix {
		min-height: 1px;
		clear:both;
	}
	
	* html .clearfix {
		height: 1px;
		/*¥*//*/
		height: auto;
		overflow: hidden;
		/**/
	}	