body {
	font-family: sans-serif;

}

.header {
	display: flex;
	flex-direction: row;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	padding: 2px;
	background-color: rgba(150,200,255,0.7);
	box-shadow: 0px 0px 4px;
}
.header .label {
	flex: 0.2;
	padding: 4px;
}
.header .navlinks {
	flex: 0.6;
}
.header a {
	display: inline-block;
	padding: 3px 12px;
	background-color: #ffffff;
	border: 1px solid #000000;
}
.header .settings {
	display: flex;
	flex: 0.2;
	justify-content: right;
}
.header .settings .account {
	padding: 3px;
	border: 1px solid #000000;
	background-color: #ffffff;
	cursor: pointer;
	width: 15em;
}
.popout-selector .popout {
	display: none;
	cursor: default;
}
.popout-selector:hover .popout {
	display: block;
	position: absolute;
	background-color: #ffffff;
	width: 15em;
	padding: 3px;
	margin: -4px;
	margin-top: 2px;
	border: 1px solid #000000;
	border-top: none;
}


.content {
	margin: 80px 60px;
	border: 1px solid #000000;
	padding: 10px;
}

.authform {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.authform form {
	border: 1px solid #000000;
	padding: 4px;
}
.authform form input {
	display: block;
}

input, button {
	border: 2px solid #000000;
	padding: 2px 4px;
	margin: 2px;
	background-color: #ffffff;
	color: #000000;
}
form .fpb {
	font-size: 0.6em;
}

.authform input[type='text'], .authform input[type='password'] {
	min-width: 15em;
}

form input[type='submit'] {
	display: inline-block;
}
form input[type='text'], form input[type='password'] {
	width: 15em;
}

/* Common notice boxes */

.error {
	border: 2px solid #ff0000;
	padding: 2px;
	background-color: rgba(255,0,0,0.3);
	color: #000000;
}

.authform .error {
	max-width: 100%;
}

/* Re-useable effects */

.inset {
	box-shadow: inset 2px 2px 0px #000000;
}

.outset {
	box-shadow: 2px 2px 0px #000000;
}

table td, table th {
	padding: 6px;
	background-color: rgba(0,0,0,0.05);
}

table th {
	background-color: rgba(0,0,0,0.1);
}
table {
	border: 1px solid #000000;
}
