body {
	height: 100vh;
	background-color: #e0e0e0;
	font-family: helvetica,arial,sans-serif;
	font-size: 90%;
	color: #e0e0e0;
	display: grid;
	gap: 0.1em;
	grid-template-columns: 3em 2fr 3fr;
	grid-template-rows: auto 1fr;
	margin: 0px;
}

@media (max-width: 900px) {
	body {
		font-size: 85%;
		grid-template-columns: 3em 4fr 5fr;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 82%;
		grid-template-columns: 3em 1fr 1fr;
	}
}

@media (max-width: 610px) {
	body {
		grid-template-columns: 3em 1fr;
	}
	
	body.swipedLeft {
		grid-template-columns: 1fr;
	}	
}


body.oauth {
	grid-template-columns: 1fr;
}


h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.3em;
}


ul.nav {
	list-style: none;
	color: #102080;
	padding-left: 0px;
}

ul.nav > li {
	background-color: #e0e0e0;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
	height: 2.0em;
	border: solid 0.1em black;
	border-radius: 0.5em;
	padding: 0.5em;
}

ul.nav > li.active {
	background-color: #a0a0a0;
	color: #f0f080;
	font-weight: bold;
}

img.iconbut {
	width: 2.0em;
	margin: 5px;
	vertical-align: middle;
}


header {
	grid-column: 1 / 3;
	padding-left: 0.5em;
	padding-right: 0.3em;
	display: grid;
	grid-template-columns: 1fr auto;
}


aside {
	align-items: stretch;
}


nav {
	padding-left: 0.5em;
	padding-right: 0.3em;
}


div#contentheader {
	padding-left: 0.5em;
	padding-right: 0.3em;
}


body.oauth > div {
	text-align: center;
}


main {
	padding-top: 0.5em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
}

@media (max-width: 700px) {
	div#contentheader, main {
		max-width: max(300px, 55vw);
	}
}

@media (max-width: 610px) {
	div#contentheader, main {
		display: none;
		max-width: initial;
	}
}


img.stb_img {
	max-width: min(300px, 30vw);
}


.bg1 {
	background-color: #102080;
}


div#userinfo {
}


svg.iconbut {
	width: 2.0em;
	margin: 5px;
	vertical-align: middle;
}


div.newsArticle {
	background-color: #e0e0e0;
	color: #102080;
	#width: 100%;
	border: solid 0.1em black;
	border-radius: 0.4em;
	padding: 0.5em;
	margin-bottom: 0.5em;
}


a {
	color: #102080;
	text-decoration-color: #102080;
	font-style: italic;
}

a.page {
	color: #e0e0e0;
	text-decoration-color: #e0e0e0;
	font-style: italic;
}


img.avatarIcon {
	max-width: 46px;
	max-height: 46px;
}


div.articleAccountInfo {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5em;	
}


div.displayName {
	font-weight: bold;
}


span.invisible {
	font-size: 0;
	line-height: 0;
	display: inline-block;
	width: 0;
	height: 0;
	position: absolute;
}


span.ellipsis::after {
	content: "…";
}


img.articleImage {
	width: 100%;
}



svg .stroked {
	stroke: #e0e0e0;
}

svg .filled {
	fill: #e0e0e0;
}

svg.active .stroked {
	stroke: #f0f080;
}

svg.active .filled {
	fill: #f0f080;
}


.clickable {
	cursor: pointer;
}

svg#butBack {
	display: none;
}

@media (max-width: 610px) {
	svg#butBack {
		display: inline;
		cursor: pointer;
	}
}


input.loginform {
	width: 24em;
	margin: 3px;
	background-color: #e0e0e0;
	color: #102080;
}


input[type="text"].loginform.empty {
	color: #3040a0;
}


input[type=button].loginform {
	background-color: #c0c0e0;
}

input[disabled].loginform {
	color: #5070d0;
}


svg#svgUser {
	display: none;
}


