@font-face 
{
	font-family: 'Oxygen';
	src: url('Oxygen-Regular.ttf') format('truetype');
}
@font-face 
{
	font-family: 'Oxygen';
	font-weight: 'bold';
	src: url('Oxygen-Bold.ttf') format('truetype');
}
@font-face 
{
	font-family: 'Oxygen';
	font-weight: 'light';
	src: url('Oxygen-Light.ttf') format('truetype');
}

body 
{
	color: black; 
	font-family: 'Oxygen', sans-serif; 
	font-size: 16px;
}

h1 
{
	color: black;
	font-size: 120%; 
	font-weight: bold;
}

li 
{
	padding: 0.2em;
}

span.title 
{
	font-weight: bold;
}

span.journal 
{
	font-style: italic; 
	white-space: nowrap;
	padding-right: 0.2em;
}

.floatright
{
	float: right;
	margin-left: 1em;
}

.header
{
	text-align: center;
	color: white;
	background-color: black;
	padding: 1em;
	margin-bottom: 1em;
	font-size: 150%;
	font-weight: bold;
}

.mainpage
{
	display: flex;	
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}

.menu
{
	flex-grow: 0;
	margin-right: 1em;
	display: flex;
	gap: 0.5em;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

.sections
{
	flex-grow: 1;
}

.section
{
	
}

.section-visible
{
	display: block;
}

.section-invisible
{
	display: none;
}

.menuitem
{
	border: 2px solid black;
	border-radius: 1em;
	padding: 1em;
	font-weight: bold;
	user-select: none;
}

.menuitem-text
{
	display: inline-block;
	pointer-events: none;
}

.menuitem-selected
{
	color: white;
	background-color: black;
	cursor: default;
}

.menuitem-unselected
{
	color: black;
	background-color: white;
	cursor: pointer;
}
.menuitem-unselected:hover
{
	background-color: #F0F0F0;
}
.menuitem-unselected:active
{
	color: white;
	background-color: #404040;
	cursor: default;
}
