@charset "UTF-8";

/*#container {
	text-align: center;
}*/

html,body {
	height: 100%;
}

body {
	margin: 0;
  	padding: 0;
  	position: relative;
  	min-width: 960px;  /*中央配置するボックスの横幅*/
  	min-height: 600px;  /*中央配置するボックス縦幅*/
}

#content {
	margin: -300px 0 0 -480px;  /*縦横の半分をネガティブマージンでずらす*/
  	position: absolute;  /*body要素に対して絶対配置*/
  	top: 50%;  /*上端を中央に*/
  	left: 50%;  /*左端を中央に*/
  	width: 600px;  /*横幅*/
  	height: 400px;  /*縦幅*/
}

/*.image {
	display: table-cell;
	width: 960px;
	height: 600px;
	vertical-align: middle;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;

}*/