/* CSS Document */

html, body {height: 100%;}  /*高さ100%に指定*/


body {	
	font-family:"Times New Roman", Times, serif;
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 600px;  /*中央配置するボックスの横幅*/
	min-height: 400px;  /*中央配置するボックス縦幅*/
	background-color: #000000;
}

a:link {
	color:#FFF;
	text-decoration:none;
}

a:visited {
		color:#FFF;
	text-decoration:none;
}
a:active {
		color:#FFF;
	text-decoration:none;
}
a:hover {
		color:#FFF;
	text-decoration:none;
}

.content {
	margin: -200px 0 0 -300px;  /*縦横の半分をネガティブマージンでずらす*/
	position: absolute;  /*body要素に対して絶対配置*/
	top: 50%;  /*上端を中央に*/
	left: 50%;  /*左端を中央に*/
	width: 600px;  /*横幅*/
	height: 400px;  /*縦幅*/
	background-color: #000000;
}h1 {
	text-align: center;
}
p {
	text-align: center;
	color: #FFFFFF;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}
span {
	font-size: 12px;
	font-weight: lighter;
	color: #FFFFFF;
	text-decoration: none;
}
.copyright {
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 10px;
	font-weight: lighter;
	color: #FFFFFF;
	text-align: center;
	margin: 10px;
	padding-top: 100px;
}
