@charset "utf-8";

/*********************************************************************
 *
 *  </common/css/common.css>
 *
 * ===================================================================
 *
 *  ■プロパティリスト (以下の順でプロパティを記述)
 *
 *   - display
 *   - list-style
 *   - position
 *   - float
 *   - clear
 *   - width
 *   - height
 *   - margin
 *   - padding
 *   - border
 *   - background
 *   - color
 *   - font
 *   - text-decoration
 *   - text-align
 *   - vertical-align
 *   - white-space
 *   - other text
 *   - content
 *
 * ===================================================================
 *
 *  ■使用ハック
 *
 *  01) Windows IE7・IE6対象
 *
 *      e { *propaty: value; }
 *
 *  02) Windows IE6対象
 *
 *      e { _propaty: value; }
 *
 *  03) Firefox 3対象
 *
 *      e, x:-moz-broken { propaty: value; }
 *
 *  04) Clearfix
 *
 * ===================================================================
 *
 *  ■フォントサイズ
 *
 *  ※文字サイズ [標準] を選択している場合。
 *
 *  基準値: font-size: 14px = 87.5%
 *
 *  font-size:  86% = 12px
 *  font-size: 100% = 14px
 *
 *********************************************************************/

/*  Common Element
---------------------------------------------------------- */

html { overflow-y:scroll;}

body {
	margin: 0;
	background-color: #e8e8e8;
	background-image: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

table {
	color: #222;
	font-size: 100%;
	line-height: 1.4;
}
/*
table th,
table td,
table caption {
	_font-size: 75%;
}
*/
a:link {
	color: #184464;
	font-size: inherit;
	text-decoration:underline;
}

a:visited {
	color:#0a0066;
}

a:hover {
	color: #0a50ff;
}

.hiden {
	display: none;
}

.standard {
	color: #000;
	font-size: inherit;
	line-height: 140%;
}

.mini {
	color: #000;
	font-size: 88%;
	line-height: 140%;
}

div#wrapper {
	background: url(../image/bg.gif) repeat-y 50% 0;
}

/* for Firefox 3 */
div#wrapper, x:-moz-broken {
	background: url(../image/bg.gif) repeat-y 50.1% 0;
}
/* End for Firefox 3 */


/*  Clearfix
---------------------------------------------------------- */

.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/*¥*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/**/