:root {
	--linkBackgroundColor1: #284696;
	--linkBackgroundColor2: #ffb100;
	--linkTextColor1: #ffb100;
	--linkTextColor2: #284696;
	--linkCurrentBackgroundColor: #333;
	--closeBtnBackgroundColor1: #284696;
	--closeBtnBackgroundColor2: #ffb100;
	--closeBtnTextColor1: #ffb100;
	--closeBtnTextColor2: #284696;
	--contentBackgroundColor1: rgba(0,0,0,.05);
}
p.expand_link {
	margin: 0 !important;
}
a.linkBtn {
	text-decoration: none !important;
	display: block !important;
	background: var(--linkBackgroundColor1) !important;
	padding: .5em !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: var(--linkTextColor1) !important;
	margin-bottom: 1px;
	transition: all .3s;
	font: inherit !important;
	overflow: auto;
}
a.linkBtn:hover {
	background: var(--linkBackgroundColor2) !important;
	color: var(--linkTextColor2) !important;
}
.expand_linkArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.expand_button {
	width: 100%;
}
form.expand_button input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
  background: var(--linkBackgroundColor1);
  border:none;
  border-radius:8px;
  display: block;
  width: 100%;
  max-width: 320px;
  color: var(--linkTextColor1);
  font-size: 1.4em;
  margin:0 auto;
  padding:20px 30px;
  text-align: center;
  text-transform: uppercase;
}
form.expand_button input:hover {
	background: var(--linkBackgroundColor2) !important;
	color: var(--linkTextColor2) !important;
}
.expand_content {
	background: var(--contentBackgroundColor1) !important;
}
.expand_content.open {
}
.expand_area {
	overflow: auto;
}
div..ecClose {
	text-align: right;
	margin: 20px 0;
}
div.ecClose button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
  background: var(--closeBtnBackgroundColor1);
  border:none;
  border-radius:8px;
  color: var(--closeBtnTextColor1);
  font-size: 1.4em;
  margin:0 auto;
  padding: 10px 20px;
  text-transform: uppercase;
}
div.ecClose button:hover {
	background: var(--linkBackgroundColor2) !important;
	color: var(--closeBtnTextColor2) !important;
}
.expand_link a::after {
	content: "+";
	position: relative;
	top: 1px;
	display: inline-block;
	font: bold 18px/1 monospace;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	float: right;
	transition: transform .3s linear;
	-webkit-transition: -webkit-transform .3s linear;
}
.expand_link a.current::after {
	content: "-";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.deepLink a {
	border: 0 !important;
	text-decoration: none;
}