@charset "Shift_JIS";

/*
===== CONTENTS ==============================
	1:universal reset
	2:body and base setting
		:general params
		:acronyms and abbreviations styles
	3:link setting
	4:Browser clear
=============================================
*/

/*
===== 1:universal reset =====
*/
* {
	margin:0;
	padding:0;
}

/*
===== 2:body and base setting =====
*/
body {
	text-align:center;/* box centering */
	color:#000;
	margin:0 auto;
	padding:0;
	background:#FFF;
}

body.fontL {
	font-size:140%;
}
body.fontM {
	font-size:120%;
}
body.fontS {
	font-size:100%;
}

/* general params */
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote {
	padding:0;/* margin&padding reset */
	line-height:1.6;/* base line height */
	text-align:left;
	font-size:1em;
	display:block;
	margin:0;
}
table {
	margin:0;
	border-collapse:collapse;
	border-spacing:0;
	empty-cells:show;
	line-height: 1.6;
}
hr {
	display:none;
}
img {
	border:none;/* img do not want a border */
}
li {
	list-style:none;/* link do not want a dot */
}


/*
===== 3:link setting =====
*/
a:link {/* text-decoration:none; */
	color:#000;
}
a:visited {
	color:#000;
}
a:hover {
	color:#0066ff;
}
a:active {
	color:#0066ff;
}


/*
===== 4:Browser clear =====
*/
.clearfix:after,
div:after {/*for modern browser*/
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
* html .clearfix,
* html div {
	/*_*/height:1%;/*for WinIE*/
	display:inline-table;/*for MacIE*/
}
.clear {
	clear:both;
}