﻿html, body {height: 100%;}  /*高さ100%に指定*/
body {
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 900px;  /*中央配置するボックスの横幅*/
	min-height: 500px;  /*中央配置するボックス縦幅*/
	background-color: #000000;
	font-size: 100%;
}
#blockCentering {
	margin: -250px 0 0 -450px;  /*縦横の半分をネガティブマージンでずらす*/
	position: absolute;  /*body要素に対して絶対配置*/
	top: 50%;  /*上端を中央に*/
	left: 50%;  /*左端を中央に*/
	width: 900px;  /*横幅*/
	height: 500px;  /*縦幅*/
	background-color: #000000;
}	
	
a{		
				
				
				
  text-decoration: none;
	font-size: 100%;
}
a:hover{		
				
				
				
  text-decoration: underline;
	color: #840000;
}

.scrollbar{		
				
				
				
		width:860px; height:450px; overflow:auto;
}
