/*基本レイアウト　contents, header, footer,  navi*/
#main
{
	margin-left : 10px;
	width: 950;  //これを加える！
}

#header{}

#navi{width: 160px; float: left;   
					position fixed; 
					top: 0px; //left: 80px; 
					padding-top: 20px;
					padding-left: 20px;
					padding-right: 20px;
					overflow-y: scroll;
					height: 100vh;  /* これをしないとスクロールバーが出ない */
					background: #d6ffd6;
					border-right:solid  3px #009999;
					font-size: 12pt;}

#contents{width: 700; float: right; 
				/* position fixed; top: 0px; left: 80px;*/ }

#footer{}

/* ここから navi の固定対応*/
.fixed {
	position : fixed;
	top : 0px;
	z-index : 999;
}

/* end 基本レイアウト*/

/* 各コンテンツのレイアウト*/

.chapter{
			background : #00cc99;
			font-size: 16pt;
}

.section{
			background : #ffdab9;
}

.yellow{
	background : yellow;
}

div.ch{
}

div.sec{	
}

/*装飾 */

.w-underline {
text-decoration:underline;/*下線を引く*/
text-decoration-style:wavy;/*下線を波線で表示*/
border-bottom:10px;
}

/*特殊記号*/

.fraction {
display: inline-block;
text-align: center;
vertical-align: middle;
/* font-size: smaller; */
}
.fraction > .sep {
background-color: black;
display: block;
width: 100%;
height: 1px;
}