html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
button {
	border: 0;
	background-color: transparent;
}
button:focus {
	outline: 0;
}

#PageHeader {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: #e8f1d2;
	border-bottom: 2px solid #bcdaa8;
  z-index: 1000;
}
#PageBody {
	position: relative;
  width: 100%;
  padding-top: 14vw;
}

#PageBody .header {
	background-color: #e8f1d2;
}
#PageBody .header img {
	width: 100%;
}
#PageBody .content img {
	width: 100%;
}

#QuickMenu {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(232, 241, 210, 0.71);
	z-index: 900;
}
#QuickMenu .menu {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
#QuickMenu .menu img {
	width: 50vw;
	margin-bottom: 2.5vw;
}

.docu-num {
	position: absolute;
	font-size: 1vw;
	right: 2vw;
	bottom: 36vw;
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform:rotate(270deg);
	transform-origin: right bottom;
}

.navicons {
  padding: 3% !important;
}
.navicon {
  width: calc(100vw * 0.08);
  height: calc(100vw * 0.08);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
}
.navicon.prev {
  background-image: url(../images/nav/prev.png);
}
.navicon.next {
  background-image: url(../images/nav/next.png);
}
.navicon.quickmenu {
  background-image: url(../images/nav/quickmenu.png);
}
.navicon.home {
  background-image: url(../images/nav/home.png);
}
