﻿body {
	font-family: 'Roboto', Sans-Serif;
	max-width: 1240px;
	margin: auto;
}

h2 {
	font-family: 'Merriweather', Serif;
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	padding-bottom: 25px;
}

p {
	font-size: 14px;
	margin: 0;
	padding-bottom: 25px;
}

a {
	color: #00bfff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
 
body > div {
	padding-top: 20px;
}

table {
	box-sizing: border-box;
	width: 100%;
	border: solid 1px #ddd;
	border-collapse: collapse;
}

table > thead > tr > td {
	font-weight: bold;
	font-size: 14px;
	padding: 5px 10px;
	border: solid 1px #ddd;
}

table > tbody > tr > td {
	font-size: 14px;
	padding: 5px 10px;
	border: solid 1px #ddd;
	vertical-align: top;
}

table > tbody > tr:nth-child(odd) {
	background-color: #f8f8f8;
}

table > tbody > tr:hover {
	cursor: pointer;
	background-color: #A0dfff;
}

form > label {
	display: block;
	padding-bottom: 20px;
}

form > label > span {
	display: inline-block;
	width: 160px;
}

input[type=text], input[type=password] {
	padding: 3px 4px;
	font-family: 'Roboto', Sans-Serif;
	font-size: 14px;
	border: solid 1px #E5C690;
	width: 200px;
}

input[type=text]:focus, input[type=password]:focus {
	outline: solid 3px #AF9453;
}

input[type=submit] {
	font-family: 'Roboto', Sans-Serif;
	color: white;
	font-size: 15px;
	background-color: #702E2E;
	border: 0;
	padding: 10px 20px;
	cursor: pointer;
	margin: 0;
}

input[type=submit]:focus {
	background-color: #5c1c1c;
	outline: none;
}

input[type=submit]:active {
	background-color: #451111;
	outline: none;
}

div.login-failed {
	border: solid 1px #FFA0A0;
	background-color: #FFC0BB;
	margin-bottom: 20px;
	padding: 15px;
}