@charset "UTF-8";

/*
===== CONTENTS ==============================
	1: body and base setting
		:general params
		:acronyms and abbreviations styles
	2: link setting
	3: Browser clear
=============================================
*/

/*
===== 1: body and base setting =====
*/
body {
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;/* box centering */
	font-size: small;
	color: #333333;
	background-color: #FFFFFF;
	background-position: center;
	background-repeat: repeat-y;
	line-height: 1.5em;
}

/* general params */
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-align: left;
	zoom: 1;/*for IE 5.5-7*/
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
fieldset,img {
	border: none;
}
img {
	vertical-align: bottom;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
li {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
q:before,q:after {
	content: '';
}
abbr,acronym {
	border: none;
}


/*
===== 3:link setting =====
*/
/* text-decoration: none;color: #; */
a:link {
	color: #646464;
	text-decoration:underline;
}
a:visited {
	color: #646464;
	text-decoration:underline;
}
a:hover {
	color:#CB0101;
	text-decoration:underline;
}
a:active {
	color:#CB0101;
	text-decoration:underline;
}
a:focus {
	color:#CB0101;
	text-decoration:underline;
}


/*
===== 4:Browser clear =====
*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
* html .clearfix {
	/*\*/height: 1%;/*for WinIE*/
	display: inline-table;/*for MacIE*/
}
.clear {
	clear: both;
}