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


body {
text-align:center;/* box centering */
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size:75%;
margin: 0px;
padding: 0px;
background-color:#FFFFFF;
color:#333333;
text-align: center;
}


/* 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.3;/* base line height */
display: block;
margin: 0px;
text-align: left;
}
table {margin : 0;empty-cells: show;}
hr,.areaAnchor,.anchor { display : none; }
img {
border: none;/* img do not want a border */
vertical-align: bottom;
}
li { list-style: none; }/* link do not want a dot */


/* acronyms and abbreviations styles
-------------------------------------*/
acronym,abbr{cursor:help;}


/*
===== 3: link setting ===========================
*/
a:link{
	color: #666666;
text-decoration: none;
	background:inherit;
}
a:visited{
	color: #666666;
text-decoration: none;
	background:inherit;
}
a:hover{
	color: #0406FF;
	text-decoration: underline;
	background: inherit;
}
a:active{
	color: #0406FF;
	text-decoration: underline;
	background: inherit;
}
