html,body{
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,p{
	margin: 0;
}
p{
	padding-top: 16px;
	padding-bottom: 16px;
	padding-left: 5px;
	padding-right: 5px;
}
div#topbar{
	width: 100%;
	height: 35px;
	border-color: black;
	border-style: solid;
	border-width: 1px;
	background-color: black;
	color: white;
	overflow: hidden;
}
div#topbar div{
	height: 100%;
}
div#topbar a{
	color: white;
	text-decoration: none;
	text-transform: capitalize;
	text-align: center;
	vertical-align: middle;
	height: 100%;
	display: inline-block;
	border-color: white;
	border-style: solid;
	border-width: 0;
	border-right-width: 1px;
	border-left-width: 1px;
	margin-left: -1px;
	float: left;
	font-size: 20px;
	line-height: 35px;
	padding-left: 2px;
	padding-right: 2px;
}
div#topbar a:hover{
	background-color: white;
	color: black;
	border-bottom-color: black;
}
div#topbar a:hover + a{
	border-left-color: black;
}
div.topbar-right{
	float: right;
}
div.topbar-left{
	float: left;
}
a.topbar-home{
	width: 35px;
	background-color: darkred;
}
a.topbar-home:hover{
	background-color: gray !important;
}
div#content{
	width: 100%;
	height: calc(100% - 35px);
	overflow: auto;
}
div#loading{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: gray;
	background-color: rgba(0,0,0,0.5);
	background-image: url('../img/load.gif');
	background-repeat: no-repeat;
	background-position: center;
}