/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ------- End of CSS reset ------- */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.05em;
	color: #333333;
	line-height:1.5em;
}

h1 {
	font-size: 2rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: -0.05em;
}

a {
	color: #333333;
	text-decoration: none;
	background-color: #EEEEEE;
	padding: 0.2em;
}
a:hover, a:active {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #333333;
}

dt{
	color: black;
}

.container {
	grid-area: content;
	display: grid;
	grid-template-areas:
	  'header'
	  'main'
	  'footer';
	  grid-template-columns: 1fr;
	  grid-template-rows: auto 1fr 1fr;
	border: 1rem solid;
	height: 100vh;
	width: 100%;
	box-sizing: border-box;
  }

header {
	grid-area: header;
	padding: 2rem 1rem 1rem 1rem;
}

section.main {
	grid-area: main;
	padding: 1rem;
}

section.main dl {
	display: inline-grid;
	grid-template-columns: 3fr 7fr;
}

section.main dl dd, section.main dl dt {
	padding: 0.5rem 0;
}

section.textarea {
	grid-area: data;
}

footer {
	grid-area: footer;
	padding: 2rem 0 2rem 2rem;
	align-self: flex-end;
	font-size: 0.75em;
}

#mapid { height: 180px; }

.global-container {
	display: grid;
	grid-template-areas: 'content';
	grid-template-columns: 1fr;
}

div#data{
	display: none;
}

#jobTitle{
	line-height: 1rem;
}

#jobTitle > span{
	display: inline-block;
}

header > h1 {
	padding-bottom: 1rem;
}

section.main > ul > li{
	padding: 0.5em 0;
}

section.main > ul > li > span{
	display: inline-block;
}
section.main > ul > li > a{
	display: inline;
	white-space: nowrap; 
}

@media only screen and (min-width: 860px){
	
	div#data {
		display: block;
		width: 100%;
		height: 100vh;
		padding: 2em;
		overflow: auto;
		font-family: 'Courier New', Courier, monospace;
		font-size: 90%;
		font-weight: normal;
		font-style: normal;
		letter-spacing: normal;
		color: #FFFFFF;
		line-height: normal;
		background-color: #333333;
		box-sizing: border-box;
	}

	.global-container {
		display: grid;
		grid-template-areas: 'content data';
		grid-template-columns: 1fr 1fr;
	}

	header {
		padding: 2rem 0 1rem 2rem;
	}
	
	section.main {
		padding: 1rem 2rem 0 2rem;
	}

}