﻿@charset "utf-8";

/* -----------------------------------------------
モジュールファイル

Creator    : sue
LastUpdate : 08/04/02
----------------------------------------------- */

/* ===============================================
モジュール用のファイルです。
機能単位、交換可能な構成部品を記述します。
=============================================== */

/* ===============================================
【基本構成】

1.clearfix
2.要素を左右中央寄せ(ボタン以外でも勿論可)
=============================================== */


/* -----------------------------------------------
1.clearfix

==================================================
floatの設定を終了させるためのモジュール
floatさせた要素の親要素に設定する
==================================================
------------------------------------------------ */

.clr {
	zoom:1;/*for IE 5.5-7*/
	display: inline-table;
}

.clr:after {/*for modern browser*/
	content:".";
	display: block;
	height:0px;
	clear:both;
	visibility:hidden;
}

* html .clr {
	height: 1%;
	display:inline-table;
	/*\*/display:block;/**/
}

/* Hides from IE-mac \*/
* html .clr {
	height: 1%;
}

.clr {
	display: block;
}
/* End hide from IE-mac */

/* ------------------------------------------------
2.要素を左右中央寄せ(ボタン以外でも勿論可)
------------------------------------------------ */

/*
.imgR {
	float: right;
	margin: 0 0 10px 10px;
}

.imgL {
	float: left;
	margin: 0 0 10px 10px;
}

.btn {
	text-align: center;
}
*/