html, body{
	margin:0;
	padding:0;
	font-family:ariel;
}

li{
	margin-bottom:15px;
}

.bigButton{
 width:100px;
 height:50px;
 background:rgb(150,50,0);
 color:white;
 font-size:100%;
 border-style:none;
}

input{
	height:20px;
	font-size:80%;
}

#title{
	font-size:150%;
	
	color:rgb(0,150,200);
	color:black;
}

#entry{
	background:rgb(200,220,230)
}

#container{
	font-size:120%;
	min-height:300px;
	box-sizing:border-box;
	width:98vw;
	border-left-style:solid;
	border-width:20px;
	border-bottom-style:solid;
	border-bottom-width:5px;
	border-color:rgb(0,150,200);
}


#NPCapp{
	width:98vw;
	background:rgb(200,200,200);
	border-style:solid;
	border-color:black;
	border-width:2px;
}

#bottomText{
	height:150px;
	width:350px;
	resize:none;
}

#editNumber{
	width:40px;
}

.block{
	display:inline-block;
	vertical-align:top;
	height:300px;
	padding:20px;
	box-sizing:border-box;
	width:49%;
	min-width:500px;
	line-height:30px;
}

.sideBlock{
	position:fixed;
	transition: all 1s;
	
	vertical-align:top;
	height:300px;
	padding-left:40px;
	box-sizing:border-box;
	width:450px;
	line-height:30px;
	background:rgba(220,190,150,.95);
	
	border-style:solid;
	border-width:5px;
	border-color:rgb(150,50,0);
	
	color:black;
	font-size:120%;
	z-index:500;
}

#entryTab{
	position:fixed;
	top:220px;
	left:-450px;
	height:400px;
}

#settingTab{
	position:fixed;
	top:20px;
	left:-450px;
	z-index:200;
	height:600px;
}

#editTab{
	position:fixed;
	top:420px;
	height:400px;
	left:-450px;
	background:rgba(200,230,250,.95);
	z-index:800;
}

#entryTitle{
	
}


.titleVert{
	float:right;
	position:relative;
	text-align:center;
	top:55px;
	left:90px;
	width:150px;
	letter-spacing:5px;
	transform:rotate(90deg);
	vertical-align:top;
	background:rgba(190,50,0,.8);
	line-height: 30px;
	font-size:120%;
	color:black;
	font-weight:bold;
	color:white;
	font-family:courier new;
	z-index:5000;
}

#editTitle{
	background:rgba(0,50,100,.8);
	z-index:5000;
}

#settingTitle{
	background:rgba(130,0,0,.8);

}

#help{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background:rgba(0,0,0,.9);
	z-index:4;
}
#helpText{
	font-family:courier;
	color:white;
	position:fixed;
	padding:10px;
	top:5vh;
	left:10vw;
	width:80vw;
	height:90vh;
	overflow-y: scroll;
	font-size:120%;

}
#helpTitle{
	text-align:center;
	color:rgb(0,170,190);
	font-size:250%;
	letter-spacing:0px;
	font-weight:bold;
}
.helpSubtitle{
	color:rgb(0,160,200);
	font-size:150%;
	letter-spacing:5px;
}

#helpIcon{
	background:url(../images/help.png);
	position:fixed;
	right:5px;
	top:5px;
	width:40px;
	height:40px;
	transition: transform .5s;
	z-index:5;
}

#helpIcon:hover{
	transform:scale(1.2);
}



/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(0,130,170,.3); 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0,130,170,.5); 
}