dialog {
	border: none;
	text-align: left;
	font-family: "Fira Sans Condensed";
}
dialog time {
	color: red;
	font-size: 10pt;
}
dialog.motd {
	text-align: center;
}

dialog.motd > p b {
	color: black;
	text-shadow: 1px 1px 1px red;
	text-transform: uppercase;
}

dialog.motd > p {
	display: block;
	width: 50vw;
	font-size: 1.3em;
	font-weight: 300;
	font-style: italic;
	text-align: justify;
	color: red;
}
dialog.motd > div:last-child {
	display: inline-block;
	text-align: center;
}
dialog.motd > div:last-child > p {
	text-align: left;
}

dialog.motd > div:last-child > input {
	padding: 5px 20px;
	font-size: 1.25em;
}
main {
	text-align: center;
	margin: 1in;
	padding: none;
}
main > div {
	display: inline-block;
	text-align: center;
}
main > div > div {
	display: inline-block;
	text-align: right;
}
h1,h2 {
	text-shadow: 2px 2px black;
	color: yellow;
	font-style: italic;
	letter-spacing: 5px;
	text-transform: uppercase;
}

form {
	display: inline-block;
	padding: 3pt;
	margin: 0;
	text-align: right;
	border: 1px solid lightgrey;
	background: white;
}
label {
	width: auto;
	text-align: right;
	display: block;
	padding: none
	margin: 1px;
}
.small {
	font-size: 10pt;
}
input + label {
	display: inline-block;
	font-size: 10pt;
}
input:not([type=checkbox]):not([type=submit]):not([type=button]):not([type=range]):not([type=number]) {
	text-align: center;
	border: none;
	background: linear-gradient(to right, lightgrey,whitesmoke);
	border-left: 3px double black;
	padding: 3px;
	box-shadow: 2px 2px 2px lightgrey;
}
input[type=button],input[type=submit] {
	background: white;
	border: 1px solid lightgrey;
	border-radius: 3px;
	box-shadow: 1px 1px 2px lightgrey;
	font-family: "Fira Sans Condensed";
	font-weight: 300;
}
input {
	margin: 4px;
}
input:disabled {
	color: grey;
}
input[type=checkbox] {
	display: inline-block;
	height: 12px;
	width: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: 1px solid lightgrey;
	border-radius: 4px;
	box-shadow: 1px 1px 2px lightgrey;
	outline: none;
	transition-duration: 0.3s;
	background: white;
	cursor: pointer;
	vertical-align: middle;
}
input[type=checkbox]:checked:not(.infoOnly) {
	border-color: #bb0;
	background: yellow;
}
input[type=checkbox]:checked:disabled {
	background: lightgrey;
}

main form {
	border: none;
}

div main {
	display: inline-block;
}

.infoOnly {
	pointer-events: none;
}
.infoOnly:checked {
	background: #0b0;
	border-color: green;
}

.white {
	background: white;
}
.message {
    white-space: break-spaces;
    margin: 5px;
    text-align: right;
}
.success {
    text-transform: uppercase;
	color: green;
}
.failure {
    text-transform: uppercase;
	color: red;
}
.hide { display: none; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }

ol {
	text-align: left;
}
li {
	margin-bottom: 6pt;
}
a {
	font-style: italic;
}
i {
	font-weight: 400;
}
::marker {
	font-weight: bold;
	color: #b33;
}
.uc { text-transform: uppercase; }
.lc { text-transform: lowercase; }
.cap { text-transform: capitalize; }
