a {
	text-decoration: none
}

html,
body,
#wrapper {
	height: 100%;
}

html {
	font-family: verdana, sans-serif;
	line-height: 1.5;
}

body {
	text-align: center;
	box-sizing: border-box;
}

body * {
	box-sizing: border-box;
}

#wrapper {
	max-width: 800px;
	text-align: left;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
}

h2 {
	font-size: x-large;
	font-weight: bolder;
	margin: 10px;
}

h3 {
	font-size: large;
	margin: 10px;
}

nav {
	width: 100%;
	height: 70px;
	position: relative;
	background: #F6F6F6;
}

.drawer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0 1em;
}

.navbar_toggle {
	z-index: 9999;
}

.navbar_toggle_icon {
	position: relative;
	display: block;
	height: 2px;
	width: 30px;
	background: #5c6b80;
	-webkit-transition: ease .5s;
	transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
	top: 0;
}

.navbar_toggle_icon:nth-child(2) {
	margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
	top: 0;
}

/*OPEN navbar*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	top: -10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: ease .5s;
	transition: ease .5s;
	z-index: 1000;
	background: #F6F6F6;
}

.menu ul li {
	padding: 1.0em;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
.menu ul li a { display: block; width: 100%; color: inherit; }

/*OPEN Menu*/
.menu.open {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 719px) {
	.menu {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(246, 246, 246, 0.95);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	}
}

/** dl table **/
dl.dl_tbl {
	background: #eaf4ff;
	border: 1px solid #7777bb;
	width: 100%;
	box-sizing: border-box;
}

dl.dl_tbl dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

dl.dl_tbl dt,
dd {
	padding: 6px;
	min-height: 16px;
}

dl.dl_tbl dd {
	background: #FFF;
}

@media screen and (min-width: 720px) {
	nav {
		display: flex;
		flex-direction: row;
	}

	.navbar_toggle {
		display: none;
	}

	.menu {
		width: 100%;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.menu ul {
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
	}

	.menu ul li {
		padding: 0 1em;
		border-top: none;
		border-bottom: none;
	}

	dl.dl_tbl {
		border-top: none;
		width: 100%;
	}

	dl.dl_tbl dt {
		border-top: 1px solid #7777bb;
		clear: left;
		float: left;
		width: 26%;
	}

	dl.dl_tbl dd {
		border-left: 1px solid #7777bb;
		border-top: 1px solid #7777bb;
		margin-left: 27%;
	}

}

A:link,
A:visited,
A:active {
	text-decoration: none;
}

.menu {
	font-size: 15px;
}

.longmessage {
	line-height: 180%;
}

.indent {
	margin-left: 10px;
}

.big_title {
	background-color: #FFFFCC;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 10px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCFFCC;
	border-right-color: #CCFFCC;
	border-bottom-color: #CCFFCC;
	border-left-color: #CCFFCC;
	padding: 5px;
}


.imageblock {
	max-width: 100%;
}

.lazy-container {
	display: block;
	position: relative;
	height: 0;
	width: 100%;
}

.lazy-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
