@font-face {
	font-family: gadugi;
	src: url("gadugi.ttf");
}
html {
	font-family: gadugi, Arial, Sans;
	font-size: 12pt;
	font-weight: 600;
}
body {
	padding-bottom: 15px;
}
h1 {
	text-shadow: 2px 2px 5px #aaa;
}
a {
	color: #000;
	text-decoration: none;
}
textarea {
	border-radius: 5px;
}
.bordertop {
	border-top: 1px solid #000;
}
/* menu */
.menu {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.menu > div {
	padding: 5px;
	margin: 0 3px;
}
.menu > div a {
	border-top: 3px solid #8a694d;
}
.menu > div a:hover {
	border-top: 3px solid #ee7004;
	color: #ee7004;
}
.menu .active a {
	border-top: 3px solid #ee7004;
}
.menu .logout a {
	border: none;
}
.menu .logout a:hover {
	border: none;
}
.menu img {
	width: 20px;
}
/* search */
.search {
	position: fixed;
	display: flex;
	flex-direction: column;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
	border-radius: 0 0 0 10px;
	box-shadow: -2px 2px 3px #999;
	overflow: hidden;
	background-color: #fff;
	z-index: 10;
	transition: width 0.5s, height 0.8s;
}
.search .searchbutton {
	padding: 2.5px;
}
.search .searchbutton img {
	width: 25px;
}
.search .searchfield {
	padding: 5px;
}
.search .searchfield input {
	width: 100%;
}
.search .searchresults {
	padding: 5px;
	overflow: auto;
}
.search .searchrow {
	display: flex;
	flex-direction: column;
	border: 1px solid #999;
	border-radius: 5px;
	margin-bottom: 3px;
}
/*.search .searchrow > div {
	display: flex;
}*/
.search .searchrow .title {
	background-color: rgba(227,143,69,1);
}
.search .searchrow .description {
	background-color: #e6d198;
	min-height: 15px;
}
.search .highlight {
	background-color: #fcff6f;
}
@media screen and (max-width: 600px) {
	.search .searchrow {
		flex-wrap: wrap;
	}
}
/* message box */
.msg {
	width: 100%;
	border: 1px solid #000;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(238,112,4,0.8) 0%, rgba(230,187,128,0.8) 100%);
	margin: 10px 0;
	padding: 5px;
}
/* form */
.form, .comments {
	padding: 5px;
	border: 1px solid #000;
	border-radius: 10px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.form > div {
	display: flex;
	flex-direction: column;
	border: 1px solid #000;
	border-radius: 8px;
	margin: 5px;
	padding: 8px;
	min-width: 180px;
	background: linear-gradient(180deg, rgba(235,213,156,1) 0%, rgba(91,69,26,1) 100%, rgba(121,58,9,1) 100%); 
}
.form label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	width: 100%;
	flex-wrap: wrap;
}
.form label img, .form .lang img, .form .options img {
	width: 20px;
	margin: 2px;
	cursor: pointer;
}
.form .lang {
	display: flex;
	flex-direction: column;
}
.form .lang > div {
	display: flex;
}
.form .lang > div {
	display: flex;
	align-items: center;
}
.form .lang > div > div {
	display: flex;
	margin-right: 5px;
	align-items: center;
}
.options {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 2px solid rgba(227,143,69,1);
	margin: 10px 0;
}
.options div {
	margin-right: 15px;
	padding: 5px;
}
.form input[type=text] {
	
}
.form .input {
	width: 96%;
	height: 85px;
}
.form .description {
	width: 100%;
}
.form .description textarea {
	height: 150px;
}
.form .topics label {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 5px;
	width: 100%;
}
.form .mailinglist {
	position: absolute;
	background-color: #fff;
	border: 1px solid #000;
	display: none;
}
.form .selectedmailing {
	display: flex;
}
.form .selectedmailing img {
	width: 25px;
	cursor: pointer;
}
.form .mailinglist > div {
	padding: 3px;
	cursor: pointer;
}
.form #selectmailing {
	cursor: pointer;
}
.loginform div {
	margin: 5px;
}
.loginform input {
	width: 200px;
}
textarea:focus, input[type=text]:focus {
	background-color: #f4eee1;
}
.form .rating {
	min-width: initial;
}
.rating .myrating {
	cursor: pointer;
}
.form .groups ul {
    padding: 0;
    list-style-type: none;
	font-weight: bold;
}
/* cards */
.cards {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
@media all {
	.cards .cardframe {
		min-width: 300px;
		width: 31%;
		margin: 0 1% 1% 0;
		border: 1px solid #000;
		border-radius: 10px;
		box-shadow: 3px 3px 5px #555;
	}
	.cards .cardframe .title {
		padding: 3px;
		font-weight: bold;
		height: 50px;
		background: linear-gradient(180deg, rgba(227,143,69,1) 0%, rgba(173,80,26,1) 100%);
		border-radius: 10px 10px 0 0;
		color: #fff;
		text-shadow: 1px 1px 2px #000;
		overflow: hidden;
	}
	.cards .card {
		display: table;
		width: 100%;
	}
	.cards .row {
		display: table-row;
	}
	.cards .card .description {
		height: 100px;
		max-height: 100px;
		overflow:hidden;
	}
	.cards .card .description .content > div {
		height: 100px;
		max-height: 100px;
		overflow:hidden;
	}
	.cards .row .heading {
		display: table-cell;
		background-color: #e6d198;
		padding: 3px;
		border-top: 1px solid #000;
		font-weight: bold;
	}
	.cards .myrating img {
		margin-right: 5px;
		cursor: pointer;
	}
	.cards .bottomline {
		border-radius: 0 0 0 10px;
	}
	.cards .row .content {
		display: table-cell;
		padding: 3px;
		border-top: 1px solid #000;
	}
	.cards .row .mailing {
		display: flex;
		align-items: center;
	}
	.cards .row .mailing img {
		width: 25px;
		margin-left: 10px;
	}
	.comments {
		margin-top: 15px;
		flex-direction: column;
	}
	.comments h2 {
		font-style: italic;
		font-size: 14pt;
		padding: 5px;
		margin: 5px 0;
		border-radius: 8px;
		background: linear-gradient(180deg, rgba(249,191,41,1) 0%, rgba(189,142,52,1) 85%, rgba(121,58,9,0.01) 100%);
	}
	.comments h3 {
		font-size: 12pt;
		margin: 5px 0;
	}
	.comments .commentframe {
		display: flex;
		flex-direction: column;
		border-top: 3px solid #aaa;
		margin: 5px 0;
		background: linear-gradient(180deg, rgba(235,213,156,1) 0%, rgba(91,69,26,1) 100%, rgba(121,58,9,1) 100%);
		padding: 8px;
		border-radius: 0 0 5px 5px;
	}
	.comments textarea {
		height: 75px;
	}
	.submit {
		width: 100%;
		text-align: center;
		text-shadow: 0 0 2px #fff;
		font-weight: bolder;
		font-size: 120%;
		cursor: pointer;
		background: linear-gradient(180deg, rgba(69,177,26,0.28053219578847166) 0%, rgba(26,125,35,1) 100%)!important;
	}
	.fullwidth {
		width: 100%;
	}
}
@media screen and (max-width: 800px) {
	.cards .cardframe {
		min-width: 48%;
		margin: 0 1% 1% 0;
	}
}
@media screen and (max-width: 600px) {
	.cards .cardframe {
		min-width: 96%;
		margin: 7px;
	}
}
@media screen and (max-width: 480px) {
	.cards .cardframe {
		min-width: 96%;
		margin: 7px;
	}
}
@media screen and (max-width: 240px) {
	.cards .cardframe {
		min-width: 225px;
		margin: 7px 0;
	}
}
/* lists */
.list {
	padding: 7px;
	border: 1px solid #000;
	border-radius: 10px;
}
.list .table {
	display: table;
	width: 100%;
}
.list .row {
	display: table-row;
	height: 24pt;
}
.list .row:hover {
	background: linear-gradient(180deg, rgba(226,206,145,1) 0%, rgba(196,176,137,0.14887962020745793) 100%, rgba(121,58,9,1) 100%);
}
.list .listoptions {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background: linear-gradient(180deg, rgba(227,143,69,1) 0%, rgba(173,80,26,1) 100%);
	border: 1px solid #000;
	border-radius: 10px;
	margin-bottom: 8px;
}
.list .listoptions img, .options img {
	width: 35px;
	position: relative;
	display: inline-block;
}
.list .optionleft {
	min-width: 200px;
	padding: 10px;
}
.list .optionright {
	width: 35px;
	padding: 5px;
}
.list .cell {
	display: table-cell;
	border-bottom: 1px solid #000;
	padding: 5px;
}
.list .header {
	background: linear-gradient(180deg, rgba(227,143,69,1) 0%, rgba(173,80,26,1) 100%);
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	text-align: center;
}
.list .link a:hover {
	color: blue;
}
.list .rating > div {
	display: flex;
	padding: 3px 0;
}
.list .rating img {
	/*width: 10px;*/
}
.ratinghint {
	display: none;
	position: absolute;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px;
	background-color: #e1f9a3;
}
.back {
	padding: 10px;
}
.back img {
	width: 35px;
}
.version {
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 2px;
	font-size: 8pt;
	margin-top: 15px;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 5px;
}
/* topics */
.topicsoptions {
	display: none;
	position: fixed;
	top: 10px;
	right: 10px;
	left: 10px;
	bottom: 10px;
	overflow: auto;
	background: linear-gradient(180deg, rgba(230,209,152,1) 0%, rgba(215,189,134,1) 100%);
	border: 3px solid #000;
	padding: 5px;
	border-radius: 10px;
	z-index: 15;
}
.topicsoptions .title {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #444;
	margin-bottom: 5px;
}
.topicsoptions .title img {
	width: 35px;
	height: 35px;
}
.topicsoptions .topicslist {
	display: flex;
	flex-flow: row wrap;
	align-content: flex-start;
}
.topicsoptions .topicslist div {
	flex: 1 0 25%;
	padding: 1px 3px;
}
@media screen and (max-width: 800px) {
	flex: 1 0 33%;
}
@media screen and (max-width: 600px) {
	flex: 1 0 50%;
}
@media screen and (max-width: 480px) {
	flex: 1 0 100%;
}
@media screen and (max-width: 240px) {
	flex: 1 0 100%;
}