@charset "utf-8";

/* ===================================================================
CSS Information

File name            : default.css
Author               : funcution
Information          : 初期化CSS

-------------------------------------------------------------------
Contents

	1:  all reset 
	2:  link settimg

=================================================================== */


/* ===== 1:  all reset =========================== */

*	{
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	color: #333;
	background: #FFF;
	font-size: 72%;
	line-height:  1.4;
}

* html body {
	font-size: 82%;
}

h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	margin: 0;
	padding: 0;
	line-height: 1.4;
	display: block;
	font-weight: normal;
}

img {
	border: none;
	vertical-align: text-bottom;
}

li {
	list-style: none;
}

p {
	line-height: 1.5em;
}

address,caption,em,strong,th {
	font-style: normal;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 72%;
	empty-cells: show;
}

* html table {
	font-size: 82%;
}

caption,th {
	text-align: left;
}


object,embed {
	vertical-align: top;
}


/* ===== 2:  link setting =========================== */

a	{
	color: #39C;
}

a: link{
	text-decoration: underline;
}
a: hover{
	text-decoration: none;
	color: #39C;
}



