/* css for ISIJ Light Elements Research Group */
/* fonts */
body {
	background-color: white;
	font-family: 'Helvetica', 'Arial', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
	}
pre {
	font-family: 'Monaco', 'Osaka-Mono', monospace;
	}
.mono {
	font-family: 'Monaco', 'Osaka-Mono', monospace;
	}
/* Nesting numberred lists */
ol {
	counter-reset: section;
}
li {
	list-style: none;
}
ol>li:before {
	content : counters(section, '-') '. ';
	counter-increment : section;
}
/* Unnumberred lists */
/* ul { list-style-type: disc; } */
/* li li { list-style-type: circle; } */
