/*
* standard.css
* by gerald
*/
@-ms-viewport{
	width: extend-to-zoom;
	zoom: 1.0;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
}

/*image galleries (viewerjs)>*/
div#gallery {
	display: block;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border: 0px;
}
div#gallery div {
	border-radius: 20px;
	background-color: #C0C0C0;
	display: block;
	text-align: center;
	text-decoration: none;
	border: 1px solid #ffffff;
	width: 256px;
	height: 256px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	overflow: hidden;
	transition: .5s ease;
}
div#gallery div:hover {
	border: 1px solid #C0C0C0;
	opacity: 0.7;
}
/*<image galleries (viewerjs)*/

/*bottom menu bar>*/
div.menu {
	z-index: 1;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #ffb020;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
div.menu a {
 	border-right: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	/*border-bottom: 1px solid #ffffff;*/
	display: block;
	text-align: center;
	padding: 4px 10px;
	color: #000;
	text-decoration: none;
	font-size: large;
}
div.menu a.active {
	/*color active page item white*/
	background-color: #ffffff;
}
div.menu a:hover:not(.active) {
	/*color hovered item black*/
	background-color: #000;
	color: white;
}
div.menudummy {
	/*this menu copy is a placeholder so the page content*/
	/*can be scrolled 100% + menuheight                  */
	position: unset;
	visibility: hidden;
}

* {
	font-family: verdana;
}
