/* <style> */
	:root {
		--settingsWidth: 25px;
	}
	
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}
#container {
	background-color: black;
	position: relative;
	width: 100%;
	height: 100vh;
	min-width: 1200px;
	overflow: hidden;
}
#header {
	background: -moz-linear-gradient(top,  rgba(226,226,226,0.5) 0%, rgba(219,219,219,0.5) 50%, rgba(209,209,209,0.5) 51%, rgba(254,254,254,0.5) 100%);
	background: -webkit-linear-gradient(top,  rgba(226,226,226,0.5) 0%,rgba(219,219,219,0.5) 50%,rgba(209,209,209,0.5) 51%,rgba(254,254,254,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(226,226,226,0.5) 0%,rgba(219,219,219,0.5) 50%,rgba(209,209,209,0.5) 51%,rgba(254,254,254,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80e2e2e2', endColorstr='#80fefefe',GradientType=0 );
	width: calc( 100% - 400px );
	min-width: 800px;
	height: 100px;
	overflow: hidden;
}
#header img {
	margin: 0 auto;
	height: 70px;
	display: block;
}
#header table.navBar {
	color: white;
	background-color: black;
	border-top: solid 2px white;
	border-right: solid 2px white;
	border-radius: 0 10px 0 0;
	font-size: 16px;
	width: 100%;
	max-width: 1000px;
	height: 30px;
	float: left;
	clear: left;
	box-sizing: border-box;
	overflow: hidden;
}
#header table.navBar td {
	font-size: 14px;
	width: 14%;
	text-align: center;
	cursor: pointer;
	border-bottom: solid 2px transparent;
	box-sizing: border-box;
	text-shadow: 1px 1px 1px transparent;
}
#header table.navBar td.selected {
	text-shadow: 1px 1px 1px #FFFFFF;
	color: black;
	background: rgb(167,206,167);
	background: -moz-linear-gradient(top, rgba(167,206,167,1) 0%, rgba(48,132,27,1) 50%, rgba(16,104,16,1) 51%, rgba(137,170,133,1) 100%);
	background: -webkit-linear-gradient(top, rgba(167,206,167,1) 0%,rgba(48,132,27,1) 50%,rgba(16,104,16,1) 51%,rgba(137,170,133,1) 100%);
	background: linear-gradient(to bottom, rgba(167,206,167,1) 0%,rgba(48,132,27,1) 50%,rgba(16,104,16,1) 51%,rgba(137,170,133,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7cea7', endColorstr='#89aa85',GradientType=0 );
	border-bottom: solid 2px white;
}
#header table.navBar td:hover {
	color: black;
	background-color: white;
	border-bottom: solid 2px rgba(32,126,13,1.00);
	transition: 500ms;
}
#content {
	position: relative;
	width: calc( 100% - 400px );
	min-width: 800px;
	height: calc( 100% - 100px );
}

#content div.active {
	display: block;
}
#content div.inactive {
	display: none;
}
#content div.misc {
	color: white;
	background: rgb(14,14,14);
	background: -moz-linear-gradient(top,  rgba(14,14,14,1) 0%, rgba(125,126,125,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
	background: linear-gradient(to bottom,  rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e0e0e', endColorstr='#7d7e7d',GradientType=0 );
	width: 100%;
	height: 100%;
	min-height: 600px;
	min-width: 800px;
	overflow-x: hidden;
	overflow-y: auto;
}
#content div#grx span.chasePlacefiles {
	font-size: 14px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 50px auto;
	display: block;
}
#content div#grx span.chasePlacefiles h1 {
	font-size: 24px;
	border-bottom: dotted 1px white;
	text-align: center;
}
#content div#grx span.chasePlacefiles a, #content div#grx span.chasePlacefiles a:link, #content div#grx span.chasePlacefiles a:visited {
	color: lightgreen;
}
#content div#grx span.chasePlacefiles a:hover {
	color: white;
}
#mapWrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	min-height: 600px;
	min-width: 800px;
}
#olMap {
	height: 100%;;
	width: 100%;;
}
	#settings {
		position: absolute;
		color: white;
		font-size: 12px;
		top: 5px;
		right: 5px;
		display: block;
		overflow: hidden;
		border: solid 2px white;
		border-radius: 5px;
		background-color: rgba(0,0,0,0.5);
	}
	#settings.closed {
		width: var(--settingsWidth);
		height: var(--settingsWidth);
	}
	#settings.open {
		width: auto;
		height: auto;
	}
	#settings #toggle {
		position: absolute;
		top: 0;
		right: 0;
		height: var(--settingsWidth);
		width: var(--settingsWidth);
		background-size: contain;
		background-repeat: no-repeat;
		cursor: pointer;
	}
	#settings.closed #toggle {
		background-image: url('https://weather.cod.edu/assets/images/icons/settings.png');
	}
	#settings.open #toggle {
		background-image: url('https://weather.cod.edu/assets/images/icons/close.png');
	}
	#settings table {
		display: block;
		clear: both;
		margin-top: var(--settingsWidth);
		padding: 5px;
	}
	#settings table tr td,
	#settings table tr th {
		height: 25px;
		padding: 0 5px;
		text-align: center;
	}
	#settings table tr td {
		cursor: pointer;
		user-select: none;
	}
	#settings table tr th {
		font-size: 14px;
		text-align: right;
	}
	#settings table tr td.selected {
		color: black;
		background-color: rgba(255,255,255,0.5);
	}
#trafficToggle {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-radius: 20px;
	border: solid 2px black;
	padding: 5px 10px;
	position: absolute;
	top: 10px;
	right: 50px;
	z-index: 1000;
	font-size: 14px;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}
.disabled { 
	background-color: rgba(255,255,255,.75);
}
.enabled {
	background-color: rgba(25,175,50,.5);
}
#target {
	width: 395px;
	vertical-align:middle;
}
#panel {
	position: absolute;
	top: 0;
	left: calc( 50% - 200px - 1px );
	background-color: rgba(0,0,0,.5);
	padding: 5px;
	width: 400px;
	border-radius: 0 0 5px 5px;
	border-right: solid 1px black;
	border-bottom: solid 1px black;
	border-left: solid 1px black;
	z-index: 100000;
}

table.tileLinks {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 50px auto;
}
table.tileLinks th {
	padding: 10px 0;
	border-bottom: dotted 1px white;
	font-size: 24px;
}
table.tileLinks td {
	padding: 10px;
	vertical-align: top;
	width: 33%;
	cursor: pointer;
	transition: 500ms;
}
table.tileLinks td:hover {
	background-color: rgba(50,135,65,0.70);
}
table.tileLinks td h1 {
	font-size: 14px;
}
table.tileLinks td img {
	width: 100%;
	height: auto;
	display: block;
}
table.tileLinks td span.description {
	font-size: 12px;
}

#feed {
	background-color: #333;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 400px;
}
#feed iframe.twitter-timeline {
	display: block;
}