@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 ===========================
*/
div{
    zoom:1;/*for IE 5.5-7*/
}
div:after{/*for modern browser*/
    content:".";
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}
html{
	height: 100%;
}
body {
text-align:center;/* box centering */
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size:0.7em;
margin: 0px;
padding: 0px;
background-color: #cccc99;
color: #1A1A1A;
height: 100%;
}

/* 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.4em;/* base line height */
text-align: left;
display: block;
margin: 0px;
font-size:100%;
}
table {margin : 0;empty-cells: show; background-color: #ffffff;}
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: underline;
}
a:visited{
color: #0066CC;
text-decoration: underline;
}
a:hover{
color: #0066CC;
text-decoration:underline;
}
a:active{
color: #0066CC;
text-decoration:underline;
}