/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*/

html {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
#bottomWhiteBorder {
	position: fixed;
	bottom: 0px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #fff;
}

@media print {
	html {
		border: none !important;
		background-color: #fff !important;
	}
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Verdana, sans-serif; /* Trebuchet MS */
	background-color: #fff;
}
#stickyHeader {
	position: sticky;
  	top: 0;
  	z-index: 1;
	border: 1px solid #555;
	border-bottom: 2px solid #000;
	padding: 6px;
  	text-align: center;
  	background-color: #000;
}
#hamburgerIcon {
	display: none;
	border: 2px solid #ccc;
	border-radius: .5em;
	padding: .25em .67em;
	white-space: nowrap;
	text-align: center;
	font-family: inherit;
	font-size: 13px;
	font-weight: bold;
	color: #000;
	background-color: inherit;
    -webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.20);
    box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.20); /*20190920*/
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none; /*prevent selection*/
}
#hamburgerIcon:hover {
	background-color: #abc;
}
#hamburgerIcon:active {
	color: #fff;
	background-color: #def;
}
#hamburgerIcon span {
	display: block;
	height: 3px;
	width: 26px;
	margin: 5px 0;
	background-color: #fff;
}
#topButton {
	position: absolute;
	top: 3px;
	right: 3px;
	border: 1px solid #fff;
	border-radius: 8px;
	padding: 2px 4px;
	font-size: 12px;
	color: #fff;
	background-color: inherit;
	cursor: pointer;
	user-select: none;
}
#topButton:hover {
	background-color: #777;
}
#topButton:active {
	background-color: #bbb;
}
#nav-main {
	z-index: 2;
	text-align: center;
}
#nav-main a {
	margin: 3px .5%;
	padding: .25em .5em;
	white-space: nowrap;
	font-family: inherit;
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none; /*prevent selection*/
}
#nav-main a[data-contact]:not(._curpage_) {
	color: #dab35e;
}
#nav-main a:hover {
	color: #ba935c; /* #D68119 */
	text-decoration: underline dotted;
}
#nav-main a:active {
	color: #fff;
	background-color: #bcd;
}
#nav-main a._curpage_ {
	border-radius: 6px;
	background-color: #ba935c; /* #D68119 */
}
#nav-main a._curpage_:hover {
	color: #fff;
	text-decoration: none;
}
#nav-main.navIsHamburger {
	display: block;
}
header {
	position: relative;
	margin: 0;
	color: #000;
	background: #fff;
}
/*
#homeBackgroundWithLogo {
	background-attachment: scroll;
	background-blend-mode: soft-light;
	background-clip: border-box;
	background-color: rgba(0, 0, 0, 0);
	background-image: url("/gfx/spencer-backman-Ku4KmLpvc8o-unsplash.jpg"), radial-gradient(circle at 100% 100%, rgb(131, 90, 80) 30%, rgb(64, 46, 50) 100%);
	background-origin: padding-box;
	background-position: 50% 50%;
	background-position-x: 50%;
	background-position-y: 50%;
	background-repeat: no-repeat;
	background-size: cover, cover;
	padding: 80px 0 30px 0;
	text-align: center;
}
*/
#homeBackgroundWithLogo {
	text-align: center;
}
#homeBackgroundWithLogo img {
	width: 100%;
	max-width: 900px;
	border-radius: 8px;
}
#div_callUs_home {
	position: absolute;
	top: 20px;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 4px;
	text-align: center;
	line-height: 1.75;
}
#div_callUs_home span {
	margin: 0 5%;
	font-size: 140%;
	font-weight: bold;
	white-space: nowrap;
	color: #000;
}
#div_callUs {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}
#div_callUs > div {
	margin: 4px 12px 0 0;
	text-align: center;
	line-height: 1.75;
}
#div_callUs > div span {
	font-size: 120%;
	font-weight: bold;
}
main {
	margin: auto;
	max-width: 900px;
	padding: 8px 12px;
	line-height: 1.4;
}
main a {
	white-space: nowrap;
}

.page_header {
	margin-top: .5em;
	margin-bottom: 1em;
	padding: .4em 0;
	text-align: center;
	font-size: 130%;
	font-weight: bold;
	letter-spacing: 1px;
	font-variant-caps: small-caps;
	color: #000;
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.25);
	background: #bbb; /* Old browsers */
	background: linear-gradient(to bottom, #def 0%, #abc 100%);
}


@media(max-width: 720px) {
	#div_callUs_home {
		top: 2px;
	}
	#nav-main {
		margin-right: 90px;
		line-height: 1.5;
	}
}
@media(max-width: 500px) {
	html {
		border: none !important;
		background-color: #fff !important;
	}
	#hamburgerIcon { display: inline-block; }
	#stickyHeader { text-align: left; }
	#nav-main { display: none; }
	#nav-main a {
		display: block;
		line-height: 1.50;
		margin: 10px auto;
		font-size: 120%;
	}
	header {
		text-align: center;
	}
	#div_callUs_home span {
		font-size: 110%;
	}
	#div_callUs {
		display: none;
	}
	#homeBackgroundWithLogo img {
		border-radius: 0px;
	}
}
