header {
	margin: 0;
	padding: 0;
	height: 100px;
	background-image: url("img/bckgnd.jpg");
}

body {
	background-color: #2f435e;
	color: whitesmoke;
	font-family: Avenir, Sans-serif;
	margin: 0px;
	padding: 0px;
}

nav {
	height: 30px;
	background-color: #2b73b3;
	color: whitesmoke;
}

nav ul {
	list-style-type: none;
	width : 990px;
	margin: 0 auto;
}

nav li {
	float: left;
	width: 120px;
	text-align: center;
}

nav a {
	padding: 5px 0 0 0;
	height: 25px;
	display: block;
	text-decoration: none;
	color: whitesmoke;
}

nav a:hover {
	background-color: #398ed8;
	text-decoration: none;
	color: whitesmoke;
}

section {
	width: 990px;
	margin: 0 auto;
	clear: left;
}	

h1 {
	margin: 0;
	padding-top: 30px;
	font-size: 30px;
	font-weight:lighter;
	text-align: center;
	text-shadow: 1px 3px 5px rgba(0,0,0,1);
	color: white;
}

h2 {
	margin: 0 0 10px 0;
	font-size: 20px;
}

.badges {
	text-align: center;
	margin-top: 20px;
}

.badges ul {
	list-style-type: none;
	margin: 0;
}

.badges li {
	display: inline-block;
	margin: 0 20px;
	font-size: smaller;
}

.box {
	float: left;
	margin: 10px;
	padding: 10px;
    background-color: #26364B;
}

a {
	text-decoration: underline;
	color: lightsteelblue;
}

a:hover {
	text-decoration: underline;
	color: lightskyblue;
}

img {border: 0px;}

ul {padding-left: 20px;}

table {
	border-collapse: collapse;
	border: 1px solid grey;
}

caption {
	caption-side: bottom;
	padding: 5px;
	text-align : left;
	font-size: smaller;
	font-style: italic;
}

thead {
	background-color: grey;
}

th, td {
	padding: 4px 10px;
}

tbody > tr:nth-of-type(even) {
	background-color: rgb(255 255 255 / 10%);
}

.greenstatus {
	padding: 5px;
	width: 80px;
	text-align: center;
	font-size: smaller;
	font-weight: bold;
	color: black;
	background-color: lightgreen;
	border-radius: 30px;
}

.greystatus {
	padding: 5px;
	width: 80px;
	text-align: center;
	font-size: smaller;
	font-weight: bold;
	color: white;
	background-color: grey;
	border-radius: 30px;
}

.redstatus {
	padding: 5px;
	width: 80px;
	text-align: center;
	font-size: smaller;
	font-weight: bold;
	color: white;
	background-color: red;
	border-radius: 30px;
}

.orangestatus {
	padding: 5px;
	width: 80px;
	text-align: center;
	font-size: smaller;
	font-weight: bold;
	color: white;
	background-color: orange;
	border-radius: 30px;
}

footer {
	clear: both;
	background-color: rgb(40, 40, 40);
	color: lightgrey;
	text-align: center;
}