* { /* * = all elements. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small
}

/* Basically imitating the hell out of the hyperlink tag, but as a button */
.fake_hyperlink {
	background: none;
	border: none;
	text-decoration: underline;
	color: blue;
}

.fake_hyperlink:hover {
	cursor: pointer;
}

.fake_hyperlink:active {
	border-style: none;
	color: red;
	position: relative;
	left: -1px;
}

/* https://www.w3schools.com/css/css_form.asp <-- make your forms looks real nice */
/* Login button is inside the form. but that transfers me to a new page, not AJAX. */ 

.form {
	/*display: inline;*/
}

.form .notice {
	color: red;
	padding-left: 5px;
}

.form table {
	border-spacing: 0px;
}

.form table td {
	padding: 0px;
}
