@charset "UTF-8";

/*
===== CONTENTS ==============================
	1: body and base setting
		:general params
		:form
	2: link setting
	3: Browser clear
=============================================
*/

/*
===== 1: body and base setting =====
*/
html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	text-align: center;/* box centering */
	font-size: 100%;
	color: #333;
	margin: 0 auto;
	padding: 0;
	background: #0099ff url(/lib/common/images/bodybg.gif) repeat-x left top;
}

/* 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;
	line-height: 1.6;
	font-size: 100%;
	text-align: left;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 100%;
}
img {
	border: none;
}
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;
}

/* form */
button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/*
===== 3:link setting =====
*/
/* text-decoration: none;color: #; */
a:link {color: #004a8f;}
a:visited {}
a:hover {}
a:active {}
a:focus {}
a:active,a:focus {
	outline: none;
}

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