@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: Verdana, sans-serif;
	font-size: 0.7em;
	margin: 0px;
	padding: 0px;
	color: #5A5A5A;
	text-align: center;
	background-color: #D8D8D8;
}


/* 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 */
text-align: left;
display: block;
margin: 0px;
font-size:100%;
}
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: #0066CC;
text-decoration: none;
}
a:visited{
color: #0066CC;
text-decoration: none;
}
a:hover{
color: #0066CC;
text-decoration:underline;
}
a:active{
color: #0066CC;
text-decoration:underline;
}