@charset "utf-8";
/*
===== CONTENTS ===========================================

	1: universal reset 
	2: body and base setting
		: general params
		: acronyms and abbreviations styles
	3: link setting

==========================================================
*/


/*
===== 1: universal reset =================================
*/

*{
	margin:0;
	padding:0;
}

/*
===== 2: body and base setting ===========================
*/
html {
	height:100%;
	overflow-y:scroll;
}

body {
	text-align:center;/* box centering */
	font:13px/1.8 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Osaka','ＭＳ Ｐゴシック',sans-serif;
	*font-size:small;
  *font:x-small;
	margin: 0;
	padding: 0;
	background: #FFF;
	color:#464646;
	height:100%;
}

* html div#container{
    height:100%;
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	padding: 0;
	margin: 0;
	text-align: left;
	display:block;
	font-size:100%;
	font-weight:normal;
}
table {
	margin:0;
	empty-cells:show;
	font-size:inherit;
  font:100%;
}
hr,.areaAnchor,.anchor { display : none; }
img {
	border: none;/* img do not want a border */
	vertical-align: bottom;
}
ol,ul { list-style: none; }/* link do not want a dot */

/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr{cursor:help;}

/*
===== 3: form setting ===========================
*/
option{ padding-right:10px; }
*+html option{padding-right:0;}/* for IE7&Opera */
* html option{padding-right:0;}/* for IE6 */　　　

/*
===== 4: link setting ===========================
*/
a{
	color:#005700;
	text-decoration:none;
	outline:none;
}
a:link{
	color:#005700;
	text-decoration:none;
	outline:none;
}
a:visited{
	color:#005700;
	text-decoration:none;
	outline:none;
}
a:hover{
	color:#002571;
	text-decoration:underline;
	outline:none;
}