/* GLOBAL RESET: Removes whitespace around the edge of the screen */
body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

/* HEADER STYLES: Set the height of your header */
header {
	height: 120px;
	width: 100%;
	position: relative;
	float: left;
}

/* IFRAME STYLES: For the height property, subtract the pixel height of
everything above the iframe from 100% */
#map-frame {
	/*height: calc(100% - 120px);*/
	height: calc(100%);
	position: relative;
	float: left;
	border: none;
	margin: 0;
	padding: 0;
}

#menu-bar .menu-single-item{
	font-weight: bold!important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

#skipnav {
    float: left;
    height: 0;
    overflow: hidden;
    width: 0;
	padding-bottom: 50px;
	padding-left: 50px;
}

#skipnav a {
    background: #fff;
    color: #000;
    left: -9999px;
    position: absolute;
    top: -9999px;
    width: 12.5em;
    z-index: 999
}

#skipnav a:active,#skipnav a:focus {
    left: 0;
    top: 0
}

#skipnav a:focus {
    outline: #fff solid .2rem;
    outline-offset: .2rem
}

