﻿@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;
	zoom:1;
}

/*
===== 2: body and base setting ===========================
*/
html {
	height:100%;
	overflow-y:scroll;
}

body {
	text-align:center;/* box centering */
	font-size: 13px; /* modern browser */
  *font-size: small; /* IE 7 */
  *font: x-small; /* IE 6 */
	line-height:1.6;
	font-family:
 Verdana, Arial, Meiryo, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
	margin: 0;
	padding: 0;
	background: #FFF;
	color:#727171;
	height:100%;
	letter-spacing:0.1em;
}


/* 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:#888888;
	text-decoration:none;
	outline:none;
}
a:link{
	color:#888888;
	text-decoration:none;
	outline:none;
}
a:visited{
	color:#888888;
	text-decoration:none;
	outline:none;
}
a:hover{
	color:#888888;
	text-decoration:underline;
	outline:none;
}
