* {
	box-sizing: border-box;
}

body {
	font-family: arial, helvetica;
	border: 0;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

input:not([type="radio"]):not([type="checkbox"]) {
	width: 100%;
	height: 30px;
}

select {
	width: 100%;
	height: 30px;
}

button {
	position: relative;
	height: 24px;
	min-width: 50px;
	font-size: 12px;
	cursor: pointer;
}

/* help */

.noselect {
	-webkit-user-select: none;
	/* Chrome, Safari, Opera */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Standard syntax */
}

.flexGrow {
	flex-grow: 1;
}


.album {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 30px;
	padding: 5px;
	border-bottom: 1px solid #ccc;
	white-space: nowrap;
	cursor: pointer;
}

.albumSelected {
	background-color: #eee;
}

.album:hover {
	background-color: #f0f0f0;
}

.albumBar {
	background-color: #eee;
	border-top: 1px solid gray;
}

.UIAlbumLine {
	display: flex;
	gap: 20px;
	height: 30px;
	background-color: #eee;
	font-size: 1.2em;
	padding: 5px;
	margin: 5px;
}


.UIThumbs {
	display: flex;
	align-content: flex-start;
	flex-wrap: wrap;
}



.UIThumb {
	width: 206px;
	height: 206px;
	padding: 2px;
	margin: 5px;
	border: 1px solid #ddd;
	cursor: pointer;
	background-color: #fafafa;
}

.UIThumb:hover {
	border: 1px solid #aaa;
	box-shadow: 0 0 10px #666a;
}

.UIThumbImg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.UIImage {
	overflow: hidden;
}

.UIImageDim {
	position: absolute;
	inset: 0;
	background-color: #fff8;
	opacity: 0;
	transition: opacity 0.1s ease-out;
}

.UIImageImg {
	width: 100%;
	height: 100%;
	padding-bottom: 30px;
	object-fit: contain;
}

.UIImageComment {
	position: absolute;
	bottom: 0;
	height: 26px;
	left: 0;
	right: 0;
	padding: 5px 100px 5px 10px;
	background-color: #eee;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.UIImageId {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 5px 10px;
	width: auto;
	color: #444;
}