/* CSS Document */
#divTop {
	height: 70px;
	width: calc (100% - 10px);
	margin: 10px;
	background-color:#F90;
	border: 1px solid #4CAF50;
	border-radius: 5px;
}
#divAll {
	width: 100%;
	height: 100%;
	margin: 10px;
}
#divLeft {
	float: left;
	width: 150px;
	height: calc(100vh - 120px);
	background-color:#9F6;
	border: 1px solid #4CAF50;
	border-radius: 5px;
	overflow: auto;
}
#divMain {
	display: flex;
	float: left;
	margin-left: 5px;
	width: calc(100% - 185px);
	background-color: #9F6;
	height: calc(100vh - 120px);
	border: 1px solid #4CAF50;
	border-radius: 5px;
	overflow-y: scroll;
}
#divShowPic {
	position: absolute;
	top: 10px;
	left: 25px;
	width: 98.1%;
	max-height: 98%;
	visibility: hidden;
	overflow-y: scroll;
}
#divShowStory {
	position: absolute;
	left: 50%;
	margin-left: -250px;
	width: 750px;
	height: 500px;
	background-color:#9FC;
	border:  1px solid black;
	overflow-y: scroll;
	visibility: hidden;
}
