@charset "utf-8";
/*
	Site Name: 
	Description: initial setting
	Version: 
	Author: 
*/

/*
===== 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 ===========================
*/

body {
	text-align:center;/* box centering */
	font: normal 12px/150% 'メイリオ','Meiryo','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Osaka','ＭＳ Ｐゴシック',sans-serif;
	margin: 0px;
	padding: 0px;
	color:#333333;
	background-image:url(../img/top/whole_bg.jpg);
	background-repeat:repeat-x;
}

/* general params
--------------------*/

li { list-style: none; } /*link do not want a dot */
img {
	border: none;/* img do not want a border */
}

/* acronyms and abbreviations styles 
-------------------------------------*/

a:link{
	color: #006699;
	text-decoration:underline;
}
a:visited{
	color: #664466;
	text-decoration:none;
}
a:hover{
	color: #664466;
	text-decoration:none;
}
a:active{
	color: #FF6666;
	text-decoration:none;
}

