﻿body { line-height: 1.5; }
h1 {
	text-align:center;
    font-size:200%;/*字の大きさ*/
    
}

h2 {
     color: blue;
     font-size: 140%;
     border-left: 0.6em solid blue;/*左端の縁の幅と色*/
     text-indent:0.6em;
     background: #d8e0e0;/*背景の色*/
}
h3 {
     color: green;
     font-size: 120%;
     border-left: 0.4em solid green;/*左端の縁の幅と色*/
     text-indent:0.6em;
     background: #e0d8e0;/*背景の色*/
     margin-left:2em;
}

h4 {
     font-size: 100%;
     border-left: 0.4em solid gray;/*左端の縁の幅と色*/
     text-indent:0.6em;
     background: #e0e0e0;/*背景の色*/
     margin-left:4em;
}

h5 {
     font-size: 100%;
     border-left: 0.4em;/*左端の縁の幅と色*/
     text-indent:0.6em;
     text-decoration: underline;
     margin-left:4em;
}
p {
	text-indent:1em;
	margin-left:4em;
	line-height: 120%;/*行間*/
}

ol,ul {margin-left:4em;}

pre { 
  /*ブロックの外のスペース*/
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 4em;
  margin-right: 1em;
  border: thin outset #d8e0d0;
  padding: 0.2em 0.2em 0.2em 1em;       /* 枠線と文字との間の距離*/

  /**/
  line-height: 120%;/*行間*/
  background: #d8e0d0;/**/
}
.program{
	background:#d8e0d0;
	font-family:'Courier New','Courier','ＭＳ ゴシック',monospace;
}
.commandprompt{
    color: white;
	background:#000000;
	width:670;
	max-height:10em;
	overflow:auto;
}
.left{
    margin-left:0em;
}
.newPage{
    page-break-before:always;
}