html, body {
	margin: 0;
	padding: 0;
	background: #e4e4e4;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}

header {
	width: 100%;
	margin: auto;
	background: #000000;
	height: 6.625em;
	box-shadow: 0 0.125em 0.125em grey;
	padding-top: 0.938em;
}

header h1 {
	text-align: center;
	font-size: 1.875em;
	margin: 0;
	margin-bottom: 0.763em;
	font-family: Tahoma, Geneva, sans-serif;
	color: #ffffff;
	font-weight: bold;
}

header nav {
	text-align: center;
}

header nav ul {
	margin: 0;
	padding: 0;
}

header nav ul li {
	display: inline;
	margin: 0 0.750em 0 0;
	list-style-type: none;
}

header nav ul li a {
	text-decoration: none;
	font-size: 1.375em;
	padding: 0.938em;
	color: silver;
}

header nav ul li a:hover {
	background: #c9c9c9;
	color: black;
}

div#content {
	width: 90%;
	margin: auto;
	border: 0.063em solid black;
	box-shadow: 0 0.063em 0.063em black;
	padding: 1.250em;
	background: white;
	margin-top: 0.625em;
}

div#content div.left {
	float: left;
	width: 45%;
}

div#content div.right {
	float: right;
	width: 45%;
}

div#content div.important {
	background: rgba(253,0,0,0.4);
	text-align: center;
	padding: 0.938em;
	border-radius: 0.938em;
}

div#content label {
	font-weight: bold;
}

div#content input,
	div#content textarea {
	font-size: 1.5em;
	padding: 0.5em;
	border-radius: 0.8em;
	border: 0.01em solid black;
}

div#content p {
	margin-left: 0.5em;
	text-align: justify;
}

div.clear {
	clear: both;
}

div.small {
	width: 10% !important;
}

div.large {
	width: 90% !important;
}

img {
	border-radius: 0.313em;
	width: 80%;
}

div#peeringlogos {
	width: 90%;
	margin: auto;
	text-align: center;
	border: 0.1em solid #cfcfcf;
	border-radius: 1em;
	padding: 1em;
}

img.inline {
	display: inline-block;
	width: 25%;
	margin: 1em;
}

table {
	cursor: pointer;
}

table thead tr th {
	background: #c3c3c3;
	padding: 0.938em;
	font-weight: bold;
	font-size: 1.250em;
}

table tbody td {
	padding: 0.625em;
}

table tbody tr:nth-child(odd) {
	background: #e4e4e4;
}

table tbody tr:hover {
	background: #bcbcbc;
}

footer {
	width: 100%;
	bottom: 0;
	text-align: center;
	margin-top: 0.938em;
}

@media screen and (max-width: 1000px) {
	div {
		float: none !important;
		width: auto !important;
	}
	
	header h1 {
		font-size: 20px;
	}
	
	header nav ul li a {
		font-size: 1.0em;
		padding: 0.4em;
	}
}