* {
	font-family: Tahoma;
}
html {
	background: RGB(20,20,20) url(res/ui/bg.png) repeat;
}
body {
	margin: 0 20px 0 0;
	padding-bottom: 20px;
}
img {
	image-rendering: high-quality;
	overflow: hidden;
}
header {
	z-index: 1;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	overflow: hidden;
	background-color: RGB(30,30,30);
	transition: 150ms ease;
	box-shadow: 0px 4px 2px RGBA(0,0,0,0.4);
}
img.scalable {
	max-height: 100%;
	max-width: 100%;
}
img.navlogo {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.middle {
	max-width: 1000px;
	margin: 20px auto 0 auto;
}
.multiple {
	display: flex;
	flex-wrap: nowrap;
	column-gap: 0px;
	width: 100%;
}
.multiple-wrap {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	width: 100%;
}
.content {
	background: RGB(40,40,40);
	border: 1px solid RGB(60,60,60);
	border-radius: 8px;
	padding: 10px 20px;
	overflow: hidden;
	margin-left: 20px;
}
.content-vpad {
	background: RGB(40,40,40);
	border: 1px solid RGB(60,60,60);
	border-radius: 8px;
	padding: 10px 0px;
	overflow: hidden;
	margin-left: 20px;
}
.content-nopad {
	background: RGB(40,40,40);
	border: 1px solid RGB(60,60,60);
	border-radius: 8px;
	padding: 0px 0px;
	overflow: hidden;
	margin-left: 20px;
}
.content-smpad {
	background: RGB(40,40,40);
	border: 1px solid RGB(60,60,60);
	border-radius: 8px;
	padding: 4px 4px;
	margin-left: 20px;
}
canvas {
	display: block;
}
.center {
	display: flex;
	justify-content: center;
}
.file {
	display: flex;
	justify-content: left;
}
.block {
	display: flex;
}
.bblock {
	background-color: RGB(32,32,32);
	border-radius: 7px;
	padding: 0px 10px;
	margin: 12px 0px;
}
.gallery {
	display: flex;
	background-color: RGB(32,32,32);
	border-radius: 4px;
	padding: 10px;
	margin: 8px 0px;
	overflow: auto;
}
a {
	color: white;
	transition: 150ms ease;
}
a:hover {
	color: hotpink;
}
a.button-blue {
	border: 2px solid #4fbfff;
	background-color: #094f7e;
	border-radius: 4px;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	padding: 8px 32px;
	margin: 4px 2px;
	transition: 250ms ease;
}
a.button-blue:hover {
	border-color: white;
	background-color: #2279ca;
}
a.gall {
	padding-right: 8px;
	min-width: 100px;
}
img.fill {
	width: 100%;
	image-rendering: pixelated;
}
img.select {
	border-radius: 4px;
	box-shadow: 4px 4px 2px RGBA(0,0,0,0.4);
	transition: 250ms ease;
}
img.select:hover {
	transform: scale(1.02);
}
img.noselect {
	border-radius: 18px;
	box-shadow: 4px 4px 2px RGBA(0,0,0,0.4);
}
p {
	font-size: 16px;
	color: white;
}
h1 {
	font-size: 20px;
	line-height: 8px;
	font-style: italic;
	color: white;
}
ul {
	list-style: none;
	display: inline;
	flex: 1;
}
.led {
	display: block;
	width: 16px;
	aspect-ratio: 1 / 1; 
	margin: 0.2% 0.2% 0.2% 0.2%;
	background-color: #111111;
	border: 1px solid #000000;
}
.led-active {
	display: block;
	width: 16px;
	aspect-ratio: 1 / 1; 
	margin: 0.2% 0.2% 0.2% 0.2%;
	background-color: #76b600;
	border: 1px solid #000000;
}
@keyframes rollingBackground-bicycle {
    from { background-position: 0 0; }
    to   { background-position: 90px 0; }
}
.roll-bicycle {
	background-image: url('res/images/bicycle.png');
	background-size: contain;
	background-repeat: repeat-x;
    background-position: 0px 0px;
	height: 80px;
    animation: rollingBackground-bicycle 1s linear infinite;
}
@keyframes rollingBackground-circles {
    from { background-position: 160px 160px; }
    to   { background-position: 0 0; }
}
.roll-circles {
	background-image: url('res/images/circle.png');
	background-size: 40px 40px;
	background-repeat: repeat;
    background-position: 0px 0px;
	height: 100%;
	animation: rollingBackground-circles 4s linear infinite;
}