
/* #####################################################

	nd_default.css

	1.element reset
	2.basic structure
	3.common class

##################################################### */

 
/* =====================================

	1.element reset

===================================== */

* {
	margin: 0;
	padding: 0;
	list-style: none;
}

body {
	margin:0 auto;
	text-align: center;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, span {
	color:#333333;
}

table {
	border: 0;
}

div#nd_localnavi ul li,
ul#nd_globalnavi li,
ul#nd_topicpath li {
	list-style: none;
}

img {
	border: 0;
	vertical-align: base;
}

hr {
	visibility: hidden;
}

a:link {
	color: #336699;
	text-decoration: underline;
}

a:visited {
	color:#528BC5;
	text-decoration: none;
}

a:hover {
	color:#528BC5;
	text-decoration: none;
}

a:active {
	color:#528BC5;
	text-decoration: none;
}

.clear {
	clear: both;
}

 
 
/* =====================================

	2.basic structure

===================================== */

#nd_wrapper {
	margin: 0 auto;
	width: 960px;
	background: #ffffff;
	text-align: left;
}

 
/* =====================================

	3.common class

===================================== */

/* clearfix
--------------------------------- */
.clearfix {
	/zoom: 1;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

