html, body {
	height: 100%;
	margin: 0px;
}
div.container {
	width: 99%;
	min-height: 99%;
	padding: 2px;
	border: thin solid yellow;
}
div.index {
	position: absolute;
	width: 59%;
	height: 99%;
	border: thin solid red;
	overflow: auto;
}
div.content {
	position: absolute;
	left: 60%;
	width: 39%;
	height: 99%;
	border: thin solid red;
	overflow-x: hidden;
	overflow-y: auto;
}