/* CSS Document */

*読み込みが遅い場合に対してサイズが小さい画像を背景に*/
body {
	background-color: #000000;
	background-image: url(background_filesizesmall.jpg);
	background-repeat: no-repeat;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
/*画像を切り取る*/
#img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0px;
	overflow: hidden;
}
/*横幅のみ100%*/
#img .image {
	width: 100%;
}
/*コンテンツ*/
#content {
	height: 300px;
	width: 600px;
	margin-top: -150px;
	margin-left: -300px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(png.png);
	border: 1px solid #000000;
	_filter:alpha(opacity=95);
}
#content h1 {
	text-align: center;
	margin: 0px;
	padding: 50px;
	font-size: 25px;
	letter-spacing: .1em;
}
#content p {
	line-height: 2em;
	margin: 0px;
	padding: 20px;
	letter-spacing: .1em;
}
