
@charset "UTF-8";

@media print,screen and (min-width:48em) {
	.reveal, .reveal.large, .reveal.small, .reveal.tiny {
		right: auto;
		left: auto;
		margin: 0 auto;
	}
}

.slide-in-down.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(-100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
	transform: translateY(0);
}

.slide-in-left.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(-100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
	transform: translateX(0);
}

.slide-in-up.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
	transform: translateY(0);
}

.slide-in-right.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
	transform: translateX(0);
}

.slide-out-down.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
	transform: translateY(100%);
}

.slide-out-right.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
	transform: translateX(100%);
}

.slide-out-up.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
	transform: translateY(-100%);
}

.slide-out-left.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
	transform: translateX(-100%);
}

.fade-in.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	opacity: 0;
	transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
	opacity: 1;
}

.fade-out.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	opacity: 1;
	transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
	opacity: 0;
}

.hinge-in-from-top.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(-90deg);
	transform-origin: top;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-right.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(-90deg);
	transform-origin: right;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(90deg);
	transform-origin: bottom;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-left.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(90deg);
	transform-origin: left;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(-90deg);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(-90deg);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-out-from-top.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: top;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(90deg);
	opacity: 0;
}

.hinge-out-from-right.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: right;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(90deg);
	opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: bottom;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(-90deg);
	opacity: 0;
}

.hinge-out-from-left.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: left;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(-90deg);
	opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(90deg);
	opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(90deg);
	opacity: 0;
}

.scale-in-up.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(.5);
	transition-property: transform, opacity;
	opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
	transform: scale(1);
	opacity: 1;
}

.scale-in-down.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1.5);
	transition-property: transform, opacity;
	opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
	transform: scale(1);
	opacity: 1;
}

.scale-out-up.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1);
	transition-property: transform, opacity;
	opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
	transform: scale(1.5);
	opacity: 0;
}

.scale-out-down.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1);
	transition-property: transform, opacity;
	opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
	transform: scale(.5);
	opacity: 0;
}

.spin-in.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(-.75turn);
	transition-property: transform, opacity;
	opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
	transform: rotate(0);
	opacity: 1;
}

.spin-out.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(0);
	transition-property: transform, opacity;
	opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
	transform: rotate(.75turn);
	opacity: 0;
}

.spin-in-ccw.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(.75turn);
	transition-property: transform, opacity;
	opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
	transform: rotate(0);
	opacity: 1;
}

.spin-out-ccw.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(0);
	transition-property: transform, opacity;
	opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
	transform: rotate(-.75turn);
	opacity: 0;
}

.slow {
	transition-duration: 750ms !important;
}

.fast {
	transition-duration: 250ms !important;
}

.linear {
	transition-timing-function: linear !important;
}

.ease {
	transition-timing-function: ease !important;
}

.ease-in {
	transition-timing-function: ease-in !important;
}

.ease-out {
	transition-timing-function: ease-out !important;
}

.ease-in-out {
	transition-timing-function: ease-in-out !important;
}

.bounce-in {
	transition-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important;
}

.bounce-out {
	transition-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
	transition-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
	transition-delay: .3s !important;
}

.long-delay {
	transition-delay: .7s !important;
}

.shake {
	animation-name: shake-7;
}

@keyframes shake-7 {
	0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
		transform: translateX(7%);
	}
	
	15%, 25%, 35%, 45%, 5%, 55%, 65%, 75%, 85%, 95% {
		transform: translateX(-7%);
	}
}

.spin-cw {
	animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
	0% {
		transform: rotate(-1turn);
	}
	
	100% {
		transform: rotate(0);
	}
}

.spin-ccw {
	animation-name: spin-ccw-1turn;
}

@keyframes spin-ccw-1turn {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(-1turn);
	}
}

.wiggle {
	animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
	40%, 50%, 60% {
		transform: rotate(7deg);
	}
	
	35%, 45%, 55%, 65% {
		transform: rotate(-7deg);
	}
	
	0%, 100%, 30%, 70% {
		transform: rotate(0);
	}
}

.shake, .spin-ccw, .spin-cw, .wiggle {
	animation-duration: .5s;
}

.infinite {
	animation-iteration-count: infinite;
}

.slow {
	animation-duration: 750ms !important;
}

.fast {
	animation-duration: 250ms !important;
}

.linear {
	animation-timing-function: linear !important;
}

.ease {
	animation-timing-function: ease !important;
}

.ease-in {
	animation-timing-function: ease-in !important;
}

.ease-out {
	animation-timing-function: ease-out !important;
}

.ease-in-out {
	animation-timing-function: ease-in-out !important;
}

.bounce-in {
	animation-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important;
}

.bounce-out {
	animation-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
	animation-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
	animation-delay: .3s !important;
}

.long-delay {
	animation-delay: .7s !important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

h1 {
	font-size: 2em;
	margin: .67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b, strong {
	font-weight: bolder;
}

code, kbd, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

img {
	border-style: none;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
	-webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: .35em .75em .625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type=checkbox], [type=radio] {
	box-sizing: border-box;
	padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

.foundation-mq {
	font-family: "small=0em&medium=48em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
	box-sizing: border-box;
	font-size: 100%;
}

*, ::after, ::before {
	box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: "Open Sans", sans-serif;
	font-weight: 100;
	line-height: 1.6em;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
}

textarea {
	height: auto;
	min-height: 50px;
	border-radius: 0;
}

select {
	box-sizing: border-box;
	width: 100%;
	border-radius: 0;
}

.map_canvas embed, .map_canvas img, .map_canvas object, .mqa-display embed, .mqa-display img, .mqa-display object {
	max-width: none !important;
}

button {
	padding: 0;
	appearance: none;
	border: 0;
	border-radius: 0;
	background: 0 0;
	line-height: 1;
	cursor: auto;
}

[data-whatinput=mouse] button {
	outline: 0;
}

pre {
	overflow: auto;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
}

.is-visible {
	display: block !important;
}

.is-hidden {
	display: none !important;
}

.grid-container {
	padding-right: .75rem;
	padding-left: .75rem;
	max-width: 74.375rem;
	margin-left: auto;
	margin-right: auto;
}

@media print,screen and (min-width:48em) {
	.grid-container {
		padding-right: .75rem;
		padding-left: .75rem;
	}
}

.grid-container.fluid {
	padding-right: .75rem;
	padding-left: .75rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media print,screen and (min-width:48em) {
	.grid-container.fluid {
		padding-right: .75rem;
		padding-left: .75rem;
	}
}

.grid-container.full {
	padding-right: 0;
	padding-left: 0;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.grid-x {
	display: flex;
	flex-flow: row wrap;
}

.cell {
	flex: 0 0 auto;
	min-height: 0;
	min-width: 0;
	width: 100%;
}

.cell.auto {
	flex: 1 1 0px;
}

.cell.shrink {
	flex: 0 0 auto;
}

.grid-x>.auto {
	width: auto;
}

.grid-x>.shrink {
	width: auto;
}

.grid-x>.small-1, .grid-x>.small-10, .grid-x>.small-11, .grid-x>.small-12, .grid-x>.small-2, .grid-x>.small-3, .grid-x>.small-4, .grid-x>.small-5, .grid-x>.small-6, .grid-x>.small-7, .grid-x>.small-8, .grid-x>.small-9, .grid-x>.small-full, .grid-x>.small-shrink {
	flex-basis: auto;
}

@media print,screen and (min-width:48em) {
	.grid-x>.medium-1, .grid-x>.medium-10, .grid-x>.medium-11, .grid-x>.medium-12, .grid-x>.medium-2, .grid-x>.medium-3, .grid-x>.medium-4, .grid-x>.medium-5, .grid-x>.medium-6, .grid-x>.medium-7, .grid-x>.medium-8, .grid-x>.medium-9, .grid-x>.medium-full, .grid-x>.medium-shrink {
		flex-basis: auto;
	}
}

@media print,screen and (min-width:64em) {
	.grid-x>.large-1, .grid-x>.large-10, .grid-x>.large-11, .grid-x>.large-12, .grid-x>.large-2, .grid-x>.large-3, .grid-x>.large-4, .grid-x>.large-5, .grid-x>.large-6, .grid-x>.large-7, .grid-x>.large-8, .grid-x>.large-9, .grid-x>.large-full, .grid-x>.large-shrink {
		flex-basis: auto;
	}
}

.grid-x>.small-1, .grid-x>.small-10, .grid-x>.small-11, .grid-x>.small-12, .grid-x>.small-2, .grid-x>.small-3, .grid-x>.small-4, .grid-x>.small-5, .grid-x>.small-6, .grid-x>.small-7, .grid-x>.small-8, .grid-x>.small-9 {
	flex: 0 0 auto;
}

.grid-x>.small-1 {
	width: 8.3333333333%;
}

.grid-x>.small-2 {
	width: 16.6666666667%;
}

.grid-x>.small-3 {
	width: 25%;
}

.grid-x>.small-4 {
	width: 33.3333333333%;
}

.grid-x>.small-5 {
	width: 41.6666666667%;
}

.grid-x>.small-6 {
	width: 50%;
}

.grid-x>.small-7 {
	width: 58.3333333333%;
}

.grid-x>.small-8 {
	width: 66.6666666667%;
}

.grid-x>.small-9 {
	width: 75%;
}

.grid-x>.small-10 {
	width: 83.3333333333%;
}

.grid-x>.small-11 {
	width: 91.6666666667%;
}

.grid-x>.small-12 {
	width: 100%;
}

@media print,screen and (min-width:48em) {
	.grid-x>.medium-auto {
		flex: 1 1 0px;
		width: auto;
	}
	
	.grid-x>.medium-1, .grid-x>.medium-10, .grid-x>.medium-11, .grid-x>.medium-12, .grid-x>.medium-2, .grid-x>.medium-3, .grid-x>.medium-4, .grid-x>.medium-5, .grid-x>.medium-6, .grid-x>.medium-7, .grid-x>.medium-8, .grid-x>.medium-9, .grid-x>.medium-shrink {
		flex: 0 0 auto;
	}
	
	.grid-x>.medium-shrink {
		width: auto;
	}
	
	.grid-x>.medium-1 {
		width: 8.3333333333%;
	}
	
	.grid-x>.medium-2 {
		width: 16.6666666667%;
	}
	
	.grid-x>.medium-3 {
		width: 25%;
	}
	
	.grid-x>.medium-4 {
		width: 33.3333333333%;
	}
	
	.grid-x>.medium-5 {
		width: 41.6666666667%;
	}
	
	.grid-x>.medium-6 {
		width: 50%;
	}
	
	.grid-x>.medium-7 {
		width: 58.3333333333%;
	}
	
	.grid-x>.medium-8 {
		width: 66.6666666667%;
	}
	
	.grid-x>.medium-9 {
		width: 75%;
	}
	
	.grid-x>.medium-10 {
		width: 83.3333333333%;
	}
	
	.grid-x>.medium-11 {
		width: 91.6666666667%;
	}
	
	.grid-x>.medium-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.grid-x>.large-auto {
		flex: 1 1 0px;
		width: auto;
	}
	
	.grid-x>.large-1, .grid-x>.large-10, .grid-x>.large-11, .grid-x>.large-12, .grid-x>.large-2, .grid-x>.large-3, .grid-x>.large-4, .grid-x>.large-5, .grid-x>.large-6, .grid-x>.large-7, .grid-x>.large-8, .grid-x>.large-9, .grid-x>.large-shrink {
		flex: 0 0 auto;
	}
	
	.grid-x>.large-shrink {
		width: auto;
	}
	
	.grid-x>.large-1 {
		width: 8.3333333333%;
	}
	
	.grid-x>.large-2 {
		width: 16.6666666667%;
	}
	
	.grid-x>.large-3 {
		width: 25%;
	}
	
	.grid-x>.large-4 {
		width: 33.3333333333%;
	}
	
	.grid-x>.large-5 {
		width: 41.6666666667%;
	}
	
	.grid-x>.large-6 {
		width: 50%;
	}
	
	.grid-x>.large-7 {
		width: 58.3333333333%;
	}
	
	.grid-x>.large-8 {
		width: 66.6666666667%;
	}
	
	.grid-x>.large-9 {
		width: 75%;
	}
	
	.grid-x>.large-10 {
		width: 83.3333333333%;
	}
	
	.grid-x>.large-11 {
		width: 91.6666666667%;
	}
	
	.grid-x>.large-12 {
		width: 100%;
	}
}

.grid-margin-x:not(.grid-x)>.cell {
	width: auto;
}

.grid-margin-y:not(.grid-y)>.cell {
	height: auto;
}

.grid-margin-x {
	margin-left: -.75rem;
	margin-right: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-x {
		margin-left: -.75rem;
		margin-right: -.75rem;
	}
}

.grid-margin-x>.cell {
	width: calc(100% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-x>.cell {
		width: calc(100% - 1.5rem);
		margin-left: .75rem;
		margin-right: .75rem;
	}
}

.grid-margin-x>.auto {
	width: auto;
}

.grid-margin-x>.shrink {
	width: auto;
}

.grid-margin-x>.small-1 {
	width: calc(8.3333333333% - 1.5rem);
}

.grid-margin-x>.small-2 {
	width: calc(16.6666666667% - 1.5rem);
}

.grid-margin-x>.small-3 {
	width: calc(25% - 1.5rem);
}

.grid-margin-x>.small-4 {
	width: calc(33.3333333333% - 1.5rem);
}

.grid-margin-x>.small-5 {
	width: calc(41.6666666667% - 1.5rem);
}

.grid-margin-x>.small-6 {
	width: calc(50% - 1.5rem);
}

.grid-margin-x>.small-7 {
	width: calc(58.3333333333% - 1.5rem);
}

.grid-margin-x>.small-8 {
	width: calc(66.6666666667% - 1.5rem);
}

.grid-margin-x>.small-9 {
	width: calc(75% - 1.5rem);
}

.grid-margin-x>.small-10 {
	width: calc(83.3333333333% - 1.5rem);
}

.grid-margin-x>.small-11 {
	width: calc(91.6666666667% - 1.5rem);
}

.grid-margin-x>.small-12 {
	width: calc(100% - 1.5rem);
}

@media print,screen and (min-width:48em) {
	.grid-margin-x>.auto {
		width: auto;
	}
	
	.grid-margin-x>.shrink {
		width: auto;
	}
	
	.grid-margin-x>.small-1 {
		width: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.small-2 {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.small-3 {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x>.small-4 {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.small-5 {
		width: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.small-6 {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x>.small-7 {
		width: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.small-8 {
		width: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.small-9 {
		width: calc(75% - 1.5rem);
	}
	
	.grid-margin-x>.small-10 {
		width: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.small-11 {
		width: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.small-12 {
		width: calc(100% - 1.5rem);
	}
	
	.grid-margin-x>.medium-auto {
		width: auto;
	}
	
	.grid-margin-x>.medium-shrink {
		width: auto;
	}
	
	.grid-margin-x>.medium-1 {
		width: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.medium-2 {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.medium-3 {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x>.medium-4 {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.medium-5 {
		width: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.medium-6 {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x>.medium-7 {
		width: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.medium-8 {
		width: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.medium-9 {
		width: calc(75% - 1.5rem);
	}
	
	.grid-margin-x>.medium-10 {
		width: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.medium-11 {
		width: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.medium-12 {
		width: calc(100% - 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-margin-x>.large-auto {
		width: auto;
	}
	
	.grid-margin-x>.large-shrink {
		width: auto;
	}
	
	.grid-margin-x>.large-1 {
		width: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.large-2 {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.large-3 {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x>.large-4 {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.large-5 {
		width: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.large-6 {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x>.large-7 {
		width: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.large-8 {
		width: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.large-9 {
		width: calc(75% - 1.5rem);
	}
	
	.grid-margin-x>.large-10 {
		width: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-x>.large-11 {
		width: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-x>.large-12 {
		width: calc(100% - 1.5rem);
	}
}

.grid-padding-x .grid-padding-x {
	margin-right: -.75rem;
	margin-left: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-padding-x .grid-padding-x {
		margin-right: -.75rem;
		margin-left: -.75rem;
	}
}

.grid-container:not(.full)>.grid-padding-x {
	margin-right: -.75rem;
	margin-left: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-container:not(.full)>.grid-padding-x {
		margin-right: -.75rem;
		margin-left: -.75rem;
	}
}

.grid-padding-x>.cell {
	padding-right: .75rem;
	padding-left: .75rem;
}

@media print,screen and (min-width:48em) {
	.grid-padding-x>.cell {
		padding-right: .75rem;
		padding-left: .75rem;
	}
}

.small-up-1>.cell {
	width: 100%;
}

.small-up-2>.cell {
	width: 50%;
}

.small-up-3>.cell {
	width: 33.3333333333%;
}

.small-up-4>.cell {
	width: 25%;
}

.small-up-5>.cell {
	width: 20%;
}

.small-up-6>.cell {
	width: 16.6666666667%;
}

.small-up-7>.cell {
	width: 14.2857142857%;
}

.small-up-8>.cell {
	width: 12.5%;
}

@media print,screen and (min-width:48em) {
	.medium-up-1>.cell {
		width: 100%;
	}
	
	.medium-up-2>.cell {
		width: 50%;
	}
	
	.medium-up-3>.cell {
		width: 33.3333333333%;
	}
	
	.medium-up-4>.cell {
		width: 25%;
	}
	
	.medium-up-5>.cell {
		width: 20%;
	}
	
	.medium-up-6>.cell {
		width: 16.6666666667%;
	}
	
	.medium-up-7>.cell {
		width: 14.2857142857%;
	}
	
	.medium-up-8>.cell {
		width: 12.5%;
	}
}

@media print,screen and (min-width:64em) {
	.large-up-1>.cell {
		width: 100%;
	}
	
	.large-up-2>.cell {
		width: 50%;
	}
	
	.large-up-3>.cell {
		width: 33.3333333333%;
	}
	
	.large-up-4>.cell {
		width: 25%;
	}
	
	.large-up-5>.cell {
		width: 20%;
	}
	
	.large-up-6>.cell {
		width: 16.6666666667%;
	}
	
	.large-up-7>.cell {
		width: 14.2857142857%;
	}
	
	.large-up-8>.cell {
		width: 12.5%;
	}
}

.grid-margin-x.small-up-1>.cell {
	width: calc(100% - 1.5rem);
}

.grid-margin-x.small-up-2>.cell {
	width: calc(50% - 1.5rem);
}

.grid-margin-x.small-up-3>.cell {
	width: calc(33.3333333333% - 1.5rem);
}

.grid-margin-x.small-up-4>.cell {
	width: calc(25% - 1.5rem);
}

.grid-margin-x.small-up-5>.cell {
	width: calc(20% - 1.5rem);
}

.grid-margin-x.small-up-6>.cell {
	width: calc(16.6666666667% - 1.5rem);
}

.grid-margin-x.small-up-7>.cell {
	width: calc(14.2857142857% - 1.5rem);
}

.grid-margin-x.small-up-8>.cell {
	width: calc(12.5% - 1.5rem);
}

@media print,screen and (min-width:48em) {
	.grid-margin-x.small-up-1>.cell {
		width: calc(100% - 1.5rem);
	}
	
	.grid-margin-x.small-up-2>.cell {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x.small-up-3>.cell {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x.small-up-4>.cell {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x.small-up-5>.cell {
		width: calc(20% - 1.5rem);
	}
	
	.grid-margin-x.small-up-6>.cell {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x.small-up-7>.cell {
		width: calc(14.2857142857% - 1.5rem);
	}
	
	.grid-margin-x.small-up-8>.cell {
		width: calc(12.5% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-1>.cell {
		width: calc(100% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-2>.cell {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-3>.cell {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-4>.cell {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-5>.cell {
		width: calc(20% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-6>.cell {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-7>.cell {
		width: calc(14.2857142857% - 1.5rem);
	}
	
	.grid-margin-x.medium-up-8>.cell {
		width: calc(12.5% - 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-margin-x.large-up-1>.cell {
		width: calc(100% - 1.5rem);
	}
	
	.grid-margin-x.large-up-2>.cell {
		width: calc(50% - 1.5rem);
	}
	
	.grid-margin-x.large-up-3>.cell {
		width: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-x.large-up-4>.cell {
		width: calc(25% - 1.5rem);
	}
	
	.grid-margin-x.large-up-5>.cell {
		width: calc(20% - 1.5rem);
	}
	
	.grid-margin-x.large-up-6>.cell {
		width: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-x.large-up-7>.cell {
		width: calc(14.2857142857% - 1.5rem);
	}
	
	.grid-margin-x.large-up-8>.cell {
		width: calc(12.5% - 1.5rem);
	}
}

.small-margin-collapse {
	margin-right: 0;
	margin-left: 0;
}

.small-margin-collapse>.cell {
	margin-right: 0;
	margin-left: 0;
}

.small-margin-collapse>.small-1 {
	width: 8.3333333333%;
}

.small-margin-collapse>.small-2 {
	width: 16.6666666667%;
}

.small-margin-collapse>.small-3 {
	width: 25%;
}

.small-margin-collapse>.small-4 {
	width: 33.3333333333%;
}

.small-margin-collapse>.small-5 {
	width: 41.6666666667%;
}

.small-margin-collapse>.small-6 {
	width: 50%;
}

.small-margin-collapse>.small-7 {
	width: 58.3333333333%;
}

.small-margin-collapse>.small-8 {
	width: 66.6666666667%;
}

.small-margin-collapse>.small-9 {
	width: 75%;
}

.small-margin-collapse>.small-10 {
	width: 83.3333333333%;
}

.small-margin-collapse>.small-11 {
	width: 91.6666666667%;
}

.small-margin-collapse>.small-12 {
	width: 100%;
}

@media print,screen and (min-width:48em) {
	.small-margin-collapse>.medium-1 {
		width: 8.3333333333%;
	}
	
	.small-margin-collapse>.medium-2 {
		width: 16.6666666667%;
	}
	
	.small-margin-collapse>.medium-3 {
		width: 25%;
	}
	
	.small-margin-collapse>.medium-4 {
		width: 33.3333333333%;
	}
	
	.small-margin-collapse>.medium-5 {
		width: 41.6666666667%;
	}
	
	.small-margin-collapse>.medium-6 {
		width: 50%;
	}
	
	.small-margin-collapse>.medium-7 {
		width: 58.3333333333%;
	}
	
	.small-margin-collapse>.medium-8 {
		width: 66.6666666667%;
	}
	
	.small-margin-collapse>.medium-9 {
		width: 75%;
	}
	
	.small-margin-collapse>.medium-10 {
		width: 83.3333333333%;
	}
	
	.small-margin-collapse>.medium-11 {
		width: 91.6666666667%;
	}
	
	.small-margin-collapse>.medium-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.small-margin-collapse>.large-1 {
		width: 8.3333333333%;
	}
	
	.small-margin-collapse>.large-2 {
		width: 16.6666666667%;
	}
	
	.small-margin-collapse>.large-3 {
		width: 25%;
	}
	
	.small-margin-collapse>.large-4 {
		width: 33.3333333333%;
	}
	
	.small-margin-collapse>.large-5 {
		width: 41.6666666667%;
	}
	
	.small-margin-collapse>.large-6 {
		width: 50%;
	}
	
	.small-margin-collapse>.large-7 {
		width: 58.3333333333%;
	}
	
	.small-margin-collapse>.large-8 {
		width: 66.6666666667%;
	}
	
	.small-margin-collapse>.large-9 {
		width: 75%;
	}
	
	.small-margin-collapse>.large-10 {
		width: 83.3333333333%;
	}
	
	.small-margin-collapse>.large-11 {
		width: 91.6666666667%;
	}
	
	.small-margin-collapse>.large-12 {
		width: 100%;
	}
}

.small-padding-collapse {
	margin-right: 0;
	margin-left: 0;
}

.small-padding-collapse>.cell {
	padding-right: 0;
	padding-left: 0;
}

@media print,screen and (min-width:48em) {
	.medium-margin-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	
	.medium-margin-collapse>.cell {
		margin-right: 0;
		margin-left: 0;
	}
}

@media print,screen and (min-width:48em) {
	.medium-margin-collapse>.small-1 {
		width: 8.3333333333%;
	}
	
	.medium-margin-collapse>.small-2 {
		width: 16.6666666667%;
	}
	
	.medium-margin-collapse>.small-3 {
		width: 25%;
	}
	
	.medium-margin-collapse>.small-4 {
		width: 33.3333333333%;
	}
	
	.medium-margin-collapse>.small-5 {
		width: 41.6666666667%;
	}
	
	.medium-margin-collapse>.small-6 {
		width: 50%;
	}
	
	.medium-margin-collapse>.small-7 {
		width: 58.3333333333%;
	}
	
	.medium-margin-collapse>.small-8 {
		width: 66.6666666667%;
	}
	
	.medium-margin-collapse>.small-9 {
		width: 75%;
	}
	
	.medium-margin-collapse>.small-10 {
		width: 83.3333333333%;
	}
	
	.medium-margin-collapse>.small-11 {
		width: 91.6666666667%;
	}
	
	.medium-margin-collapse>.small-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:48em) {
	.medium-margin-collapse>.medium-1 {
		width: 8.3333333333%;
	}
	
	.medium-margin-collapse>.medium-2 {
		width: 16.6666666667%;
	}
	
	.medium-margin-collapse>.medium-3 {
		width: 25%;
	}
	
	.medium-margin-collapse>.medium-4 {
		width: 33.3333333333%;
	}
	
	.medium-margin-collapse>.medium-5 {
		width: 41.6666666667%;
	}
	
	.medium-margin-collapse>.medium-6 {
		width: 50%;
	}
	
	.medium-margin-collapse>.medium-7 {
		width: 58.3333333333%;
	}
	
	.medium-margin-collapse>.medium-8 {
		width: 66.6666666667%;
	}
	
	.medium-margin-collapse>.medium-9 {
		width: 75%;
	}
	
	.medium-margin-collapse>.medium-10 {
		width: 83.3333333333%;
	}
	
	.medium-margin-collapse>.medium-11 {
		width: 91.6666666667%;
	}
	
	.medium-margin-collapse>.medium-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.medium-margin-collapse>.large-1 {
		width: 8.3333333333%;
	}
	
	.medium-margin-collapse>.large-2 {
		width: 16.6666666667%;
	}
	
	.medium-margin-collapse>.large-3 {
		width: 25%;
	}
	
	.medium-margin-collapse>.large-4 {
		width: 33.3333333333%;
	}
	
	.medium-margin-collapse>.large-5 {
		width: 41.6666666667%;
	}
	
	.medium-margin-collapse>.large-6 {
		width: 50%;
	}
	
	.medium-margin-collapse>.large-7 {
		width: 58.3333333333%;
	}
	
	.medium-margin-collapse>.large-8 {
		width: 66.6666666667%;
	}
	
	.medium-margin-collapse>.large-9 {
		width: 75%;
	}
	
	.medium-margin-collapse>.large-10 {
		width: 83.3333333333%;
	}
	
	.medium-margin-collapse>.large-11 {
		width: 91.6666666667%;
	}
	
	.medium-margin-collapse>.large-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:48em) {
	.medium-padding-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	
	.medium-padding-collapse>.cell {
		padding-right: 0;
		padding-left: 0;
	}
}

@media print,screen and (min-width:64em) {
	.large-margin-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	
	.large-margin-collapse>.cell {
		margin-right: 0;
		margin-left: 0;
	}
}

@media print,screen and (min-width:64em) {
	.large-margin-collapse>.small-1 {
		width: 8.3333333333%;
	}
	
	.large-margin-collapse>.small-2 {
		width: 16.6666666667%;
	}
	
	.large-margin-collapse>.small-3 {
		width: 25%;
	}
	
	.large-margin-collapse>.small-4 {
		width: 33.3333333333%;
	}
	
	.large-margin-collapse>.small-5 {
		width: 41.6666666667%;
	}
	
	.large-margin-collapse>.small-6 {
		width: 50%;
	}
	
	.large-margin-collapse>.small-7 {
		width: 58.3333333333%;
	}
	
	.large-margin-collapse>.small-8 {
		width: 66.6666666667%;
	}
	
	.large-margin-collapse>.small-9 {
		width: 75%;
	}
	
	.large-margin-collapse>.small-10 {
		width: 83.3333333333%;
	}
	
	.large-margin-collapse>.small-11 {
		width: 91.6666666667%;
	}
	
	.large-margin-collapse>.small-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.large-margin-collapse>.medium-1 {
		width: 8.3333333333%;
	}
	
	.large-margin-collapse>.medium-2 {
		width: 16.6666666667%;
	}
	
	.large-margin-collapse>.medium-3 {
		width: 25%;
	}
	
	.large-margin-collapse>.medium-4 {
		width: 33.3333333333%;
	}
	
	.large-margin-collapse>.medium-5 {
		width: 41.6666666667%;
	}
	
	.large-margin-collapse>.medium-6 {
		width: 50%;
	}
	
	.large-margin-collapse>.medium-7 {
		width: 58.3333333333%;
	}
	
	.large-margin-collapse>.medium-8 {
		width: 66.6666666667%;
	}
	
	.large-margin-collapse>.medium-9 {
		width: 75%;
	}
	
	.large-margin-collapse>.medium-10 {
		width: 83.3333333333%;
	}
	
	.large-margin-collapse>.medium-11 {
		width: 91.6666666667%;
	}
	
	.large-margin-collapse>.medium-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.large-margin-collapse>.large-1 {
		width: 8.3333333333%;
	}
	
	.large-margin-collapse>.large-2 {
		width: 16.6666666667%;
	}
	
	.large-margin-collapse>.large-3 {
		width: 25%;
	}
	
	.large-margin-collapse>.large-4 {
		width: 33.3333333333%;
	}
	
	.large-margin-collapse>.large-5 {
		width: 41.6666666667%;
	}
	
	.large-margin-collapse>.large-6 {
		width: 50%;
	}
	
	.large-margin-collapse>.large-7 {
		width: 58.3333333333%;
	}
	
	.large-margin-collapse>.large-8 {
		width: 66.6666666667%;
	}
	
	.large-margin-collapse>.large-9 {
		width: 75%;
	}
	
	.large-margin-collapse>.large-10 {
		width: 83.3333333333%;
	}
	
	.large-margin-collapse>.large-11 {
		width: 91.6666666667%;
	}
	
	.large-margin-collapse>.large-12 {
		width: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.large-padding-collapse {
		margin-right: 0;
		margin-left: 0;
	}
	
	.large-padding-collapse>.cell {
		padding-right: 0;
		padding-left: 0;
	}
}

.small-offset-0 {
	margin-left: 0;
}

.grid-margin-x>.small-offset-0 {
	margin-left: calc(0% + .75rem);
}

.small-offset-1 {
	margin-left: 8.3333333333%;
}

.grid-margin-x>.small-offset-1 {
	margin-left: calc(8.3333333333% + .75rem);
}

.small-offset-2 {
	margin-left: 16.6666666667%;
}

.grid-margin-x>.small-offset-2 {
	margin-left: calc(16.6666666667% + .75rem);
}

.small-offset-3 {
	margin-left: 25%;
}

.grid-margin-x>.small-offset-3 {
	margin-left: calc(25% + .75rem);
}

.small-offset-4 {
	margin-left: 33.3333333333%;
}

.grid-margin-x>.small-offset-4 {
	margin-left: calc(33.3333333333% + .75rem);
}

.small-offset-5 {
	margin-left: 41.6666666667%;
}

.grid-margin-x>.small-offset-5 {
	margin-left: calc(41.6666666667% + .75rem);
}

.small-offset-6 {
	margin-left: 50%;
}

.grid-margin-x>.small-offset-6 {
	margin-left: calc(50% + .75rem);
}

.small-offset-7 {
	margin-left: 58.3333333333%;
}

.grid-margin-x>.small-offset-7 {
	margin-left: calc(58.3333333333% + .75rem);
}

.small-offset-8 {
	margin-left: 66.6666666667%;
}

.grid-margin-x>.small-offset-8 {
	margin-left: calc(66.6666666667% + .75rem);
}

.small-offset-9 {
	margin-left: 75%;
}

.grid-margin-x>.small-offset-9 {
	margin-left: calc(75% + .75rem);
}

.small-offset-10 {
	margin-left: 83.3333333333%;
}

.grid-margin-x>.small-offset-10 {
	margin-left: calc(83.3333333333% + .75rem);
}

.small-offset-11 {
	margin-left: 91.6666666667%;
}

.grid-margin-x>.small-offset-11 {
	margin-left: calc(91.6666666667% + .75rem);
}

@media print,screen and (min-width:48em) {
	.medium-offset-0 {
		margin-left: 0;
	}
	
	.grid-margin-x>.medium-offset-0 {
		margin-left: calc(0% + .75rem);
	}
	
	.medium-offset-1 {
		margin-left: 8.3333333333%;
	}
	
	.grid-margin-x>.medium-offset-1 {
		margin-left: calc(8.3333333333% + .75rem);
	}
	
	.medium-offset-2 {
		margin-left: 16.6666666667%;
	}
	
	.grid-margin-x>.medium-offset-2 {
		margin-left: calc(16.6666666667% + .75rem);
	}
	
	.medium-offset-3 {
		margin-left: 25%;
	}
	
	.grid-margin-x>.medium-offset-3 {
		margin-left: calc(25% + .75rem);
	}
	
	.medium-offset-4 {
		margin-left: 33.3333333333%;
	}
	
	.grid-margin-x>.medium-offset-4 {
		margin-left: calc(33.3333333333% + .75rem);
	}
	
	.medium-offset-5 {
		margin-left: 41.6666666667%;
	}
	
	.grid-margin-x>.medium-offset-5 {
		margin-left: calc(41.6666666667% + .75rem);
	}
	
	.medium-offset-6 {
		margin-left: 50%;
	}
	
	.grid-margin-x>.medium-offset-6 {
		margin-left: calc(50% + .75rem);
	}
	
	.medium-offset-7 {
		margin-left: 58.3333333333%;
	}
	
	.grid-margin-x>.medium-offset-7 {
		margin-left: calc(58.3333333333% + .75rem);
	}
	
	.medium-offset-8 {
		margin-left: 66.6666666667%;
	}
	
	.grid-margin-x>.medium-offset-8 {
		margin-left: calc(66.6666666667% + .75rem);
	}
	
	.medium-offset-9 {
		margin-left: 75%;
	}
	
	.grid-margin-x>.medium-offset-9 {
		margin-left: calc(75% + .75rem);
	}
	
	.medium-offset-10 {
		margin-left: 83.3333333333%;
	}
	
	.grid-margin-x>.medium-offset-10 {
		margin-left: calc(83.3333333333% + .75rem);
	}
	
	.medium-offset-11 {
		margin-left: 91.6666666667%;
	}
	
	.grid-margin-x>.medium-offset-11 {
		margin-left: calc(91.6666666667% + .75rem);
	}
}

@media print,screen and (min-width:64em) {
	.large-offset-0 {
		margin-left: 0;
	}
	
	.grid-margin-x>.large-offset-0 {
		margin-left: calc(0% + .75rem);
	}
	
	.large-offset-1 {
		margin-left: 8.3333333333%;
	}
	
	.grid-margin-x>.large-offset-1 {
		margin-left: calc(8.3333333333% + .75rem);
	}
	
	.large-offset-2 {
		margin-left: 16.6666666667%;
	}
	
	.grid-margin-x>.large-offset-2 {
		margin-left: calc(16.6666666667% + .75rem);
	}
	
	.large-offset-3 {
		margin-left: 25%;
	}
	
	.grid-margin-x>.large-offset-3 {
		margin-left: calc(25% + .75rem);
	}
	
	.large-offset-4 {
		margin-left: 33.3333333333%;
	}
	
	.grid-margin-x>.large-offset-4 {
		margin-left: calc(33.3333333333% + .75rem);
	}
	
	.large-offset-5 {
		margin-left: 41.6666666667%;
	}
	
	.grid-margin-x>.large-offset-5 {
		margin-left: calc(41.6666666667% + .75rem);
	}
	
	.large-offset-6 {
		margin-left: 50%;
	}
	
	.grid-margin-x>.large-offset-6 {
		margin-left: calc(50% + .75rem);
	}
	
	.large-offset-7 {
		margin-left: 58.3333333333%;
	}
	
	.grid-margin-x>.large-offset-7 {
		margin-left: calc(58.3333333333% + .75rem);
	}
	
	.large-offset-8 {
		margin-left: 66.6666666667%;
	}
	
	.grid-margin-x>.large-offset-8 {
		margin-left: calc(66.6666666667% + .75rem);
	}
	
	.large-offset-9 {
		margin-left: 75%;
	}
	
	.grid-margin-x>.large-offset-9 {
		margin-left: calc(75% + .75rem);
	}
	
	.large-offset-10 {
		margin-left: 83.3333333333%;
	}
	
	.grid-margin-x>.large-offset-10 {
		margin-left: calc(83.3333333333% + .75rem);
	}
	
	.large-offset-11 {
		margin-left: 91.6666666667%;
	}
	
	.grid-margin-x>.large-offset-11 {
		margin-left: calc(91.6666666667% + .75rem);
	}
}

.grid-y {
	display: flex;
	flex-flow: column nowrap;
}

.grid-y>.cell {
	height: auto;
	max-height: none;
}

.grid-y>.auto {
	height: auto;
}

.grid-y>.shrink {
	height: auto;
}

.grid-y>.small-1, .grid-y>.small-10, .grid-y>.small-11, .grid-y>.small-12, .grid-y>.small-2, .grid-y>.small-3, .grid-y>.small-4, .grid-y>.small-5, .grid-y>.small-6, .grid-y>.small-7, .grid-y>.small-8, .grid-y>.small-9, .grid-y>.small-full, .grid-y>.small-shrink {
	flex-basis: auto;
}

@media print,screen and (min-width:48em) {
	.grid-y>.medium-1, .grid-y>.medium-10, .grid-y>.medium-11, .grid-y>.medium-12, .grid-y>.medium-2, .grid-y>.medium-3, .grid-y>.medium-4, .grid-y>.medium-5, .grid-y>.medium-6, .grid-y>.medium-7, .grid-y>.medium-8, .grid-y>.medium-9, .grid-y>.medium-full, .grid-y>.medium-shrink {
		flex-basis: auto;
	}
}

@media print,screen and (min-width:64em) {
	.grid-y>.large-1, .grid-y>.large-10, .grid-y>.large-11, .grid-y>.large-12, .grid-y>.large-2, .grid-y>.large-3, .grid-y>.large-4, .grid-y>.large-5, .grid-y>.large-6, .grid-y>.large-7, .grid-y>.large-8, .grid-y>.large-9, .grid-y>.large-full, .grid-y>.large-shrink {
		flex-basis: auto;
	}
}

.grid-y>.small-1, .grid-y>.small-10, .grid-y>.small-11, .grid-y>.small-12, .grid-y>.small-2, .grid-y>.small-3, .grid-y>.small-4, .grid-y>.small-5, .grid-y>.small-6, .grid-y>.small-7, .grid-y>.small-8, .grid-y>.small-9 {
	flex: 0 0 auto;
}

.grid-y>.small-1 {
	height: 8.3333333333%;
}

.grid-y>.small-2 {
	height: 16.6666666667%;
}

.grid-y>.small-3 {
	height: 25%;
}

.grid-y>.small-4 {
	height: 33.3333333333%;
}

.grid-y>.small-5 {
	height: 41.6666666667%;
}

.grid-y>.small-6 {
	height: 50%;
}

.grid-y>.small-7 {
	height: 58.3333333333%;
}

.grid-y>.small-8 {
	height: 66.6666666667%;
}

.grid-y>.small-9 {
	height: 75%;
}

.grid-y>.small-10 {
	height: 83.3333333333%;
}

.grid-y>.small-11 {
	height: 91.6666666667%;
}

.grid-y>.small-12 {
	height: 100%;
}

@media print,screen and (min-width:48em) {
	.grid-y>.medium-auto {
		flex: 1 1 0px;
		height: auto;
	}
	
	.grid-y>.medium-1, .grid-y>.medium-10, .grid-y>.medium-11, .grid-y>.medium-12, .grid-y>.medium-2, .grid-y>.medium-3, .grid-y>.medium-4, .grid-y>.medium-5, .grid-y>.medium-6, .grid-y>.medium-7, .grid-y>.medium-8, .grid-y>.medium-9, .grid-y>.medium-shrink {
		flex: 0 0 auto;
	}
	
	.grid-y>.medium-shrink {
		height: auto;
	}
	
	.grid-y>.medium-1 {
		height: 8.3333333333%;
	}
	
	.grid-y>.medium-2 {
		height: 16.6666666667%;
	}
	
	.grid-y>.medium-3 {
		height: 25%;
	}
	
	.grid-y>.medium-4 {
		height: 33.3333333333%;
	}
	
	.grid-y>.medium-5 {
		height: 41.6666666667%;
	}
	
	.grid-y>.medium-6 {
		height: 50%;
	}
	
	.grid-y>.medium-7 {
		height: 58.3333333333%;
	}
	
	.grid-y>.medium-8 {
		height: 66.6666666667%;
	}
	
	.grid-y>.medium-9 {
		height: 75%;
	}
	
	.grid-y>.medium-10 {
		height: 83.3333333333%;
	}
	
	.grid-y>.medium-11 {
		height: 91.6666666667%;
	}
	
	.grid-y>.medium-12 {
		height: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.grid-y>.large-auto {
		flex: 1 1 0px;
		height: auto;
	}
	
	.grid-y>.large-1, .grid-y>.large-10, .grid-y>.large-11, .grid-y>.large-12, .grid-y>.large-2, .grid-y>.large-3, .grid-y>.large-4, .grid-y>.large-5, .grid-y>.large-6, .grid-y>.large-7, .grid-y>.large-8, .grid-y>.large-9, .grid-y>.large-shrink {
		flex: 0 0 auto;
	}
	
	.grid-y>.large-shrink {
		height: auto;
	}
	
	.grid-y>.large-1 {
		height: 8.3333333333%;
	}
	
	.grid-y>.large-2 {
		height: 16.6666666667%;
	}
	
	.grid-y>.large-3 {
		height: 25%;
	}
	
	.grid-y>.large-4 {
		height: 33.3333333333%;
	}
	
	.grid-y>.large-5 {
		height: 41.6666666667%;
	}
	
	.grid-y>.large-6 {
		height: 50%;
	}
	
	.grid-y>.large-7 {
		height: 58.3333333333%;
	}
	
	.grid-y>.large-8 {
		height: 66.6666666667%;
	}
	
	.grid-y>.large-9 {
		height: 75%;
	}
	
	.grid-y>.large-10 {
		height: 83.3333333333%;
	}
	
	.grid-y>.large-11 {
		height: 91.6666666667%;
	}
	
	.grid-y>.large-12 {
		height: 100%;
	}
}

.grid-padding-y .grid-padding-y {
	margin-top: -.75rem;
	margin-bottom: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-padding-y .grid-padding-y {
		margin-top: -.75rem;
		margin-bottom: -.75rem;
	}
}

.grid-padding-y>.cell {
	padding-top: .75rem;
	padding-bottom: .75rem;
}

@media print,screen and (min-width:48em) {
	.grid-padding-y>.cell {
		padding-top: .75rem;
		padding-bottom: .75rem;
	}
}

.grid-margin-y {
	margin-top: -.75rem;
	margin-bottom: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-y {
		margin-top: -.75rem;
		margin-bottom: -.75rem;
	}
}

.grid-margin-y>.cell {
	height: calc(100% - 1.5rem);
	margin-top: .75rem;
	margin-bottom: .75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-y>.cell {
		height: calc(100% - 1.5rem);
		margin-top: .75rem;
		margin-bottom: .75rem;
	}
}

.grid-margin-y>.auto {
	height: auto;
}

.grid-margin-y>.shrink {
	height: auto;
}

.grid-margin-y>.small-1 {
	height: calc(8.3333333333% - 1.5rem);
}

.grid-margin-y>.small-2 {
	height: calc(16.6666666667% - 1.5rem);
}

.grid-margin-y>.small-3 {
	height: calc(25% - 1.5rem);
}

.grid-margin-y>.small-4 {
	height: calc(33.3333333333% - 1.5rem);
}

.grid-margin-y>.small-5 {
	height: calc(41.6666666667% - 1.5rem);
}

.grid-margin-y>.small-6 {
	height: calc(50% - 1.5rem);
}

.grid-margin-y>.small-7 {
	height: calc(58.3333333333% - 1.5rem);
}

.grid-margin-y>.small-8 {
	height: calc(66.6666666667% - 1.5rem);
}

.grid-margin-y>.small-9 {
	height: calc(75% - 1.5rem);
}

.grid-margin-y>.small-10 {
	height: calc(83.3333333333% - 1.5rem);
}

.grid-margin-y>.small-11 {
	height: calc(91.6666666667% - 1.5rem);
}

.grid-margin-y>.small-12 {
	height: calc(100% - 1.5rem);
}

@media print,screen and (min-width:48em) {
	.grid-margin-y>.auto {
		height: auto;
	}
	
	.grid-margin-y>.shrink {
		height: auto;
	}
	
	.grid-margin-y>.small-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.small-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.small-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.small-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-12 {
		height: calc(100% - 1.5rem);
	}
	
	.grid-margin-y>.medium-auto {
		height: auto;
	}
	
	.grid-margin-y>.medium-shrink {
		height: auto;
	}
	
	.grid-margin-y>.medium-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.medium-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.medium-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.medium-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-12 {
		height: calc(100% - 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-margin-y>.large-auto {
		height: auto;
	}
	
	.grid-margin-y>.large-shrink {
		height: auto;
	}
	
	.grid-margin-y>.large-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.large-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.large-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.large-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-12 {
		height: calc(100% - 1.5rem);
	}
}

.grid-frame {
	overflow: hidden;
	position: relative;
	flex-wrap: nowrap;
	align-items: stretch;
	width: 100vw;
}

.cell .grid-frame {
	width: 100%;
}

.cell-block {
	overflow-x: auto;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
	overflow-y: auto;
	max-height: 100%;
	min-height: 100%;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
	display: flex;
	flex-direction: column;
	max-height: 100%;
}

.cell-block-container>.grid-x {
	max-height: 100%;
	flex-wrap: nowrap;
}

@media print,screen and (min-width:48em) {
	.medium-grid-frame {
		overflow: hidden;
		position: relative;
		flex-wrap: nowrap;
		align-items: stretch;
		width: 100vw;
	}
	
	.cell .medium-grid-frame {
		width: 100%;
	}
	
	.medium-cell-block {
		overflow-x: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	
	.medium-cell-block-container {
		display: flex;
		flex-direction: column;
		max-height: 100%;
	}
	
	.medium-cell-block-container>.grid-x {
		max-height: 100%;
		flex-wrap: nowrap;
	}
	
	.medium-cell-block-y {
		overflow-y: auto;
		max-height: 100%;
		min-height: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
}

@media print,screen and (min-width:64em) {
	.large-grid-frame {
		overflow: hidden;
		position: relative;
		flex-wrap: nowrap;
		align-items: stretch;
		width: 100vw;
	}
	
	.cell .large-grid-frame {
		width: 100%;
	}
	
	.large-cell-block {
		overflow-x: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	
	.large-cell-block-container {
		display: flex;
		flex-direction: column;
		max-height: 100%;
	}
	
	.large-cell-block-container>.grid-x {
		max-height: 100%;
		flex-wrap: nowrap;
	}
	
	.large-cell-block-y {
		overflow-y: auto;
		max-height: 100%;
		min-height: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
}

.grid-y.grid-frame {
	width: auto;
	overflow: hidden;
	position: relative;
	flex-wrap: nowrap;
	align-items: stretch;
	height: 100vh;
}

@media print,screen and (min-width:48em) {
	.grid-y.medium-grid-frame {
		width: auto;
		overflow: hidden;
		position: relative;
		flex-wrap: nowrap;
		align-items: stretch;
		height: 100vh;
	}
}

@media print,screen and (min-width:64em) {
	.grid-y.large-grid-frame {
		width: auto;
		overflow: hidden;
		position: relative;
		flex-wrap: nowrap;
		align-items: stretch;
		height: 100vh;
	}
}

.cell .grid-y.grid-frame {
	height: 100%;
}

@media print,screen and (min-width:48em) {
	.cell .grid-y.medium-grid-frame {
		height: 100%;
	}
}

@media print,screen and (min-width:64em) {
	.cell .grid-y.large-grid-frame {
		height: 100%;
	}
}

.grid-margin-y {
	margin-top: -.75rem;
	margin-bottom: -.75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-y {
		margin-top: -.75rem;
		margin-bottom: -.75rem;
	}
}

.grid-margin-y>.cell {
	height: calc(100% - 1.5rem);
	margin-top: .75rem;
	margin-bottom: .75rem;
}

@media print,screen and (min-width:48em) {
	.grid-margin-y>.cell {
		height: calc(100% - 1.5rem);
		margin-top: .75rem;
		margin-bottom: .75rem;
	}
}

.grid-margin-y>.auto {
	height: auto;
}

.grid-margin-y>.shrink {
	height: auto;
}

.grid-margin-y>.small-1 {
	height: calc(8.3333333333% - 1.5rem);
}

.grid-margin-y>.small-2 {
	height: calc(16.6666666667% - 1.5rem);
}

.grid-margin-y>.small-3 {
	height: calc(25% - 1.5rem);
}

.grid-margin-y>.small-4 {
	height: calc(33.3333333333% - 1.5rem);
}

.grid-margin-y>.small-5 {
	height: calc(41.6666666667% - 1.5rem);
}

.grid-margin-y>.small-6 {
	height: calc(50% - 1.5rem);
}

.grid-margin-y>.small-7 {
	height: calc(58.3333333333% - 1.5rem);
}

.grid-margin-y>.small-8 {
	height: calc(66.6666666667% - 1.5rem);
}

.grid-margin-y>.small-9 {
	height: calc(75% - 1.5rem);
}

.grid-margin-y>.small-10 {
	height: calc(83.3333333333% - 1.5rem);
}

.grid-margin-y>.small-11 {
	height: calc(91.6666666667% - 1.5rem);
}

.grid-margin-y>.small-12 {
	height: calc(100% - 1.5rem);
}

@media print,screen and (min-width:48em) {
	.grid-margin-y>.auto {
		height: auto;
	}
	
	.grid-margin-y>.shrink {
		height: auto;
	}
	
	.grid-margin-y>.small-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.small-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.small-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.small-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.small-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.small-12 {
		height: calc(100% - 1.5rem);
	}
	
	.grid-margin-y>.medium-auto {
		height: auto;
	}
	
	.grid-margin-y>.medium-shrink {
		height: auto;
	}
	
	.grid-margin-y>.medium-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.medium-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.medium-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.medium-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.medium-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.medium-12 {
		height: calc(100% - 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-margin-y>.large-auto {
		height: auto;
	}
	
	.grid-margin-y>.large-shrink {
		height: auto;
	}
	
	.grid-margin-y>.large-1 {
		height: calc(8.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-2 {
		height: calc(16.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-3 {
		height: calc(25% - 1.5rem);
	}
	
	.grid-margin-y>.large-4 {
		height: calc(33.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-5 {
		height: calc(41.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-6 {
		height: calc(50% - 1.5rem);
	}
	
	.grid-margin-y>.large-7 {
		height: calc(58.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-8 {
		height: calc(66.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-9 {
		height: calc(75% - 1.5rem);
	}
	
	.grid-margin-y>.large-10 {
		height: calc(83.3333333333% - 1.5rem);
	}
	
	.grid-margin-y>.large-11 {
		height: calc(91.6666666667% - 1.5rem);
	}
	
	.grid-margin-y>.large-12 {
		height: calc(100% - 1.5rem);
	}
}

.grid-frame.grid-margin-y {
	height: calc(100vh + 1.5rem);
}

@media print,screen and (min-width:48em) {
	.grid-frame.grid-margin-y {
		height: calc(100vh + 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-frame.grid-margin-y {
		height: calc(100vh + 1.5rem);
	}
}

@media print,screen and (min-width:48em) {
	.grid-margin-y.medium-grid-frame {
		height: calc(100vh + 1.5rem);
	}
}

@media print,screen and (min-width:64em) {
	.grid-margin-y.large-grid-frame {
		height: calc(100vh + 1.5rem);
	}
}

blockquote, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, li, ol, p, pre, td, th, ul {
	margin: 0;
	padding: 0;
}

p {
	margin-bottom: 1.25rem;
	font-size: inherit;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

em, i {
	font-style: italic;
	line-height: inherit;
}

b, strong {
	font-weight: 700;
	line-height: inherit;
}

small {
	font-size: 80%;
	line-height: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-weight: 100;
	color: inherit;
	text-rendering: optimizeLegibility;
}

.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
	line-height: 0;
	color: #333;
}

.h1, h1 {
	font-size: 1.3125rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

.h2, h2 {
	font-size: 1rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

.h3, h3 {
	font-size: 1rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

.h4, h4 {
	font-size: 1.125rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

.h5, h5 {
	font-size: 1.0625rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

.h6, h6 {
	font-size: 1rem;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: .5rem;
}

@media print,screen and (min-width:48em) {
	.h1, h1 {
		font-size: 2.5rem;
	}
	
	.h2, h2 {
		font-size: 1.25rem;
	}
	
	.h3, h3 {
		font-size: 1rem;
	}
	
	.h4, h4 {
		font-size: 1.5625rem;
	}
	
	.h5, h5 {
		font-size: 1.25rem;
	}
	
	.h6, h6 {
		font-size: 1rem;
	}
}

a {
	line-height: inherit;
	color: #005e9d;
	text-decoration: none;
	cursor: pointer;
}

a:focus, a:hover {
	color: #005187;
}

a img {
	border: 0;
}

hr {
	clear: both;
	max-width: 74.375rem;
	height: 0;
	margin: 1.25rem auto;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #7f7f7f;
	border-left: 0;
}

dl, ol, ul {
	margin-bottom: 1.25rem;
	list-style-position: outside;
	line-height: 1.6;
}

li {
	font-size: inherit;
}

ul {
	margin-left: 1.25rem;
	list-style-type: disc;
}

ol {
	margin-left: 1.25rem;
}

ol ol, ol ul, ul ol, ul ul {
	margin-left: 1.25rem;
	margin-bottom: 0;
}

dl {
	margin-bottom: 1rem;
}

dl dt {
	margin-bottom: .3rem;
	font-weight: 700;
}

blockquote {
	margin: 0 0 1.25rem;
	padding: .5625rem 1.25rem 0 1.1875rem;
	border-left: 1px solid #7f7f7f;
}

blockquote, blockquote p {
	line-height: 1.6;
	color: #8a8a8a;
}

abbr, abbr[title] {
	border-bottom: 1px dotted #0a0a0a;
	cursor: help;
	text-decoration: none;
}

figure {
	margin: 0;
}

kbd {
	margin: 0;
	padding: .125rem .25rem 0;
	background-color: #d9d9d9;
	font-family: Consolas, "Liberation Mono", Courier, monospace;
	color: #0a0a0a;
}

.subheader {
	margin-top: .2rem;
	margin-bottom: .5rem;
	font-weight: 400;
	line-height: 1.4;
	color: #8a8a8a;
}

.lead {
	font-size: 125%;
	line-height: 1.6;
}

.stat {
	font-size: 2.5rem;
	line-height: 1;
}

p+.stat {
	margin-top: -1rem;
}

ol.no-bullet, ul.no-bullet {
	margin-left: 0;
	list-style: none;
}

.cite-block, cite {
	display: block;
	color: #8a8a8a;
	font-size: .8125rem;
}

.cite-block:before, cite:before {
	content: "— ";
}

.code-inline, code {
	border: 1px solid #7f7f7f;
	background-color: #d9d9d9;
	font-family: Consolas, "Liberation Mono", Courier, monospace;
	font-weight: 400;
	color: #0a0a0a;
	display: inline;
	max-width: 100%;
	word-wrap: break-word;
	padding: .125rem .3125rem .0625rem;
}

.code-block {
	border: 1px solid #7f7f7f;
	background-color: #d9d9d9;
	font-family: Consolas, "Liberation Mono", Courier, monospace;
	font-weight: 400;
	color: #0a0a0a;
	display: block;
	overflow: auto;
	white-space: pre;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

@media print,screen and (min-width:48em) {
	.medium-text-left {
		text-align: left;
	}
	
	.medium-text-right {
		text-align: right;
	}
	
	.medium-text-center {
		text-align: center;
	}
	
	.medium-text-justify {
		text-align: justify;
	}
}

@media print,screen and (min-width:64em) {
	.large-text-left {
		text-align: left;
	}
	
	.large-text-right {
		text-align: right;
	}
	
	.large-text-center {
		text-align: center;
	}
	
	.large-text-justify {
		text-align: justify;
	}
}

.show-for-print {
	display: none !important;
}

@media print {
	* {
		background: 0 0 !important;
		color: #000 !important;
		color-adjust: economy;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	
	.show-for-print {
		display: block !important;
	}
	
	.hide-for-print {
		display: none !important;
	}
	
	table.show-for-print {
		display: table !important;
	}
	
	thead.show-for-print {
		display: table-header-group !important;
	}
	
	tbody.show-for-print {
		display: table-row-group !important;
	}
	
	tr.show-for-print {
		display: table-row !important;
	}
	
	td.show-for-print {
		display: table-cell !important;
	}
	
	th.show-for-print {
		display: table-cell !important;
	}
	
	a, a:visited {
		text-decoration: underline;
	}
	
	a[href]:after {
		content: " (" attr(href) ")";
	}
	
	.ir a:after, a[href^="#"]:after, a[href^="javascript:"]:after {
		content: "";
	}
	
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	
	blockquote, pre {
		border: 1px solid #8a8a8a;
		page-break-inside: avoid;
	}
	
	thead {
		display: table-header-group;
	}
	
	img, tr {
		page-break-inside: avoid;
	}
	
	img {
		max-width: 100% !important;
	}
	
	@page {
		margin: .5cm;
	}
	
	h2, h3, p {
		orphans: 3;
		widows: 3;
	}
	
	h2, h3 {
		page-break-after: avoid;
	}
	
	.print-break-inside {
		page-break-inside: auto;
	}
}

.button, .wp-block-button .wp-block-button__link {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 1rem 0;
	padding: .85em 1em;
	border: 1px solid transparent;
	border-radius: 0;
	transition: background-color .25s ease-out, color .25s ease-out;
	font-family: inherit;
	font-size: .9rem;
	-webkit-appearance: none;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.wp-block-button [data-whatinput=mouse] .wp-block-button__link, [data-whatinput=mouse] .button, [data-whatinput=mouse] .wp-block-button .wp-block-button__link {
	outline: 0;
}

.button.tiny, .wp-block-button .tiny.wp-block-button__link {
	font-size: .6rem;
}

.button.small, .wp-block-button .small.wp-block-button__link {
	font-size: .75rem;
}

.button.large, .wp-block-button .large.wp-block-button__link {
	font-size: 1.25rem;
}

.button.expanded, .wp-block-button .expanded.wp-block-button__link {
	display: block;
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.button, .button.disabled, .button.disabled:focus, .button.disabled:hover, .button[disabled], .button[disabled]:focus, .button[disabled]:hover, .wp-block-button .wp-block-button__link {
	background-color: #005e9d;
	color: #fff;
}

.button:focus, .button:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link:hover {
	background-color: #005085;
	color: #fff;
}

.button.primary, .button.primary.disabled, .button.primary.disabled:focus, .button.primary.disabled:hover, .button.primary[disabled], .button.primary[disabled]:focus, .button.primary[disabled]:hover, .wp-block-button .primary.wp-block-button__link {
	background-color: #005e9d;
	color: #fff;
}

.button.primary:focus, .button.primary:hover, .wp-block-button .primary.wp-block-button__link:focus, .wp-block-button .primary.wp-block-button__link:hover {
	background-color: #004b7e;
	color: #fff;
}

.button.secondary, .button.secondary.disabled, .button.secondary.disabled:focus, .button.secondary.disabled:hover, .button.secondary[disabled], .button.secondary[disabled]:focus, .button.secondary[disabled]:hover, .wp-block-button .secondary.wp-block-button__link {
	background-color: #003b6a;
	color: #fff;
}

.button.secondary:focus, .button.secondary:hover, .wp-block-button .secondary.wp-block-button__link:focus, .wp-block-button .secondary.wp-block-button__link:hover {
	background-color: #002f55;
	color: #fff;
}

.button.tertiary, .button.tertiary.disabled, .button.tertiary.disabled:focus, .button.tertiary.disabled:hover, .button.tertiary[disabled], .button.tertiary[disabled]:focus, .button.tertiary[disabled]:hover, .wp-block-button .tertiary.wp-block-button__link {
	background-color: #007ac1;
	color: #fff;
}

.button.tertiary:focus, .button.tertiary:hover, .wp-block-button .tertiary.wp-block-button__link:focus, .wp-block-button .tertiary.wp-block-button__link:hover {
	background-color: #00629a;
	color: #fff;
}

.button.success, .button.success.disabled, .button.success.disabled:focus, .button.success.disabled:hover, .button.success[disabled], .button.success[disabled]:focus, .button.success[disabled]:hover, .wp-block-button .success.wp-block-button__link {
	background-color: #3adb76;
	color: #0a0a0a;
}

.button.success:focus, .button.success:hover, .wp-block-button .success.wp-block-button__link:focus, .wp-block-button .success.wp-block-button__link:hover {
	background-color: #22bb5b;
	color: #0a0a0a;
}

.button.warning, .button.warning.disabled, .button.warning.disabled:focus, .button.warning.disabled:hover, .button.warning[disabled], .button.warning[disabled]:focus, .button.warning[disabled]:hover, .wp-block-button .warning.wp-block-button__link {
	background-color: #ffae00;
	color: #0a0a0a;
}

.button.warning:focus, .button.warning:hover, .wp-block-button .warning.wp-block-button__link:focus, .wp-block-button .warning.wp-block-button__link:hover {
	background-color: #cc8b00;
	color: #0a0a0a;
}

.button.alert, .button.alert.disabled, .button.alert.disabled:focus, .button.alert.disabled:hover, .button.alert[disabled], .button.alert[disabled]:focus, .button.alert[disabled]:hover, .wp-block-button .alert.wp-block-button__link {
	background-color: #cc4b37;
	color: #fff;
}

.button.alert:focus, .button.alert:hover, .wp-block-button .alert.wp-block-button__link:focus, .wp-block-button .alert.wp-block-button__link:hover {
	background-color: #a53b2a;
	color: #fff;
}

.button.hollow, .button.hollow.disabled, .button.hollow.disabled:focus, .button.hollow.disabled:hover, .button.hollow:focus, .button.hollow:hover, .button.hollow[disabled], .button.hollow[disabled]:focus, .button.hollow[disabled]:hover, .wp-block-button .hollow.wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
}

.button.hollow, .button.hollow.disabled, .button.hollow.disabled:focus, .button.hollow.disabled:hover, .button.hollow[disabled], .button.hollow[disabled]:focus, .button.hollow[disabled]:hover, .wp-block-button .hollow.wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link {
	border: 1px solid #005e9d;
	color: #005e9d;
}

.button.hollow:focus, .button.hollow:hover, .wp-block-button .hollow.wp-block-button__link:focus, .wp-block-button .hollow.wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: #002f4f;
	color: #002f4f;
}

.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary.disabled:focus, .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled], .button.hollow.primary[disabled]:focus, .button.hollow.primary[disabled]:hover, .wp-block-button .hollow.primary.wp-block-button__link, .wp-block-button.is-style-outline .primary.wp-block-button__link {
	border: 1px solid #005e9d;
	color: #005e9d;
}

.button.hollow.primary:focus, .button.hollow.primary:hover, .wp-block-button .hollow.primary.wp-block-button__link:focus, .wp-block-button .hollow.primary.wp-block-button__link:hover, .wp-block-button.is-style-outline .primary.wp-block-button__link:focus, .wp-block-button.is-style-outline .primary.wp-block-button__link:hover {
	border-color: #002f4f;
	color: #002f4f;
}

.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary.disabled:focus, .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled], .button.hollow.secondary[disabled]:focus, .button.hollow.secondary[disabled]:hover, .wp-block-button .hollow.secondary.wp-block-button__link, .wp-block-button.is-style-outline .secondary.wp-block-button__link {
	border: 1px solid #003b6a;
	color: #003b6a;
}

.button.hollow.secondary:focus, .button.hollow.secondary:hover, .wp-block-button .hollow.secondary.wp-block-button__link:focus, .wp-block-button .hollow.secondary.wp-block-button__link:hover, .wp-block-button.is-style-outline .secondary.wp-block-button__link:focus, .wp-block-button.is-style-outline .secondary.wp-block-button__link:hover {
	border-color: #001e35;
	color: #001e35;
}

.button.hollow.tertiary, .button.hollow.tertiary.disabled, .button.hollow.tertiary.disabled:focus, .button.hollow.tertiary.disabled:hover, .button.hollow.tertiary[disabled], .button.hollow.tertiary[disabled]:focus, .button.hollow.tertiary[disabled]:hover, .wp-block-button .hollow.tertiary.wp-block-button__link, .wp-block-button.is-style-outline .tertiary.wp-block-button__link {
	border: 1px solid #007ac1;
	color: #007ac1;
}

.button.hollow.tertiary:focus, .button.hollow.tertiary:hover, .wp-block-button .hollow.tertiary.wp-block-button__link:focus, .wp-block-button .hollow.tertiary.wp-block-button__link:hover, .wp-block-button.is-style-outline .tertiary.wp-block-button__link:focus, .wp-block-button.is-style-outline .tertiary.wp-block-button__link:hover {
	border-color: #003d61;
	color: #003d61;
}

.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success.disabled:focus, .button.hollow.success.disabled:hover, .button.hollow.success[disabled], .button.hollow.success[disabled]:focus, .button.hollow.success[disabled]:hover, .wp-block-button .hollow.success.wp-block-button__link, .wp-block-button.is-style-outline .success.wp-block-button__link {
	border: 1px solid #3adb76;
	color: #3adb76;
}

.button.hollow.success:focus, .button.hollow.success:hover, .wp-block-button .hollow.success.wp-block-button__link:focus, .wp-block-button .hollow.success.wp-block-button__link:hover, .wp-block-button.is-style-outline .success.wp-block-button__link:focus, .wp-block-button.is-style-outline .success.wp-block-button__link:hover {
	border-color: #157539;
	color: #157539;
}

.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning.disabled:focus, .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled], .button.hollow.warning[disabled]:focus, .button.hollow.warning[disabled]:hover, .wp-block-button .hollow.warning.wp-block-button__link, .wp-block-button.is-style-outline .warning.wp-block-button__link {
	border: 1px solid #ffae00;
	color: #ffae00;
}

.button.hollow.warning:focus, .button.hollow.warning:hover, .wp-block-button .hollow.warning.wp-block-button__link:focus, .wp-block-button .hollow.warning.wp-block-button__link:hover, .wp-block-button.is-style-outline .warning.wp-block-button__link:focus, .wp-block-button.is-style-outline .warning.wp-block-button__link:hover {
	border-color: #805700;
	color: #805700;
}

.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert.disabled:focus, .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled], .button.hollow.alert[disabled]:focus, .button.hollow.alert[disabled]:hover, .wp-block-button .hollow.alert.wp-block-button__link, .wp-block-button.is-style-outline .alert.wp-block-button__link {
	border: 1px solid #cc4b37;
	color: #cc4b37;
}

.button.hollow.alert:focus, .button.hollow.alert:hover, .wp-block-button .hollow.alert.wp-block-button__link:focus, .wp-block-button .hollow.alert.wp-block-button__link:hover, .wp-block-button.is-style-outline .alert.wp-block-button__link:focus, .wp-block-button.is-style-outline .alert.wp-block-button__link:hover {
	border-color: #67251a;
	color: #67251a;
}

.button.clear, .button.clear.disabled, .button.clear.disabled:focus, .button.clear.disabled:hover, .button.clear:focus, .button.clear:hover, .button.clear[disabled], .button.clear[disabled]:focus, .button.clear[disabled]:hover, .wp-block-button .clear.wp-block-button__link {
	border-color: transparent;
	background-color: transparent;
}

.button.clear, .button.clear.disabled, .button.clear.disabled:focus, .button.clear.disabled:hover, .button.clear[disabled], .button.clear[disabled]:focus, .button.clear[disabled]:hover, .wp-block-button .clear.wp-block-button__link {
	color: #005e9d;
}

.button.clear:focus, .button.clear:hover, .wp-block-button .clear.wp-block-button__link:focus, .wp-block-button .clear.wp-block-button__link:hover {
	color: #002f4f;
}

.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary.disabled:focus, .button.clear.primary.disabled:hover, .button.clear.primary[disabled], .button.clear.primary[disabled]:focus, .button.clear.primary[disabled]:hover, .wp-block-button .clear.primary.wp-block-button__link {
	color: #005e9d;
}

.button.clear.primary:focus, .button.clear.primary:hover, .wp-block-button .clear.primary.wp-block-button__link:focus, .wp-block-button .clear.primary.wp-block-button__link:hover {
	color: #002f4f;
}

.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary.disabled:focus, .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled], .button.clear.secondary[disabled]:focus, .button.clear.secondary[disabled]:hover, .wp-block-button .clear.secondary.wp-block-button__link {
	color: #003b6a;
}

.button.clear.secondary:focus, .button.clear.secondary:hover, .wp-block-button .clear.secondary.wp-block-button__link:focus, .wp-block-button .clear.secondary.wp-block-button__link:hover {
	color: #001e35;
}

.button.clear.tertiary, .button.clear.tertiary.disabled, .button.clear.tertiary.disabled:focus, .button.clear.tertiary.disabled:hover, .button.clear.tertiary[disabled], .button.clear.tertiary[disabled]:focus, .button.clear.tertiary[disabled]:hover, .wp-block-button .clear.tertiary.wp-block-button__link {
	color: #007ac1;
}

.button.clear.tertiary:focus, .button.clear.tertiary:hover, .wp-block-button .clear.tertiary.wp-block-button__link:focus, .wp-block-button .clear.tertiary.wp-block-button__link:hover {
	color: #003d61;
}

.button.clear.success, .button.clear.success.disabled, .button.clear.success.disabled:focus, .button.clear.success.disabled:hover, .button.clear.success[disabled], .button.clear.success[disabled]:focus, .button.clear.success[disabled]:hover, .wp-block-button .clear.success.wp-block-button__link {
	color: #3adb76;
}

.button.clear.success:focus, .button.clear.success:hover, .wp-block-button .clear.success.wp-block-button__link:focus, .wp-block-button .clear.success.wp-block-button__link:hover {
	color: #157539;
}

.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning.disabled:focus, .button.clear.warning.disabled:hover, .button.clear.warning[disabled], .button.clear.warning[disabled]:focus, .button.clear.warning[disabled]:hover, .wp-block-button .clear.warning.wp-block-button__link {
	color: #ffae00;
}

.button.clear.warning:focus, .button.clear.warning:hover, .wp-block-button .clear.warning.wp-block-button__link:focus, .wp-block-button .clear.warning.wp-block-button__link:hover {
	color: #805700;
}

.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert.disabled:focus, .button.clear.alert.disabled:hover, .button.clear.alert[disabled], .button.clear.alert[disabled]:focus, .button.clear.alert[disabled]:hover, .wp-block-button .clear.alert.wp-block-button__link {
	color: #cc4b37;
}

.button.clear.alert:focus, .button.clear.alert:hover, .wp-block-button .clear.alert.wp-block-button__link:focus, .wp-block-button .clear.alert.wp-block-button__link:hover {
	color: #67251a;
}

.button.disabled, .button[disabled], .wp-block-button .disabled.wp-block-button__link, .wp-block-button [disabled].wp-block-button__link {
	opacity: .25;
	cursor: not-allowed;
}

.button.dropdown::after, .wp-block-button .dropdown.wp-block-button__link::after {
	display: block;
	display: inline-block;
	width: 0;
	height: 0;
	border: inset .4em;
	content: "";
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #fff transparent transparent;
	position: relative;
	top: .4em;
	float: right;
	margin-left: 1em;
}

.button.dropdown.clear::after, .button.dropdown.hollow::after, .wp-block-button .dropdown.clear.wp-block-button__link::after, .wp-block-button .dropdown.hollow.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.wp-block-button__link::after {
	border-top-color: #005e9d;
}

.button.dropdown.clear.primary::after, .button.dropdown.hollow.primary::after, .wp-block-button .dropdown.clear.primary.wp-block-button__link::after, .wp-block-button .dropdown.hollow.primary.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.primary.wp-block-button__link::after {
	border-top-color: #005e9d;
}

.button.dropdown.clear.secondary::after, .button.dropdown.hollow.secondary::after, .wp-block-button .dropdown.clear.secondary.wp-block-button__link::after, .wp-block-button .dropdown.hollow.secondary.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.secondary.wp-block-button__link::after {
	border-top-color: #003b6a;
}

.button.dropdown.clear.tertiary::after, .button.dropdown.hollow.tertiary::after, .wp-block-button .dropdown.clear.tertiary.wp-block-button__link::after, .wp-block-button .dropdown.hollow.tertiary.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.tertiary.wp-block-button__link::after {
	border-top-color: #007ac1;
}

.button.dropdown.clear.success::after, .button.dropdown.hollow.success::after, .wp-block-button .dropdown.clear.success.wp-block-button__link::after, .wp-block-button .dropdown.hollow.success.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.success.wp-block-button__link::after {
	border-top-color: #3adb76;
}

.button.dropdown.clear.warning::after, .button.dropdown.hollow.warning::after, .wp-block-button .dropdown.clear.warning.wp-block-button__link::after, .wp-block-button .dropdown.hollow.warning.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.warning.wp-block-button__link::after {
	border-top-color: #ffae00;
}

.button.dropdown.clear.alert::after, .button.dropdown.hollow.alert::after, .wp-block-button .dropdown.clear.alert.wp-block-button__link::after, .wp-block-button .dropdown.hollow.alert.wp-block-button__link::after, .wp-block-button.is-style-outline .dropdown.alert.wp-block-button__link::after {
	border-top-color: #cc4b37;
}

.button.arrow-only::after, .wp-block-button .arrow-only.wp-block-button__link::after {
	top: -.1em;
	float: none;
	margin-left: 0;
}

.wp-block-button a.wp-block-button__link:focus, .wp-block-button a.wp-block-button__link:hover, a.button:focus, a.button:hover {
	text-decoration: none;
}

[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 2.4375rem;
	margin: 0 0 1rem;
	padding: .5rem;
	border: 1px solid #7f7f7f;
	border-radius: 0;
	background-color: #fff;
	box-shadow: inset 0 1px 2px rgba(10, 10, 10, .1);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #0a0a0a;
	transition: box-shadow .5s, border-color .25s ease-in-out;
	appearance: none;
}

[type=color]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus, [type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus, [type=time]:focus, [type=url]:focus, [type=week]:focus, textarea:focus {
	outline: 0;
	border: 1px solid #8a8a8a;
	background-color: #fff;
	box-shadow: 0 0 5px #7f7f7f;
	transition: box-shadow .5s, border-color .25s ease-in-out;
}

textarea {
	max-width: 100%;
}

textarea[rows] {
	height: auto;
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
	background-color: #d9d9d9;
	cursor: not-allowed;
}

[type=button], [type=submit] {
	appearance: none;
	border-radius: 0;
}

input[type=search] {
	box-sizing: border-box;
}

::placeholder {
	color: #333;
}

[type=checkbox], [type=file], [type=radio] {
	margin: 0 0 1rem;
}

[type=checkbox]+label, [type=radio]+label {
	display: inline-block;
	vertical-align: baseline;
	margin-left: .5rem;
	margin-right: 1rem;
	margin-bottom: 0;
}

[type=checkbox]+label[for], [type=radio]+label[for] {
	cursor: pointer;
}

label>[type=checkbox], label>[type=radio] {
	margin-right: .5rem;
}

[type=file] {
	width: 100%;
}

label {
	display: block;
	margin: 0;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.8;
	color: #0a0a0a;
}

label.middle {
	margin: 0 0 1rem;
	padding: .5625rem 0;
}

.help-text {
	margin-top: -.5rem;
	font-size: .8125rem;
	font-style: italic;
	color: #0a0a0a;
}

.input-group {
	display: flex;
	width: 100%;
	margin-bottom: 1rem;
	align-items: stretch;
}

.input-group>:first-child, .input-group>:first-child.input-group-button>* {
	border-radius: 0;
}

.input-group>:last-child, .input-group>:last-child.input-group-button>* {
	border-radius: 0;
}

.input-group-button, .input-group-button a, .input-group-button button, .input-group-button input, .input-group-button label, .input-group-field, .input-group-label {
	margin: 0;
	white-space: nowrap;
}

.input-group-label {
	padding: 0 1rem;
	border: 1px solid #7f7f7f;
	background: #d9d9d9;
	color: #0a0a0a;
	text-align: center;
	white-space: nowrap;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.input-group-label:first-child {
	border-right: 0;
}

.input-group-label:last-child {
	border-left: 0;
}

.input-group-field {
	border-radius: 0;
	flex: 1 1 0px;
	min-width: 0;
}

.input-group-button {
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
	display: flex;
	flex: 0 0 auto;
}

.input-group-button a, .input-group-button button, .input-group-button input, .input-group-button label {
	align-self: stretch;
	height: auto;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 1rem;
}

fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

legend {
	max-width: 100%;
	margin-bottom: .5rem;
}

.fieldset {
	margin: 1.125rem 0;
	padding: 1.25rem;
	border: 1px solid #7f7f7f;
}

.fieldset legend {
	margin: 0;
	margin-left: -.1875rem;
	padding: 0 .1875rem;
}

select {
	height: 2.4375rem;
	margin: 0 0 1rem;
	padding: .5rem;
	appearance: none;
	border: 1px solid #7f7f7f;
	border-radius: 0;
	background-color: #fff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #0a0a0a;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' version=\'1.1\' width=\'32\' height=\'24\' viewBox=\'0 0 32 24\'><polygon points=\'0,0 32,0 16,24\' style=\'fill: rgb%28138, 138, 138%29\'></polygon></svg>");
	background-origin: content-box;
	background-position: right -1rem center;
	background-repeat: no-repeat;
	background-size: 9px 6px;
	padding-right: 1.5rem;
	transition: box-shadow .5s, border-color .25s ease-in-out;
}

select.nitro-lazy {
	background-image: none !important;
}

@media screen and (min-width:0\0) {
	select {
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
	}
	
	select.nitro-lazy {
		background-image: none !important;
	}
}

select:focus {
	outline: 0;
	border: 1px solid #8a8a8a;
	background-color: #fff;
	box-shadow: 0 0 5px #7f7f7f;
	transition: box-shadow .5s, border-color .25s ease-in-out;
}

select:disabled {
	background-color: #d9d9d9;
	cursor: not-allowed;
}

select::-ms-expand {
	display: none;
}

select[multiple] {
	height: auto;
	background-image: none;
}

select[multiple].nitro-lazy {
	background-image: none !important;
}

select:not([multiple]) {
	padding-top: 0;
	padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
	border-color: #cc4b37;
	background-color: #faedeb;
}

.is-invalid-input:not(:focus)::placeholder {
	color: #cc4b37;
}

.is-invalid-label {
	color: #cc4b37;
}

.form-error {
	display: none;
	margin-top: -.5rem;
	margin-bottom: 1rem;
	font-size: .75rem;
	font-weight: 700;
	color: #cc4b37;
}

.form-error.is-visible {
	display: block;
}

.accordion {
	margin-left: 0;
	background: #fff;
	list-style-type: none;
}

.accordion[disabled] .accordion-title {
	cursor: not-allowed;
}

.accordion-item:first-child>:first-child {
	border-radius: 0;
}

.accordion-item:last-child>:last-child {
	border-radius: 0;
}

.accordion-title {
	position: relative;
	display: block;
	padding: 1.25rem 1rem;
	border: 1px solid #d9d9d9;
	border-bottom: 0;
	font-size: .75rem;
	line-height: 1;
	color: #005e9d;
}

:last-child:not(.is-active)>.accordion-title {
	border-bottom: 1px solid #d9d9d9;
	border-radius: 0;
}

.accordion-title:focus, .accordion-title:hover {
	background-color: #d9d9d9;
}

.accordion-title::before {
	position: absolute;
	top: 50%;
	right: 1rem;
	margin-top: -.5rem;
	content: "+";
}

.is-active>.accordion-title::before {
	content: "–";
}

.accordion-content {
	display: none;
	padding: 1rem;
	border: 1px solid #d9d9d9;
	border-bottom: 0;
	background-color: #fff;
	color: #333;
}

:last-child>.accordion-content:last-child {
	border-bottom: 1px solid #d9d9d9;
}

.accordion-menu li {
	width: 100%;
}

.accordion-menu a {
	padding: .7rem 1rem;
}

.accordion-menu .is-accordion-submenu a {
	padding: .7rem 1rem;
}

.accordion-menu .nested.is-accordion-submenu {
	margin-right: 0;
	margin-left: 1rem;
}

.accordion-menu.align-right .nested.is-accordion-submenu {
	margin-right: 1rem;
	margin-left: 0;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a {
	position: relative;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #fff transparent transparent;
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 1rem;
}

.accordion-menu.align-left .is-accordion-submenu-parent>a::after {
	right: 1rem;
	left: auto;
}

.accordion-menu.align-right .is-accordion-submenu-parent>a::after {
	right: auto;
	left: 1rem;
}

.accordion-menu .is-accordion-submenu-parent[aria-expanded=true]>a::after {
	transform: rotate(180deg);
	transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
	position: relative;
}

.has-submenu-toggle>a {
	margin-right: 40px;
}

.submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.submenu-toggle::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #fff transparent transparent;
	top: 0;
	bottom: 0;
	margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
	transform: scaleY(-1);
	transform-origin: 50% 50%;
}

.submenu-toggle-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.badge {
	display: inline-block;
	min-width: 2.1em;
	padding: .3em;
	border-radius: 50%;
	font-size: .6rem;
	text-align: center;
	background: #005e9d;
	color: #fff;
}

.badge.primary {
	background: #005e9d;
	color: #fff;
}

.badge.secondary {
	background: #003b6a;
	color: #fff;
}

.badge.tertiary {
	background: #007ac1;
	color: #fff;
}

.badge.success {
	background: #3adb76;
	color: #0a0a0a;
}

.badge.warning {
	background: #ffae00;
	color: #0a0a0a;
}

.badge.alert {
	background: #cc4b37;
	color: #fff;
}

.breadcrumbs {
	margin: 0 0 1rem 0;
	list-style: none;
}

.breadcrumbs::after, .breadcrumbs::before {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.breadcrumbs::after {
	clear: both;
}

.breadcrumbs li {
	float: left;
	font-size: .6875rem;
	color: #0a0a0a;
	cursor: default;
	text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
	position: relative;
	margin: 0 .75rem;
	opacity: 1;
	content: "/";
	color: #333;
}

.breadcrumbs a {
	color: #005e9d;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs .disabled {
	color: #7f7f7f;
	cursor: not-allowed;
}

.button-group {
	margin-bottom: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	flex-grow: 1;
}

.button-group::after, .button-group::before {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.button-group::after {
	clear: both;
}

.button-group::after, .button-group::before {
	display: none;
}

.button-group .button, .button-group .wp-block-button .wp-block-button__link, .wp-block-button .button-group .wp-block-button__link {
	margin: 0;
	margin-right: 1px;
	margin-bottom: 1px;
	font-size: .9rem;
	flex: 0 0 auto;
}

.button-group .button:last-child, .button-group .wp-block-button .wp-block-button__link:last-child, .wp-block-button .button-group .wp-block-button__link:last-child {
	margin-right: 0;
}

.button-group.tiny .button, .button-group.tiny .wp-block-button .wp-block-button__link, .wp-block-button .button-group.tiny .wp-block-button__link {
	font-size: .6rem;
}

.button-group.small .button, .button-group.small .wp-block-button .wp-block-button__link, .wp-block-button .button-group.small .wp-block-button__link {
	font-size: .75rem;
}

.button-group.large .button, .button-group.large .wp-block-button .wp-block-button__link, .wp-block-button .button-group.large .wp-block-button__link {
	font-size: 1.25rem;
}

.button-group.expanded .button, .button-group.expanded .wp-block-button .wp-block-button__link, .wp-block-button .button-group.expanded .wp-block-button__link {
	flex: 1 1 0px;
	margin-right: 0;
}

.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button.disabled:focus, .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled], .button-group.primary .button[disabled]:focus, .button-group.primary .button[disabled]:hover, .button-group.primary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.primary .wp-block-button__link {
	background-color: #005e9d;
	color: #fff;
}

.button-group.primary .button:focus, .button-group.primary .button:hover, .button-group.primary .wp-block-button .wp-block-button__link:focus, .button-group.primary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.primary .wp-block-button__link:focus, .wp-block-button .button-group.primary .wp-block-button__link:hover {
	background-color: #004b7e;
	color: #fff;
}

.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button.disabled:focus, .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled], .button-group.secondary .button[disabled]:focus, .button-group.secondary .button[disabled]:hover, .button-group.secondary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.secondary .wp-block-button__link {
	background-color: #003b6a;
	color: #fff;
}

.button-group.secondary .button:focus, .button-group.secondary .button:hover, .button-group.secondary .wp-block-button .wp-block-button__link:focus, .button-group.secondary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.secondary .wp-block-button__link:focus, .wp-block-button .button-group.secondary .wp-block-button__link:hover {
	background-color: #002f55;
	color: #fff;
}

.button-group.tertiary .button, .button-group.tertiary .button.disabled, .button-group.tertiary .button.disabled:focus, .button-group.tertiary .button.disabled:hover, .button-group.tertiary .button[disabled], .button-group.tertiary .button[disabled]:focus, .button-group.tertiary .button[disabled]:hover, .button-group.tertiary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.tertiary .wp-block-button__link {
	background-color: #007ac1;
	color: #fff;
}

.button-group.tertiary .button:focus, .button-group.tertiary .button:hover, .button-group.tertiary .wp-block-button .wp-block-button__link:focus, .button-group.tertiary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.tertiary .wp-block-button__link:focus, .wp-block-button .button-group.tertiary .wp-block-button__link:hover {
	background-color: #00629a;
	color: #fff;
}

.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button.disabled:focus, .button-group.success .button.disabled:hover, .button-group.success .button[disabled], .button-group.success .button[disabled]:focus, .button-group.success .button[disabled]:hover, .button-group.success .wp-block-button .wp-block-button__link, .wp-block-button .button-group.success .wp-block-button__link {
	background-color: #3adb76;
	color: #0a0a0a;
}

.button-group.success .button:focus, .button-group.success .button:hover, .button-group.success .wp-block-button .wp-block-button__link:focus, .button-group.success .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.success .wp-block-button__link:focus, .wp-block-button .button-group.success .wp-block-button__link:hover {
	background-color: #22bb5b;
	color: #0a0a0a;
}

.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button.disabled:focus, .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled], .button-group.warning .button[disabled]:focus, .button-group.warning .button[disabled]:hover, .button-group.warning .wp-block-button .wp-block-button__link, .wp-block-button .button-group.warning .wp-block-button__link {
	background-color: #ffae00;
	color: #0a0a0a;
}

.button-group.warning .button:focus, .button-group.warning .button:hover, .button-group.warning .wp-block-button .wp-block-button__link:focus, .button-group.warning .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.warning .wp-block-button__link:focus, .wp-block-button .button-group.warning .wp-block-button__link:hover {
	background-color: #cc8b00;
	color: #0a0a0a;
}

.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button.disabled:focus, .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled], .button-group.alert .button[disabled]:focus, .button-group.alert .button[disabled]:hover, .button-group.alert .wp-block-button .wp-block-button__link, .wp-block-button .button-group.alert .wp-block-button__link {
	background-color: #cc4b37;
	color: #fff;
}

.button-group.alert .button:focus, .button-group.alert .button:hover, .button-group.alert .wp-block-button .wp-block-button__link:focus, .button-group.alert .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.alert .wp-block-button__link:focus, .wp-block-button .button-group.alert .wp-block-button__link:hover {
	background-color: #a53b2a;
	color: #fff;
}

.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:focus, .button-group.hollow .button.disabled:hover, .button-group.hollow .button:focus, .button-group.hollow .button:hover, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:focus, .button-group.hollow .button[disabled]:hover, .button-group.hollow .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.wp-block-button__link .wp-block-button__link {
	background-color: transparent;
}

.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:focus, .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:focus, .button-group.hollow .button[disabled]:hover, .button-group.hollow .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.wp-block-button__link .wp-block-button__link {
	border: 1px solid #005e9d;
	color: #005e9d;
}

.button-group.hollow .button:focus, .button-group.hollow .button:hover, .button-group.hollow .wp-block-button .wp-block-button__link:focus, .button-group.hollow .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .wp-block-button__link:focus, .wp-block-button .button-group.hollow .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .wp-block-button__link:hover {
	border-color: #002f4f;
	color: #002f4f;
}

.button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary[disabled]:focus, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .wp-block-button .primary.wp-block-button__link, .button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .primary.wp-block-button__link, .wp-block-button .button-group.hollow.primary .wp-block-button__link, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.primary, .wp-block-button.is-style-outline .button-group.wp-block-button__link .primary.wp-block-button__link {
	border: 1px solid #005e9d;
	color: #005e9d;
}

.button-group.hollow .button.primary:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .wp-block-button .primary.wp-block-button__link:focus, .button-group.hollow .wp-block-button .primary.wp-block-button__link:hover, .button-group.hollow.primary .button:focus, .button-group.hollow.primary .button:hover, .button-group.hollow.primary .wp-block-button .wp-block-button__link:focus, .button-group.hollow.primary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .primary.wp-block-button__link:focus, .wp-block-button .button-group.hollow .primary.wp-block-button__link:hover, .wp-block-button .button-group.hollow.primary .wp-block-button__link:focus, .wp-block-button .button-group.hollow.primary .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.primary.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.primary:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.primary:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .primary.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .primary.wp-block-button__link:hover {
	border-color: #002f4f;
	color: #002f4f;
}

.button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary[disabled]:focus, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .wp-block-button .secondary.wp-block-button__link, .button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .secondary.wp-block-button__link, .wp-block-button .button-group.hollow.secondary .wp-block-button__link, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.secondary, .wp-block-button.is-style-outline .button-group.wp-block-button__link .secondary.wp-block-button__link {
	border: 1px solid #003b6a;
	color: #003b6a;
}

.button-group.hollow .button.secondary:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .wp-block-button .secondary.wp-block-button__link:focus, .button-group.hollow .wp-block-button .secondary.wp-block-button__link:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .wp-block-button .wp-block-button__link:focus, .button-group.hollow.secondary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .secondary.wp-block-button__link:focus, .wp-block-button .button-group.hollow .secondary.wp-block-button__link:hover, .wp-block-button .button-group.hollow.secondary .wp-block-button__link:focus, .wp-block-button .button-group.hollow.secondary .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.secondary.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.secondary:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.secondary:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .secondary.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .secondary.wp-block-button__link:hover {
	border-color: #001e35;
	color: #001e35;
}

.button-group.hollow .button.tertiary, .button-group.hollow .button.tertiary.disabled, .button-group.hollow .button.tertiary.disabled:focus, .button-group.hollow .button.tertiary.disabled:hover, .button-group.hollow .button.tertiary[disabled], .button-group.hollow .button.tertiary[disabled]:focus, .button-group.hollow .button.tertiary[disabled]:hover, .button-group.hollow .wp-block-button .tertiary.wp-block-button__link, .button-group.hollow.tertiary .button, .button-group.hollow.tertiary .button.disabled, .button-group.hollow.tertiary .button.disabled:focus, .button-group.hollow.tertiary .button.disabled:hover, .button-group.hollow.tertiary .button[disabled], .button-group.hollow.tertiary .button[disabled]:focus, .button-group.hollow.tertiary .button[disabled]:hover, .button-group.hollow.tertiary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .tertiary.wp-block-button__link, .wp-block-button .button-group.hollow.tertiary .wp-block-button__link, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.tertiary, .wp-block-button.is-style-outline .button-group.wp-block-button__link .tertiary.wp-block-button__link {
	border: 1px solid #007ac1;
	color: #007ac1;
}

.button-group.hollow .button.tertiary:focus, .button-group.hollow .button.tertiary:hover, .button-group.hollow .wp-block-button .tertiary.wp-block-button__link:focus, .button-group.hollow .wp-block-button .tertiary.wp-block-button__link:hover, .button-group.hollow.tertiary .button:focus, .button-group.hollow.tertiary .button:hover, .button-group.hollow.tertiary .wp-block-button .wp-block-button__link:focus, .button-group.hollow.tertiary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .tertiary.wp-block-button__link:focus, .wp-block-button .button-group.hollow .tertiary.wp-block-button__link:hover, .wp-block-button .button-group.hollow.tertiary .wp-block-button__link:focus, .wp-block-button .button-group.hollow.tertiary .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.tertiary.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.tertiary:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.tertiary:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .tertiary.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .tertiary.wp-block-button__link:hover {
	border-color: #003d61;
	color: #003d61;
}

.button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success[disabled]:focus, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .wp-block-button .success.wp-block-button__link, .button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button[disabled]:focus, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .success.wp-block-button__link, .wp-block-button .button-group.hollow.success .wp-block-button__link, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.success, .wp-block-button.is-style-outline .button-group.wp-block-button__link .success.wp-block-button__link {
	border: 1px solid #3adb76;
	color: #3adb76;
}

.button-group.hollow .button.success:focus, .button-group.hollow .button.success:hover, .button-group.hollow .wp-block-button .success.wp-block-button__link:focus, .button-group.hollow .wp-block-button .success.wp-block-button__link:hover, .button-group.hollow.success .button:focus, .button-group.hollow.success .button:hover, .button-group.hollow.success .wp-block-button .wp-block-button__link:focus, .button-group.hollow.success .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .success.wp-block-button__link:focus, .wp-block-button .button-group.hollow .success.wp-block-button__link:hover, .wp-block-button .button-group.hollow.success .wp-block-button__link:focus, .wp-block-button .button-group.hollow.success .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.success.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.success:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.success:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .success.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .success.wp-block-button__link:hover {
	border-color: #157539;
	color: #157539;
}

.button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning[disabled]:focus, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .wp-block-button .warning.wp-block-button__link, .button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .warning.wp-block-button__link, .wp-block-button .button-group.hollow.warning .wp-block-button__link, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.warning, .wp-block-button.is-style-outline .button-group.wp-block-button__link .warning.wp-block-button__link {
	border: 1px solid #ffae00;
	color: #ffae00;
}

.button-group.hollow .button.warning:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .wp-block-button .warning.wp-block-button__link:focus, .button-group.hollow .wp-block-button .warning.wp-block-button__link:hover, .button-group.hollow.warning .button:focus, .button-group.hollow.warning .button:hover, .button-group.hollow.warning .wp-block-button .wp-block-button__link:focus, .button-group.hollow.warning .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .warning.wp-block-button__link:focus, .wp-block-button .button-group.hollow .warning.wp-block-button__link:hover, .wp-block-button .button-group.hollow.warning .wp-block-button__link:focus, .wp-block-button .button-group.hollow.warning .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.warning.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.warning:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.warning:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .warning.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .warning.wp-block-button__link:hover {
	border-color: #805700;
	color: #805700;
}

.button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert[disabled]:focus, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .wp-block-button .alert.wp-block-button__link, .button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .wp-block-button .wp-block-button__link, .wp-block-button .button-group.hollow .alert.wp-block-button__link, .wp-block-button .button-group.hollow.alert .wp-block-button__link, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .button, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .alert.wp-block-button__link, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.alert {
	border: 1px solid #cc4b37;
	color: #cc4b37;
}

.button-group.hollow .button.alert:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .wp-block-button .alert.wp-block-button__link:focus, .button-group.hollow .wp-block-button .alert.wp-block-button__link:hover, .button-group.hollow.alert .button:focus, .button-group.hollow.alert .button:hover, .button-group.hollow.alert .wp-block-button .wp-block-button__link:focus, .button-group.hollow.alert .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.hollow .alert.wp-block-button__link:focus, .wp-block-button .button-group.hollow .alert.wp-block-button__link:hover, .wp-block-button .button-group.hollow.alert .wp-block-button__link:focus, .wp-block-button .button-group.hollow.alert .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .button:focus, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .button:hover, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.alert.wp-block-button__link .wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .alert.wp-block-button__link:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .alert.wp-block-button__link:hover, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.alert:focus, .wp-block-button.is-style-outline .button-group.wp-block-button__link .button.alert:hover {
	border-color: #67251a;
	color: #67251a;
}

.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button.disabled:focus, .button-group.clear .button.disabled:hover, .button-group.clear .button:focus, .button-group.clear .button:hover, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:focus, .button-group.clear .button[disabled]:hover, .button-group.clear .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .wp-block-button__link {
	border-color: transparent;
	background-color: transparent;
}

.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button.disabled:focus, .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:focus, .button-group.clear .button[disabled]:hover, .button-group.clear .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .wp-block-button__link {
	color: #005e9d;
}

.button-group.clear .button:focus, .button-group.clear .button:hover, .button-group.clear .wp-block-button .wp-block-button__link:focus, .button-group.clear .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .wp-block-button__link:focus, .wp-block-button .button-group.clear .wp-block-button__link:hover {
	color: #002f4f;
}

.button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary[disabled]:focus, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .wp-block-button .primary.wp-block-button__link, .button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button[disabled]:focus, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .primary.wp-block-button__link, .wp-block-button .button-group.clear.primary .wp-block-button__link {
	color: #005e9d;
}

.button-group.clear .button.primary:focus, .button-group.clear .button.primary:hover, .button-group.clear .wp-block-button .primary.wp-block-button__link:focus, .button-group.clear .wp-block-button .primary.wp-block-button__link:hover, .button-group.clear.primary .button:focus, .button-group.clear.primary .button:hover, .button-group.clear.primary .wp-block-button .wp-block-button__link:focus, .button-group.clear.primary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .primary.wp-block-button__link:focus, .wp-block-button .button-group.clear .primary.wp-block-button__link:hover, .wp-block-button .button-group.clear.primary .wp-block-button__link:focus, .wp-block-button .button-group.clear.primary .wp-block-button__link:hover {
	color: #002f4f;
}

.button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary[disabled]:focus, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .wp-block-button .secondary.wp-block-button__link, .button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button[disabled]:focus, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .secondary.wp-block-button__link, .wp-block-button .button-group.clear.secondary .wp-block-button__link {
	color: #003b6a;
}

.button-group.clear .button.secondary:focus, .button-group.clear .button.secondary:hover, .button-group.clear .wp-block-button .secondary.wp-block-button__link:focus, .button-group.clear .wp-block-button .secondary.wp-block-button__link:hover, .button-group.clear.secondary .button:focus, .button-group.clear.secondary .button:hover, .button-group.clear.secondary .wp-block-button .wp-block-button__link:focus, .button-group.clear.secondary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .secondary.wp-block-button__link:focus, .wp-block-button .button-group.clear .secondary.wp-block-button__link:hover, .wp-block-button .button-group.clear.secondary .wp-block-button__link:focus, .wp-block-button .button-group.clear.secondary .wp-block-button__link:hover {
	color: #001e35;
}

.button-group.clear .button.tertiary, .button-group.clear .button.tertiary.disabled, .button-group.clear .button.tertiary.disabled:focus, .button-group.clear .button.tertiary.disabled:hover, .button-group.clear .button.tertiary[disabled], .button-group.clear .button.tertiary[disabled]:focus, .button-group.clear .button.tertiary[disabled]:hover, .button-group.clear .wp-block-button .tertiary.wp-block-button__link, .button-group.clear.tertiary .button, .button-group.clear.tertiary .button.disabled, .button-group.clear.tertiary .button.disabled:focus, .button-group.clear.tertiary .button.disabled:hover, .button-group.clear.tertiary .button[disabled], .button-group.clear.tertiary .button[disabled]:focus, .button-group.clear.tertiary .button[disabled]:hover, .button-group.clear.tertiary .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .tertiary.wp-block-button__link, .wp-block-button .button-group.clear.tertiary .wp-block-button__link {
	color: #007ac1;
}

.button-group.clear .button.tertiary:focus, .button-group.clear .button.tertiary:hover, .button-group.clear .wp-block-button .tertiary.wp-block-button__link:focus, .button-group.clear .wp-block-button .tertiary.wp-block-button__link:hover, .button-group.clear.tertiary .button:focus, .button-group.clear.tertiary .button:hover, .button-group.clear.tertiary .wp-block-button .wp-block-button__link:focus, .button-group.clear.tertiary .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .tertiary.wp-block-button__link:focus, .wp-block-button .button-group.clear .tertiary.wp-block-button__link:hover, .wp-block-button .button-group.clear.tertiary .wp-block-button__link:focus, .wp-block-button .button-group.clear.tertiary .wp-block-button__link:hover {
	color: #003d61;
}

.button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled], .button-group.clear .button.success[disabled]:focus, .button-group.clear .button.success[disabled]:hover, .button-group.clear .wp-block-button .success.wp-block-button__link, .button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled], .button-group.clear.success .button[disabled]:focus, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .success.wp-block-button__link, .wp-block-button .button-group.clear.success .wp-block-button__link {
	color: #3adb76;
}

.button-group.clear .button.success:focus, .button-group.clear .button.success:hover, .button-group.clear .wp-block-button .success.wp-block-button__link:focus, .button-group.clear .wp-block-button .success.wp-block-button__link:hover, .button-group.clear.success .button:focus, .button-group.clear.success .button:hover, .button-group.clear.success .wp-block-button .wp-block-button__link:focus, .button-group.clear.success .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .success.wp-block-button__link:focus, .wp-block-button .button-group.clear .success.wp-block-button__link:hover, .wp-block-button .button-group.clear.success .wp-block-button__link:focus, .wp-block-button .button-group.clear.success .wp-block-button__link:hover {
	color: #157539;
}

.button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning[disabled]:focus, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .wp-block-button .warning.wp-block-button__link, .button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button[disabled]:focus, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .warning.wp-block-button__link, .wp-block-button .button-group.clear.warning .wp-block-button__link {
	color: #ffae00;
}

.button-group.clear .button.warning:focus, .button-group.clear .button.warning:hover, .button-group.clear .wp-block-button .warning.wp-block-button__link:focus, .button-group.clear .wp-block-button .warning.wp-block-button__link:hover, .button-group.clear.warning .button:focus, .button-group.clear.warning .button:hover, .button-group.clear.warning .wp-block-button .wp-block-button__link:focus, .button-group.clear.warning .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .warning.wp-block-button__link:focus, .wp-block-button .button-group.clear .warning.wp-block-button__link:hover, .wp-block-button .button-group.clear.warning .wp-block-button__link:focus, .wp-block-button .button-group.clear.warning .wp-block-button__link:hover {
	color: #805700;
}

.button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert[disabled]:focus, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .wp-block-button .alert.wp-block-button__link, .button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button[disabled]:focus, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .wp-block-button .wp-block-button__link, .wp-block-button .button-group.clear .alert.wp-block-button__link, .wp-block-button .button-group.clear.alert .wp-block-button__link {
	color: #cc4b37;
}

.button-group.clear .button.alert:focus, .button-group.clear .button.alert:hover, .button-group.clear .wp-block-button .alert.wp-block-button__link:focus, .button-group.clear .wp-block-button .alert.wp-block-button__link:hover, .button-group.clear.alert .button:focus, .button-group.clear.alert .button:hover, .button-group.clear.alert .wp-block-button .wp-block-button__link:focus, .button-group.clear.alert .wp-block-button .wp-block-button__link:hover, .wp-block-button .button-group.clear .alert.wp-block-button__link:focus, .wp-block-button .button-group.clear .alert.wp-block-button__link:hover, .wp-block-button .button-group.clear.alert .wp-block-button__link:focus, .wp-block-button .button-group.clear.alert .wp-block-button__link:hover {
	color: #67251a;
}

.button-group.no-gaps .button, .button-group.no-gaps .wp-block-button .wp-block-button__link, .wp-block-button .button-group.no-gaps .wp-block-button__link {
	margin-right: -.0625rem;
}

.button-group.no-gaps .button+.button, .button-group.no-gaps .wp-block-button .button+.wp-block-button__link, .button-group.no-gaps .wp-block-button .wp-block-button__link+.button, .button-group.no-gaps .wp-block-button .wp-block-button__link+.wp-block-button__link, .wp-block-button .button-group.no-gaps .button+.wp-block-button__link, .wp-block-button .button-group.no-gaps .wp-block-button__link+.button, .wp-block-button .button-group.no-gaps .wp-block-button__link+.wp-block-button__link {
	border-left-color: transparent;
}

.button-group.stacked, .button-group.stacked-for-medium, .button-group.stacked-for-small {
	flex-wrap: wrap;
}

.button-group.stacked .button, .button-group.stacked .wp-block-button .wp-block-button__link, .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .wp-block-button .wp-block-button__link, .button-group.stacked-for-small .button, .button-group.stacked-for-small .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked .wp-block-button__link, .wp-block-button .button-group.stacked-for-medium .wp-block-button__link, .wp-block-button .button-group.stacked-for-small .wp-block-button__link {
	flex: 0 0 100%;
}

.button-group.stacked .button:last-child, .button-group.stacked .wp-block-button .wp-block-button__link:last-child, .button-group.stacked-for-medium .button:last-child, .button-group.stacked-for-medium .wp-block-button .wp-block-button__link:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-small .wp-block-button .wp-block-button__link:last-child, .wp-block-button .button-group.stacked .wp-block-button__link:last-child, .wp-block-button .button-group.stacked-for-medium .wp-block-button__link:last-child, .wp-block-button .button-group.stacked-for-small .wp-block-button__link:last-child {
	margin-bottom: 0;
}

.button-group.stacked-for-medium.expanded .button, .button-group.stacked-for-medium.expanded .wp-block-button .wp-block-button__link, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .wp-block-button .wp-block-button__link, .button-group.stacked.expanded .button, .button-group.stacked.expanded .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked-for-medium.expanded .wp-block-button__link, .wp-block-button .button-group.stacked-for-small.expanded .wp-block-button__link, .wp-block-button .button-group.stacked.expanded .wp-block-button__link {
	flex: 1 1 0px;
	margin-right: 0;
}

@media print,screen and (min-width:48em) {
	.button-group.stacked-for-small .button, .button-group.stacked-for-small .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked-for-small .wp-block-button__link {
		flex: 0 0 auto;
		margin-bottom: 0;
	}
}

@media print,screen and (min-width:64em) {
	.button-group.stacked-for-medium .button, .button-group.stacked-for-medium .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked-for-medium .wp-block-button__link {
		flex: 0 0 auto;
		margin-bottom: 0;
	}
}

@media print,screen and (max-width:47.99875em) {
	.button-group.stacked-for-small.expanded {
		display: block;
	}
	
	.button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked-for-small.expanded .wp-block-button__link {
		display: block;
		margin-right: 0;
	}
}

@media print,screen and (max-width:63.99875em) {
	.button-group.stacked-for-medium.expanded {
		display: block;
	}
	
	.button-group.stacked-for-medium.expanded .button, .button-group.stacked-for-medium.expanded .wp-block-button .wp-block-button__link, .wp-block-button .button-group.stacked-for-medium.expanded .wp-block-button__link {
		display: block;
		margin-right: 0;
	}
}

.callout {
	position: relative;
	margin: 0 0 1rem 0;
	padding: 1rem;
	border: 1px solid rgba(10, 10, 10, .25);
	border-radius: 0;
	background-color: #fff;
	color: #333;
}

.callout>:first-child {
	margin-top: 0;
}

.callout>:last-child {
	margin-bottom: 0;
}

.callout.primary {
	background-color: #caeaff;
	color: #333;
}

.callout.secondary {
	background-color: #c2e4ff;
	color: #333;
}

.callout.tertiary {
	background-color: #cfeeff;
	color: #333;
}

.callout.success {
	background-color: #e1faea;
	color: #333;
}

.callout.warning {
	background-color: #fff3d9;
	color: #333;
}

.callout.alert {
	background-color: #f7e4e1;
	color: #333;
}

.callout.small {
	padding-top: .5rem;
	padding-right: .5rem;
	padding-bottom: .5rem;
	padding-left: .5rem;
}

.callout.large {
	padding-top: 3rem;
	padding-right: 3rem;
	padding-bottom: 3rem;
	padding-left: 3rem;
}

.card {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-bottom: 1rem;
	border: 1px solid #d9d9d9;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
	color: #333;
}

.card>:last-child {
	margin-bottom: 0;
}

.card-divider {
	display: flex;
	flex: 0 1 auto;
	padding: 1rem;
	background: #d9d9d9;
}

.card-divider>:last-child {
	margin-bottom: 0;
}

.card-section {
	flex: 1 0 auto;
	padding: 1rem;
}

.card-section>:last-child {
	margin-bottom: 0;
}

.card-image {
	min-height: 1px;
}

.close-button {
	position: absolute;
	z-index: 10;
	color: #8a8a8a;
	cursor: pointer;
}

[data-whatinput=mouse] .close-button {
	outline: 0;
}

.close-button:focus, .close-button:hover {
	color: #0a0a0a;
}

.close-button.small {
	right: .66rem;
	top: .33em;
	font-size: 1.5em;
	line-height: 1;
}

.close-button, .close-button.medium {
	right: 1rem;
	top: .5rem;
	font-size: 2em;
	line-height: 1;
}

.menu {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

[data-whatinput=mouse] .menu li {
	outline: 0;
}

.menu .button, .menu .wp-block-button .wp-block-button__link, .menu a, .wp-block-button .menu .wp-block-button__link {
	line-height: 1;
	text-decoration: none;
	display: block;
	padding: .7rem 1rem;
}

.menu a, .menu button, .menu input, .menu select {
	margin-bottom: 0;
}

.menu input {
	display: inline-block;
}

.menu, .menu.horizontal {
	flex-wrap: wrap;
	flex-direction: row;
}

.menu.vertical {
	flex-wrap: nowrap;
	flex-direction: column;
}

.menu.expanded li {
	flex: 1 1 0px;
}

.menu.simple {
	align-items: center;
}

.menu.simple li+li {
	margin-left: 1rem;
}

.menu.simple a {
	padding: 0;
}

@media print,screen and (min-width:48em) {
	.menu.medium-horizontal {
		flex-wrap: wrap;
		flex-direction: row;
	}
	
	.menu.medium-vertical {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	
	.menu.medium-expanded li {
		flex: 1 1 0px;
	}
	
	.menu.medium-simple li {
		flex: 1 1 0px;
	}
}

@media print,screen and (min-width:64em) {
	.menu.large-horizontal {
		flex-wrap: wrap;
		flex-direction: row;
	}
	
	.menu.large-vertical {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	
	.menu.large-expanded li {
		flex: 1 1 0px;
	}
	
	.menu.large-simple li {
		flex: 1 1 0px;
	}
}

.menu.nested {
	margin-right: 0;
	margin-left: 1rem;
}

.menu.icons a {
	display: flex;
}

.menu.icon-bottom a, .menu.icon-left a, .menu.icon-right a, .menu.icon-top a {
	display: flex;
}

.menu.icon-left li a {
	flex-flow: row nowrap;
}

.menu.icon-left li a i, .menu.icon-left li a img, .menu.icon-left li a svg {
	margin-right: .25rem;
}

.menu.icon-right li a {
	flex-flow: row nowrap;
}

.menu.icon-right li a i, .menu.icon-right li a img, .menu.icon-right li a svg {
	margin-left: .25rem;
}

.menu.icon-top li a {
	flex-flow: column nowrap;
}

.menu.icon-top li a i, .menu.icon-top li a img, .menu.icon-top li a svg {
	align-self: stretch;
	margin-bottom: .25rem;
	text-align: center;
}

.menu.icon-bottom li a {
	flex-flow: column nowrap;
}

.menu.icon-bottom li a i, .menu.icon-bottom li a img, .menu.icon-bottom li a svg {
	align-self: stretch;
	margin-bottom: .25rem;
	text-align: center;
}

.menu .is-active>a {
	background: #005e9d;
	color: #fff;
}

.menu .active>a {
	background: #005e9d;
	color: #fff;
}

.menu.align-left {
	justify-content: flex-start;
}

.menu.align-right li {
	display: flex;
	justify-content: flex-end;
}

.menu.align-right li .submenu li {
	justify-content: flex-start;
}

.menu.align-right.vertical li {
	display: block;
	text-align: right;
}

.menu.align-right.vertical li .submenu li {
	text-align: right;
}

.menu.align-right .nested {
	margin-right: 1rem;
	margin-left: 0;
}

.menu.align-center li {
	display: flex;
	justify-content: center;
}

.menu.align-center li .submenu li {
	justify-content: flex-start;
}

.menu .menu-text {
	padding: .7rem 1rem;
	font-weight: 700;
	line-height: 1;
	color: inherit;
}

.menu-centered>.menu {
	justify-content: center;
}

.menu-centered>.menu li {
	display: flex;
	justify-content: center;
}

.menu-centered>.menu li .submenu li {
	justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
	display: none;
}

.menu-icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 16px;
	cursor: pointer;
}

.menu-icon::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
	content: "";
}

.menu-icon:hover::after {
	background: #7f7f7f;
	box-shadow: 0 7px 0 #7f7f7f, 0 14px 0 #7f7f7f;
}

.menu-icon.dark {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 16px;
	cursor: pointer;
}

.menu-icon.dark::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #0a0a0a;
	box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
	content: "";
}

.menu-icon.dark:hover::after {
	background: #8a8a8a;
	box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
	position: relative;
	overflow: hidden;
}

.is-drilldown li {
	display: block;
}

.is-drilldown.animate-height {
	transition: height .5s;
}

.drilldown a {
	padding: .7rem 1rem;
	background: #fff;
}

.drilldown .is-drilldown-submenu {
	position: absolute;
	top: 0;
	left: 100%;
	z-index: -1;
	width: 100%;
	background: #fff;
	transition: transform .15s linear;
}

.drilldown .is-drilldown-submenu.is-active {
	z-index: 1;
	display: block;
	transform: translateX(-100%);
}

.drilldown .is-drilldown-submenu.is-closing {
	transform: translateX(100%);
}

.drilldown .is-drilldown-submenu a {
	padding: .7rem 1rem;
}

.drilldown .nested.is-drilldown-submenu {
	margin-right: 0;
	margin-left: 0;
}

.drilldown .drilldown-submenu-cover-previous {
	min-height: 100%;
}

.drilldown .is-drilldown-submenu-parent>a {
	position: relative;
}

.drilldown .is-drilldown-submenu-parent>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-right-width: 0;
	border-left-style: solid;
	border-color: transparent transparent transparent #005e9d;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	right: 1rem;
}

.drilldown.align-left .is-drilldown-submenu-parent>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-right-width: 0;
	border-left-style: solid;
	border-color: transparent transparent transparent #005e9d;
	right: 1rem;
	left: auto;
}

.drilldown.align-right .is-drilldown-submenu-parent>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-left-width: 0;
	border-right-style: solid;
	border-color: transparent #005e9d transparent transparent;
	right: auto;
	left: 1rem;
}

.drilldown .js-drilldown-back>a::before {
	display: block;
	display: inline-block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-left-width: 0;
	border-right-style: solid;
	border-color: transparent #005e9d transparent transparent;
	vertical-align: middle;
	margin-right: .75rem;
}

.dropdown-pane {
	position: absolute;
	z-index: 10;
	display: none;
	width: 300px;
	padding: 1rem;
	visibility: hidden;
	border: 1px solid #7f7f7f;
	border-radius: 0;
	background-color: #fff;
	font-size: 1rem;
}

.dropdown-pane.is-opening {
	display: block;
}

.dropdown-pane.is-open {
	display: block;
	visibility: visible;
}

.dropdown-pane.tiny {
	width: 100px;
}

.dropdown-pane.small {
	width: 200px;
}

.dropdown-pane.large {
	width: 400px;
}

.dropdown.menu>li.opens-left>.is-dropdown-submenu {
	top: 100%;
	right: 0;
	left: auto;
}

.dropdown.menu>li.opens-right>.is-dropdown-submenu {
	top: 100%;
	right: auto;
	left: 0;
}

.dropdown.menu>li.is-dropdown-submenu-parent>a {
	position: relative;
	padding-right: 1.5rem;
}

.dropdown.menu>li.is-dropdown-submenu-parent>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #005e9d transparent transparent;
	right: 5px;
	left: auto;
	margin-top: -3px;
}

[data-whatinput=mouse] .dropdown.menu a {
	outline: 0;
}

.dropdown.menu>li>a {
	padding: .7rem 1rem;
}

.dropdown.menu>li.is-active>a {
	background: 0 0;
	color: #005e9d;
}

.no-js .dropdown.menu ul {
	display: none;
}

.dropdown.menu .nested.is-dropdown-submenu {
	margin-right: 0;
	margin-left: 0;
}

.dropdown.menu.vertical>li .is-dropdown-submenu {
	top: 0;
}

.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu {
	top: 0;
	right: 100%;
	left: auto;
}

.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu {
	right: auto;
	left: 100%;
}

.dropdown.menu.vertical>li>a::after {
	right: 14px;
}

.dropdown.menu.vertical>li.opens-left>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-left-width: 0;
	border-right-style: solid;
	border-color: transparent #005e9d transparent transparent;
	right: auto;
	left: 5px;
}

.dropdown.menu.vertical>li.opens-right>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-right-width: 0;
	border-left-style: solid;
	border-color: transparent transparent transparent #005e9d;
}

@media print,screen and (min-width:48em) {
	.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu {
		top: 100%;
		right: 0;
		left: auto;
	}
	
	.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu {
		top: 100%;
		right: auto;
		left: 0;
	}
	
	.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a {
		position: relative;
		padding-right: 1.5rem;
	}
	
	.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-bottom-width: 0;
		border-top-style: solid;
		border-color: #005e9d transparent transparent;
		right: 5px;
		left: auto;
		margin-top: -3px;
	}
	
	.dropdown.menu.medium-vertical>li .is-dropdown-submenu {
		top: 0;
	}
	
	.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu {
		top: 0;
		right: 100%;
		left: auto;
	}
	
	.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu {
		right: auto;
		left: 100%;
	}
	
	.dropdown.menu.medium-vertical>li>a::after {
		right: 14px;
	}
	
	.dropdown.menu.medium-vertical>li.opens-left>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-left-width: 0;
		border-right-style: solid;
		border-color: transparent #005e9d transparent transparent;
		right: auto;
		left: 5px;
	}
	
	.dropdown.menu.medium-vertical>li.opens-right>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-right-width: 0;
		border-left-style: solid;
		border-color: transparent transparent transparent #005e9d;
	}
}

@media print,screen and (min-width:64em) {
	.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu {
		top: 100%;
		right: 0;
		left: auto;
	}
	
	.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu {
		top: 100%;
		right: auto;
		left: 0;
	}
	
	.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a {
		position: relative;
		padding-right: 1.5rem;
	}
	
	.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-bottom-width: 0;
		border-top-style: solid;
		border-color: #005e9d transparent transparent;
		right: 5px;
		left: auto;
		margin-top: -3px;
	}
	
	.dropdown.menu.large-vertical>li .is-dropdown-submenu {
		top: 0;
	}
	
	.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu {
		top: 0;
		right: 100%;
		left: auto;
	}
	
	.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu {
		right: auto;
		left: 100%;
	}
	
	.dropdown.menu.large-vertical>li>a::after {
		right: 14px;
	}
	
	.dropdown.menu.large-vertical>li.opens-left>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-left-width: 0;
		border-right-style: solid;
		border-color: transparent #005e9d transparent transparent;
		right: auto;
		left: 5px;
	}
	
	.dropdown.menu.large-vertical>li.opens-right>a::after {
		display: block;
		width: 0;
		height: 0;
		border: inset 6px;
		content: "";
		border-right-width: 0;
		border-left-style: solid;
		border-color: transparent transparent transparent #005e9d;
	}
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
	top: 100%;
	right: 0;
	left: auto;
}

.is-dropdown-menu.vertical {
	width: 100px;
}

.is-dropdown-menu.vertical.align-right {
	float: right;
}

.is-dropdown-submenu-parent {
	position: relative;
}

.is-dropdown-submenu-parent a::after {
	position: absolute;
	top: 50%;
	right: 5px;
	left: auto;
	margin-top: -6px;
}

.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu {
	top: 100%;
	left: auto;
}

.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu {
	right: 100%;
	left: auto;
}

.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu {
	right: auto;
	left: 100%;
}

.is-dropdown-submenu {
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 1;
	display: none;
	min-width: 200px;
	border: 1px solid #7f7f7f;
	background: #fff;
}

.dropdown .is-dropdown-submenu a {
	padding: .7rem 1rem;
}

.is-dropdown-submenu .is-dropdown-submenu-parent>a::after {
	right: 14px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-left-width: 0;
	border-right-style: solid;
	border-color: transparent #005e9d transparent transparent;
	right: auto;
	left: 5px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: "";
	border-right-width: 0;
	border-left-style: solid;
	border-color: transparent transparent transparent #005e9d;
}

.is-dropdown-submenu .is-dropdown-submenu {
	margin-top: -1px;
}

.is-dropdown-submenu>li {
	width: 100%;
}

.is-dropdown-submenu.js-dropdown-active {
	display: block;
}

.flex-video, .responsive-embed {
	position: relative;
	height: 0;
	margin-bottom: 1rem;
	padding-bottom: 75%;
	overflow: hidden;
}

.flex-video embed, .flex-video iframe, .flex-video object, .flex-video video, .responsive-embed embed, .responsive-embed iframe, .responsive-embed object, .responsive-embed video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.flex-video.widescreen, .responsive-embed.widescreen {
	padding-bottom: 56.25%;
}

.label {
	display: inline-block;
	padding: .33333rem .5rem;
	border-radius: 0;
	font-size: .8rem;
	line-height: 1;
	white-space: nowrap;
	cursor: default;
	background: #005e9d;
	color: #fff;
}

.label.primary {
	background: #005e9d;
	color: #fff;
}

.label.secondary {
	background: #003b6a;
	color: #fff;
}

.label.tertiary {
	background: #007ac1;
	color: #fff;
}

.label.success {
	background: #3adb76;
	color: #0a0a0a;
}

.label.warning {
	background: #ffae00;
	color: #0a0a0a;
}

.label.alert {
	background: #cc4b37;
	color: #fff;
}

.media-object {
	display: flex;
	margin-bottom: 1rem;
	flex-wrap: nowrap;
}

.media-object img {
	max-width: none;
}

@media print,screen and (max-width:47.99875em) {
	.media-object.stack-for-small {
		flex-wrap: wrap;
	}
}

.media-object-section {
	flex: 0 1 auto;
}

.media-object-section:first-child {
	padding-right: 1rem;
}

.media-object-section:last-child:not(:nth-child(2)) {
	padding-left: 1rem;
}

.media-object-section>:last-child {
	margin-bottom: 0;
}

@media print,screen and (max-width:47.99875em) {
	.stack-for-small .media-object-section {
		padding: 0;
		padding-bottom: 1rem;
		flex-basis: 100%;
		max-width: 100%;
	}
	
	.stack-for-small .media-object-section img {
		width: 100%;
	}
}

.media-object-section.main-section {
	flex: 1 1 0px;
}

.is-off-canvas-open {
	overflow: hidden;
}

.js-off-canvas-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
	width: 100%;
	height: 100%;
	transition: opacity .5s ease, visibility .5s ease;
	background: rgba(255, 255, 255, .25);
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.js-off-canvas-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.js-off-canvas-overlay.is-closable {
	cursor: pointer;
}

.js-off-canvas-overlay.is-overlay-absolute {
	position: absolute;
}

.js-off-canvas-overlay.is-overlay-fixed {
	position: fixed;
}

.off-canvas-wrapper {
	position: relative;
	overflow: hidden;
}

.off-canvas {
	position: fixed;
	z-index: 12;
	transition: transform .5s ease;
	backface-visibility: hidden;
	background: #2c3840;
}

[data-whatinput=mouse] .off-canvas {
	outline: 0;
}

.off-canvas.is-transition-push {
	z-index: 12;
}

.off-canvas.is-closed {
	visibility: hidden;
}

.off-canvas.is-transition-overlap {
	z-index: 13;
}

.off-canvas.is-transition-overlap.is-open {
	box-shadow: 0 0 10px rgba(10, 10, 10, .7);
}

.off-canvas.is-open {
	transform: translate(0, 0);
}

.off-canvas-absolute {
	position: absolute;
	z-index: 12;
	transition: transform .5s ease;
	backface-visibility: hidden;
	background: #2c3840;
}

[data-whatinput=mouse] .off-canvas-absolute {
	outline: 0;
}

.off-canvas-absolute.is-transition-push {
	z-index: 12;
}

.off-canvas-absolute.is-closed {
	visibility: hidden;
}

.off-canvas-absolute.is-transition-overlap {
	z-index: 13;
}

.off-canvas-absolute.is-transition-overlap.is-open {
	box-shadow: 0 0 10px rgba(10, 10, 10, .7);
}

.off-canvas-absolute.is-open {
	transform: translate(0, 0);
}

.position-left {
	top: 0;
	left: 0;
	height: 100%;
	overflow-y: auto;
	width: 250px;
	transform: translateX(-250px);
}

.off-canvas-content .off-canvas.position-left {
	transform: translateX(-250px);
}

.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
	transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
	transform: translateX(250px);
}

.position-left.is-transition-push {
	box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, .25);
}

.position-right {
	top: 0;
	right: 0;
	height: 100%;
	overflow-y: auto;
	width: 250px;
	transform: translateX(250px);
}

.off-canvas-content .off-canvas.position-right {
	transform: translateX(250px);
}

.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
	transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
	transform: translateX(-250px);
}

.position-right.is-transition-push {
	box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, .25);
}

.position-top {
	top: 0;
	left: 0;
	width: 100%;
	overflow-x: auto;
	height: 250px;
	transform: translateY(-250px);
}

.off-canvas-content .off-canvas.position-top {
	transform: translateY(-250px);
}

.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
	transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
	transform: translateY(250px);
}

.position-top.is-transition-push {
	box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, .25);
}

.position-bottom {
	bottom: 0;
	left: 0;
	width: 100%;
	overflow-x: auto;
	height: 250px;
	transform: translateY(250px);
}

.off-canvas-content .off-canvas.position-bottom {
	transform: translateY(250px);
}

.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
	transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
	transform: translateY(-250px);
}

.position-bottom.is-transition-push {
	box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, .25);
}

.off-canvas-content {
	transform: none;
	backface-visibility: hidden;
}

.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
	transition: transform .5s ease;
}

.off-canvas-content.has-transition-push {
	transform: translate(0, 0);
}

.off-canvas-content .off-canvas.is-open {
	transform: translate(0, 0);
}

@media print,screen and (min-width:48em) {
	.position-left.reveal-for-medium {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-left.reveal-for-medium .close-button {
		display: none;
	}
	
	.off-canvas-content .position-left.reveal-for-medium {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-left {
		margin-left: 250px;
	}
	
	.position-left.reveal-for-medium~.off-canvas-content {
		margin-left: 250px;
	}
	
	.position-right.reveal-for-medium {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-right.reveal-for-medium .close-button {
		display: none;
	}
	
	.off-canvas-content .position-right.reveal-for-medium {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-right {
		margin-right: 250px;
	}
	
	.position-right.reveal-for-medium~.off-canvas-content {
		margin-right: 250px;
	}
	
	.position-top.reveal-for-medium {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-top.reveal-for-medium .close-button {
		display: none;
	}
	
	.off-canvas-content .position-top.reveal-for-medium {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-top {
		margin-top: 250px;
	}
	
	.position-top.reveal-for-medium~.off-canvas-content {
		margin-top: 250px;
	}
	
	.position-bottom.reveal-for-medium {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-bottom.reveal-for-medium .close-button {
		display: none;
	}
	
	.off-canvas-content .position-bottom.reveal-for-medium {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-bottom {
		margin-bottom: 250px;
	}
	
	.position-bottom.reveal-for-medium~.off-canvas-content {
		margin-bottom: 250px;
	}
}

@media print,screen and (min-width:64em) {
	.position-left.reveal-for-large {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-left.reveal-for-large .close-button {
		display: none;
	}
	
	.off-canvas-content .position-left.reveal-for-large {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-left {
		margin-left: 250px;
	}
	
	.position-left.reveal-for-large~.off-canvas-content {
		margin-left: 250px;
	}
	
	.position-right.reveal-for-large {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-right.reveal-for-large .close-button {
		display: none;
	}
	
	.off-canvas-content .position-right.reveal-for-large {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-right {
		margin-right: 250px;
	}
	
	.position-right.reveal-for-large~.off-canvas-content {
		margin-right: 250px;
	}
	
	.position-top.reveal-for-large {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-top.reveal-for-large .close-button {
		display: none;
	}
	
	.off-canvas-content .position-top.reveal-for-large {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-top {
		margin-top: 250px;
	}
	
	.position-top.reveal-for-large~.off-canvas-content {
		margin-top: 250px;
	}
	
	.position-bottom.reveal-for-large {
		transform: none;
		z-index: 12;
		transition: none;
		visibility: visible;
	}
	
	.position-bottom.reveal-for-large .close-button {
		display: none;
	}
	
	.off-canvas-content .position-bottom.reveal-for-large {
		transform: none;
	}
	
	.off-canvas-content.has-reveal-bottom {
		margin-bottom: 250px;
	}
	
	.position-bottom.reveal-for-large~.off-canvas-content {
		margin-bottom: 250px;
	}
}

@media print,screen and (min-width:48em) {
	.off-canvas.in-canvas-for-medium {
		visibility: visible;
		height: auto;
		position: static;
		background: 0 0;
		width: auto;
		overflow: visible;
		transition: none;
	}
	
	.off-canvas.in-canvas-for-medium.position-bottom, .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top {
		box-shadow: none;
		transform: none;
	}
	
	.off-canvas.in-canvas-for-medium .close-button {
		display: none;
	}
}

@media print,screen and (min-width:64em) {
	.off-canvas.in-canvas-for-large {
		visibility: visible;
		height: auto;
		position: static;
		background: 0 0;
		width: auto;
		overflow: visible;
		transition: none;
	}
	
	.off-canvas.in-canvas-for-large.position-bottom, .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top {
		box-shadow: none;
		transform: none;
	}
	
	.off-canvas.in-canvas-for-large .close-button {
		display: none;
	}
}

.orbit {
	position: relative;
}

.orbit-container {
	position: relative;
	height: 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
}

.orbit-slide {
	width: 100%;
	position: absolute;
}

.orbit-slide.no-motionui.is-active {
	top: 0;
	left: 0;
}

.orbit-figure {
	margin: 0;
}

.orbit-image {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.orbit-caption {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin-bottom: 0;
	padding: 1rem;
	background-color: rgba(10, 10, 10, .5);
	color: #fff;
}

.orbit-next, .orbit-previous {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	padding: 1rem;
	color: #fff;
}

[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
	outline: 0;
}

.orbit-next:active, .orbit-next:focus, .orbit-next:hover, .orbit-previous:active, .orbit-previous:focus, .orbit-previous:hover {
	background-color: rgba(10, 10, 10, .5);
}

.orbit-previous {
	left: 0;
}

.orbit-next {
	left: auto;
	right: 0;
}

.orbit-bullets {
	position: relative;
	margin-top: .8rem;
	margin-bottom: .8rem;
	text-align: center;
}

[data-whatinput=mouse] .orbit-bullets {
	outline: 0;
}

.orbit-bullets button {
	width: 1.2rem;
	height: 1.2rem;
	margin: .1rem;
	border-radius: 50%;
	background-color: #7f7f7f;
}

.orbit-bullets button:hover {
	background-color: #8a8a8a;
}

.orbit-bullets button.is-active {
	background-color: #8a8a8a;
}

.pagination {
	margin-left: 0;
	margin-bottom: 1rem;
}

.pagination::after, .pagination::before {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.pagination::after {
	clear: both;
}

.pagination li {
	margin-right: .0625rem;
	border-radius: 0;
	font-size: .875rem;
	display: none;
}

.pagination li:first-child, .pagination li:last-child {
	display: inline-block;
}

@media print,screen and (min-width:48em) {
	.pagination li {
		display: inline-block;
	}
}

.pagination a, .pagination button {
	display: block;
	padding: .1875rem .625rem;
	border-radius: 0;
	color: #0a0a0a;
}

.pagination a:hover, .pagination button:hover {
	background: #d9d9d9;
}

.pagination .current {
	padding: .1875rem .625rem;
	background: #005e9d;
	color: #fff;
	cursor: default;
}

.pagination .disabled {
	padding: .1875rem .625rem;
	color: #333;
	cursor: not-allowed;
}

.pagination .disabled:hover {
	background: 0 0;
}

.pagination .ellipsis::after {
	padding: .1875rem .625rem;
	content: "…";
	color: #0a0a0a;
}

.pagination-previous a::before, .pagination-previous.disabled::before {
	display: inline-block;
	margin-right: .5rem;
	content: "«";
}

.pagination-next a::after, .pagination-next.disabled::after {
	display: inline-block;
	margin-left: .5rem;
	content: "»";
}

.progress {
	height: 1rem;
	margin-bottom: 1rem;
	border-radius: 0;
	background-color: #7f7f7f;
}

.progress.primary .progress-meter {
	background-color: #005e9d;
}

.progress.secondary .progress-meter {
	background-color: #003b6a;
}

.progress.tertiary .progress-meter {
	background-color: #007ac1;
}

.progress.success .progress-meter {
	background-color: #3adb76;
}

.progress.warning .progress-meter {
	background-color: #ffae00;
}

.progress.alert .progress-meter {
	background-color: #cc4b37;
}

.progress-meter {
	position: relative;
	display: block;
	width: 0%;
	height: 100%;
	background-color: #005e9d;
}

.progress-meter-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	font-size: .75rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.slider {
	position: relative;
	height: .5rem;
	margin-top: 1.25rem;
	margin-bottom: 2.25rem;
	background-color: #d9d9d9;
	cursor: pointer;
	user-select: none;
	touch-action: none;
}

.slider-fill {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	max-width: 100%;
	height: .5rem;
	background-color: #333;
	transition: all .2s ease-in-out;
}

.slider-fill.is-dragging {
	transition: all 0s linear;
}

.slider-handle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
	display: inline-block;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0;
	background-color: #005e9d;
	transition: all .2s ease-in-out;
	touch-action: manipulation;
}

[data-whatinput=mouse] .slider-handle {
	outline: 0;
}

.slider-handle:hover {
	background-color: #005085;
}

.slider-handle.is-dragging {
	transition: all 0s linear;
}

.slider.disabled, .slider[disabled] {
	opacity: .25;
	cursor: not-allowed;
}

.slider.vertical {
	display: inline-block;
	width: .5rem;
	height: 12.5rem;
	margin: 0 1.25rem;
	transform: scale(1, -1);
}

.slider.vertical .slider-fill {
	top: 0;
	width: .5rem;
	max-height: 100%;
}

.slider.vertical .slider-handle {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1.4rem;
	height: 1.4rem;
	transform: translateX(-50%);
}

.sticky-container {
	position: relative;
}

.sticky {
	position: relative;
	z-index: 0;
	transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
	position: fixed;
	z-index: 5;
	width: 100%;
}

.sticky.is-stuck.is-at-top {
	top: 0;
}

.sticky.is-stuck.is-at-bottom {
	bottom: 0;
}

.sticky.is-anchored {
	position: relative;
	right: auto;
	left: auto;
}

.sticky.is-anchored.is-at-bottom {
	bottom: 0;
}

html.is-reveal-open {
	position: fixed;
	width: 100%;
	overflow-y: hidden;
}

html.is-reveal-open.zf-has-scroll {
	overflow-y: scroll;
}

html.is-reveal-open body {
	overflow-y: hidden;
}

.reveal-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1005;
	display: none;
	background-color: rgba(10, 10, 10, .45);
	overflow-y: auto;
}

.reveal {
	z-index: 1006;
	backface-visibility: hidden;
	display: none;
	padding: 1rem;
	border: 1px solid #7f7f7f;
	border-radius: 0;
	background-color: #fff;
	position: relative;
	top: 100px;
	margin-right: auto;
	margin-left: auto;
	overflow-y: auto;
}

[data-whatinput=mouse] .reveal {
	outline: 0;
}

@media print,screen and (min-width:48em) {
	.reveal {
		min-height: 0;
	}
}

.reveal .column {
	min-width: 0;
}

.reveal>:last-child {
	margin-bottom: 0;
}

@media print,screen and (min-width:48em) {
	.reveal {
		width: 600px;
		max-width: 74.375rem;
	}
}

.reveal.collapse {
	padding: 0;
}

@media print,screen and (min-width:48em) {
	.reveal.tiny {
		width: 30%;
		max-width: 74.375rem;
	}
}

@media print,screen and (min-width:48em) {
	.reveal.small {
		width: 50%;
		max-width: 74.375rem;
	}
}

@media print,screen and (min-width:48em) {
	.reveal.large {
		width: 90%;
		max-width: 74.375rem;
	}
}

.reveal.full {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	min-height: 100%;
	margin-left: 0;
	border: 0;
	border-radius: 0;
}

@media print,screen and (max-width:47.99875em) {
	.reveal {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		max-width: none;
		height: 100%;
		min-height: 100%;
		margin-left: 0;
		border: 0;
		border-radius: 0;
	}
}

.reveal.without-overlay {
	position: fixed;
}

.switch {
	height: 2rem;
	position: relative;
	margin-bottom: 1rem;
	outline: 0;
	font-size: .875rem;
	font-weight: 700;
	color: #fff;
	user-select: none;
}

.switch-input {
	position: absolute;
	margin-bottom: 0;
	opacity: 0;
}

.switch-paddle {
	position: relative;
	display: block;
	width: 4rem;
	height: 2rem;
	border-radius: 0;
	background: #7f7f7f;
	transition: all .25s ease-out;
	font-weight: inherit;
	color: inherit;
	cursor: pointer;
}

input+.switch-paddle {
	margin: 0;
}

.switch-paddle::after {
	position: absolute;
	top: .25rem;
	left: .25rem;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	transform: translate3d(0, 0, 0);
	border-radius: 0;
	background: #fff;
	transition: all .25s ease-out;
	content: "";
}

input:checked~.switch-paddle {
	background: #005e9d;
}

input:checked~.switch-paddle::after {
	left: 2.25rem;
}

input:disabled~.switch-paddle {
	cursor: not-allowed;
	opacity: .5;
}

[data-whatinput=mouse] input:focus~.switch-paddle {
	outline: 0;
}

.switch-active, .switch-inactive {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.switch-active {
	left: 8%;
	display: none;
}

input:checked+label>.switch-active {
	display: block;
}

.switch-inactive {
	right: 15%;
}

input:checked+label>.switch-inactive {
	display: none;
}

.switch.tiny {
	height: 1.5rem;
}

.switch.tiny .switch-paddle {
	width: 3rem;
	height: 1.5rem;
	font-size: .625rem;
}

.switch.tiny .switch-paddle::after {
	top: .25rem;
	left: .25rem;
	width: 1rem;
	height: 1rem;
}

.switch.tiny input:checked~.switch-paddle::after {
	left: 1.75rem;
}

.switch.small {
	height: 1.75rem;
}

.switch.small .switch-paddle {
	width: 3.5rem;
	height: 1.75rem;
	font-size: .75rem;
}

.switch.small .switch-paddle::after {
	top: .25rem;
	left: .25rem;
	width: 1.25rem;
	height: 1.25rem;
}

.switch.small input:checked~.switch-paddle::after {
	left: 2rem;
}

.switch.large {
	height: 2.5rem;
}

.switch.large .switch-paddle {
	width: 5rem;
	height: 2.5rem;
	font-size: 1rem;
}

.switch.large .switch-paddle::after {
	top: .25rem;
	left: .25rem;
	width: 2rem;
	height: 2rem;
}

.switch.large input:checked~.switch-paddle::after {
	left: 2.75rem;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 0;
}

tbody, tfoot, thead {
	border: 1px solid #f2f2f2;
	background-color: #fff;
}

caption {
	padding: .5rem .625rem .625rem;
	font-weight: 700;
}

thead {
	background: #f9f9f9;
	color: #333;
}

tfoot {
	background: #f2f2f2;
	color: #333;
}

tfoot tr, thead tr {
	background: 0 0;
}

tfoot td, tfoot th, thead td, thead th {
	padding: .5rem .625rem .625rem;
	font-weight: 700;
	text-align: left;
}

tbody td, tbody th {
	padding: .5rem .625rem .625rem;
}

tbody tr:nth-child(even) {
	border-bottom: 0;
	background-color: #f2f2f2;
}

table.unstriped tbody {
	background-color: #fff;
}

table.unstriped tbody tr {
	border-bottom: 0;
	border-bottom: 1px solid #f2f2f2;
	background-color: #fff;
}

@media print,screen and (max-width:63.99875em) {
	table.stack thead {
		display: none;
	}
	
	table.stack tfoot {
		display: none;
	}
	
	table.stack td, table.stack th, table.stack tr {
		display: block;
	}
	
	table.stack td {
		border-top: 0;
	}
}

table.scroll {
	display: block;
	width: 100%;
	overflow-x: auto;
}

table.hover thead tr:hover {
	background-color: #f4f4f4;
}

table.hover tfoot tr:hover {
	background-color: #ededed;
}

table.hover tbody tr:hover {
	background-color: #fafafa;
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
	background-color: #ededed;
}

.table-scroll {
	overflow-x: auto;
}

.tabs {
	margin: 0;
	border: 1px solid #d9d9d9;
	background: #fff;
	list-style-type: none;
}

.tabs::after, .tabs::before {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.tabs::after {
	clear: both;
}

.tabs.vertical>li {
	display: block;
	float: none;
	width: auto;
}

.tabs.simple>li>a {
	padding: 0;
}

.tabs.simple>li>a:hover {
	background: 0 0;
}

.tabs.primary {
	background: #005e9d;
}

.tabs.primary>li>a {
	color: #fff;
}

.tabs.primary>li>a:focus, .tabs.primary>li>a:hover {
	background: #0069af;
}

.tabs-title {
	float: left;
}

.tabs-title>a {
	display: block;
	padding: 1.25rem 1.5rem;
	font-size: .75rem;
	line-height: 1;
	color: #005e9d;
}

[data-whatinput=mouse] .tabs-title>a {
	outline: 0;
}

.tabs-title>a:hover {
	background: #fff;
	color: #005187;
}

.tabs-title>a:focus, .tabs-title>a[aria-selected=true] {
	background: #d9d9d9;
	color: #005e9d;
}

.tabs-content {
	border: 1px solid #d9d9d9;
	border-top: 0;
	background: #fff;
	color: #333;
	transition: all .5s ease;
}

.tabs-content.vertical {
	border: 1px solid #d9d9d9;
	border-left: 0;
}

.tabs-panel {
	display: none;
	padding: 1rem;
}

.tabs-panel.is-active {
	display: block;
}

.thumbnail {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 1rem;
	border: solid 4px #fff;
	border-radius: 0;
	box-shadow: 0 0 0 1px rgba(10, 10, 10, .2);
	line-height: 0;
}

a.thumbnail {
	transition: box-shadow .2s ease-out;
}

a.thumbnail:focus, a.thumbnail:hover {
	box-shadow: 0 0 6px 1px rgba(0, 94, 157, .5);
}

a.thumbnail image {
	box-shadow: none;
}

.title-bar {
	padding: .5rem;
	background: #2c3840;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.title-bar .menu-icon {
	margin-left: .25rem;
	margin-right: .25rem;
}

.title-bar-left, .title-bar-right {
	flex: 1 1 0px;
}

.title-bar-right {
	text-align: right;
}

.title-bar-title {
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
}

.has-tip {
	position: relative;
	display: inline-block;
	border-bottom: dotted 1px #8a8a8a;
	font-weight: 700;
	cursor: help;
}

.tooltip {
	position: absolute;
	top: calc(100% + .6495rem);
	z-index: 1200;
	max-width: 10rem;
	padding: .75rem;
	border-radius: 0;
	background-color: #0a0a0a;
	font-size: 80%;
	color: #fff;
}

.tooltip::before {
	position: absolute;
}

.tooltip.bottom::before {
	display: block;
	width: 0;
	height: 0;
	border: inset .75rem;
	content: "";
	border-top-width: 0;
	border-bottom-style: solid;
	border-color: transparent transparent #0a0a0a;
	bottom: 100%;
}

.tooltip.bottom.align-center::before {
	left: 50%;
	transform: translateX(-50%);
}

.tooltip.top::before {
	display: block;
	width: 0;
	height: 0;
	border: inset .75rem;
	content: "";
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #0a0a0a transparent transparent;
	top: 100%;
	bottom: auto;
}

.tooltip.top.align-center::before {
	left: 50%;
	transform: translateX(-50%);
}

.tooltip.left::before {
	display: block;
	width: 0;
	height: 0;
	border: inset .75rem;
	content: "";
	border-right-width: 0;
	border-left-style: solid;
	border-color: transparent transparent transparent #0a0a0a;
	left: 100%;
}

.tooltip.left.align-center::before {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}

.tooltip.right::before {
	display: block;
	width: 0;
	height: 0;
	border: inset .75rem;
	content: "";
	border-left-width: 0;
	border-right-style: solid;
	border-color: transparent #0a0a0a transparent transparent;
	right: 100%;
	left: auto;
}

.tooltip.right.align-center::before {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}

.tooltip.align-top::before {
	bottom: auto;
	top: 10%;
}

.tooltip.align-bottom::before {
	bottom: 10%;
	top: auto;
}

.tooltip.align-left::before {
	left: 10%;
	right: auto;
}

.tooltip.align-right::before {
	left: auto;
	right: 10%;
}

.top-bar {
	display: flex;
	flex-wrap: nowrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: .5rem;
}

.top-bar, .top-bar ul {
	background-color: #d9d9d9;
}

.top-bar input {
	max-width: 200px;
	margin-right: 1rem;
}

.top-bar .input-group-field {
	width: 100%;
	margin-right: 0;
}

.top-bar .wp-block-button input.wp-block-button__link, .top-bar input.button, .wp-block-button .top-bar input.wp-block-button__link {
	width: auto;
}

.top-bar .top-bar-left, .top-bar .top-bar-right {
	flex: 0 0 100%;
	max-width: 100%;
}

@media print,screen and (min-width:48em) {
	.top-bar {
		flex-wrap: nowrap;
	}
	
	.top-bar .top-bar-left {
		flex: 1 1 auto;
		margin-right: auto;
	}
	
	.top-bar .top-bar-right {
		flex: 0 1 auto;
		margin-left: auto;
	}
}

@media print,screen and (max-width:63.99875em) {
	.top-bar.stacked-for-medium {
		flex-wrap: wrap;
	}
	
	.top-bar.stacked-for-medium .top-bar-left, .top-bar.stacked-for-medium .top-bar-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media print,screen and (max-width:74.99875em) {
	.top-bar.stacked-for-large {
		flex-wrap: wrap;
	}
	
	.top-bar.stacked-for-large .top-bar-left, .top-bar.stacked-for-large .top-bar-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.top-bar-title {
	flex: 0 0 auto;
	margin: .5rem 1rem .5rem 0;
}

.top-bar-left, .top-bar-right {
	flex: 0 0 auto;
}

.hide {
	display: none !important;
}

.invisible {
	visibility: hidden;
}

@media print,screen and (max-width:47.99875em) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width:0em),screen and (min-width:48em) {
	.show-for-small-only {
		display: none !important;
	}
}

@media print,screen and (min-width:48em) {
	.hide-for-medium {
		display: none !important;
	}
}

@media screen and (max-width:47.99875em) {
	.show-for-medium {
		display: none !important;
	}
}

@media print,screen and (min-width:48em) and (max-width:63.99875em) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width:47.99875em),screen and (min-width:64em) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media print,screen and (min-width:64em) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width:63.99875em) {
	.show-for-large {
		display: none !important;
	}
}

@media print,screen and (min-width:64em) and (max-width:74.99875em) {
	.hide-for-large-only {
		display: none !important;
	}
}

@media screen and (max-width:63.99875em),screen and (min-width:75em) {
	.show-for-large-only {
		display: none !important;
	}
}

.show-for-sr, .show-on-focus {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
	position: static !important;
	width: auto !important;
	height: auto !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
}

.hide-for-portrait, .show-for-landscape {
	display: block !important;
}

@media screen and (orientation:landscape) {
	.hide-for-portrait, .show-for-landscape {
		display: block !important;
	}
}

@media screen and (orientation:portrait) {
	.hide-for-portrait, .show-for-landscape {
		display: none !important;
	}
}

.hide-for-landscape, .show-for-portrait {
	display: none !important;
}

@media screen and (orientation:landscape) {
	.hide-for-landscape, .show-for-portrait {
		display: none !important;
	}
}

@media screen and (orientation:portrait) {
	.hide-for-landscape, .show-for-portrait {
		display: block !important;
	}
}

.align-left {
	justify-content: flex-start;
}

.align-right {
	justify-content: flex-end;
}

.align-center {
	justify-content: center;
}

.align-justify {
	justify-content: space-between;
}

.align-spaced {
	justify-content: space-around;
}

.align-left.vertical.menu>li>a {
	justify-content: flex-start;
}

.align-right.vertical.menu>li>a {
	justify-content: flex-end;
}

.align-center.vertical.menu>li>a {
	justify-content: center;
}

.align-top {
	align-items: flex-start;
}

.align-self-top {
	align-self: flex-start;
}

.align-bottom {
	align-items: flex-end;
}

.align-self-bottom {
	align-self: flex-end;
}

.align-middle {
	align-items: center;
}

.align-self-middle {
	align-self: center;
}

.align-stretch {
	align-items: stretch;
}

.align-self-stretch {
	align-self: stretch;
}

.align-center-middle {
	justify-content: center;
	align-items: center;
	align-content: center;
}

.small-order-1 {
	order: 1;
}

.small-order-2 {
	order: 2;
}

.small-order-3 {
	order: 3;
}

.small-order-4 {
	order: 4;
}

.small-order-5 {
	order: 5;
}

.small-order-6 {
	order: 6;
}

@media print,screen and (min-width:48em) {
	.medium-order-1 {
		order: 1;
	}
	
	.medium-order-2 {
		order: 2;
	}
	
	.medium-order-3 {
		order: 3;
	}
	
	.medium-order-4 {
		order: 4;
	}
	
	.medium-order-5 {
		order: 5;
	}
	
	.medium-order-6 {
		order: 6;
	}
}

@media print,screen and (min-width:64em) {
	.large-order-1 {
		order: 1;
	}
	
	.large-order-2 {
		order: 2;
	}
	
	.large-order-3 {
		order: 3;
	}
	
	.large-order-4 {
		order: 4;
	}
	
	.large-order-5 {
		order: 5;
	}
	
	.large-order-6 {
		order: 6;
	}
}

.flex-container {
	display: flex;
}

.flex-child-auto {
	flex: 1 1 auto;
}

.flex-child-grow {
	flex: 1 0 auto;
}

.flex-child-shrink {
	flex: 0 1 auto;
}

.flex-dir-row {
	flex-direction: row;
}

.flex-dir-row-reverse {
	flex-direction: row-reverse;
}

.flex-dir-column {
	flex-direction: column;
}

.flex-dir-column-reverse {
	flex-direction: column-reverse;
}

@media print,screen and (min-width:48em) {
	.medium-flex-container {
		display: flex;
	}
	
	.medium-flex-child-auto {
		flex: 1 1 auto;
	}
	
	.medium-flex-child-grow {
		flex: 1 0 auto;
	}
	
	.medium-flex-child-shrink {
		flex: 0 1 auto;
	}
	
	.medium-flex-dir-row {
		flex-direction: row;
	}
	
	.medium-flex-dir-row-reverse {
		flex-direction: row-reverse;
	}
	
	.medium-flex-dir-column {
		flex-direction: column;
	}
	
	.medium-flex-dir-column-reverse {
		flex-direction: column-reverse;
	}
}

@media print,screen and (min-width:64em) {
	.large-flex-container {
		display: flex;
	}
	
	.large-flex-child-auto {
		flex: 1 1 auto;
	}
	
	.large-flex-child-grow {
		flex: 1 0 auto;
	}
	
	.large-flex-child-shrink {
		flex: 0 1 auto;
	}
	
	.large-flex-dir-row {
		flex-direction: row;
	}
	
	.large-flex-dir-row-reverse {
		flex-direction: row-reverse;
	}
	
	.large-flex-dir-column {
		flex-direction: column;
	}
	
	.large-flex-dir-column-reverse {
		flex-direction: column-reverse;
	}
}

.slide-in-down.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(-100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
	transform: translateY(0);
}

.slide-in-left.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(-100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
	transform: translateX(0);
}

.slide-in-up.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
	transform: translateY(0);
}

.slide-in-right.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(100%);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
	transform: translateX(0);
}

.slide-out-down.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
	transform: translateY(100%);
}

.slide-out-right.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
	transform: translateX(100%);
}

.slide-out-up.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateY(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
	transform: translateY(-100%);
}

.slide-out-left.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: translateX(0);
	transition-property: transform, opacity;
	backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
	transform: translateX(-100%);
}

.fade-in.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	opacity: 0;
	transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
	opacity: 1;
}

.fade-out.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	opacity: 1;
	transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
	opacity: 0;
}

.hinge-in-from-top.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(-90deg);
	transform-origin: top;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-right.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(-90deg);
	transform-origin: right;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(90deg);
	transform-origin: bottom;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-left.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(90deg);
	transform-origin: left;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateX(-90deg);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotateY(-90deg);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
	transform: perspective(2000px) rotate(0);
	opacity: 1;
}

.hinge-out-from-top.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: top;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(90deg);
	opacity: 0;
}

.hinge-out-from-right.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: right;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(90deg);
	opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: bottom;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(-90deg);
	opacity: 0;
}

.hinge-out-from-left.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: left;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(-90deg);
	opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateX(90deg);
	opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: perspective(2000px) rotate(0);
	transform-origin: center;
	transition-property: transform, opacity;
	opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
	transform: perspective(2000px) rotateY(90deg);
	opacity: 0;
}

.scale-in-up.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(.5);
	transition-property: transform, opacity;
	opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
	transform: scale(1);
	opacity: 1;
}

.scale-in-down.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1.5);
	transition-property: transform, opacity;
	opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
	transform: scale(1);
	opacity: 1;
}

.scale-out-up.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1);
	transition-property: transform, opacity;
	opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
	transform: scale(1.5);
	opacity: 0;
}

.scale-out-down.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: scale(1);
	transition-property: transform, opacity;
	opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
	transform: scale(.5);
	opacity: 0;
}

.spin-in.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(-.75turn);
	transition-property: transform, opacity;
	opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
	transform: rotate(0);
	opacity: 1;
}

.spin-out.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(0);
	transition-property: transform, opacity;
	opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
	transform: rotate(.75turn);
	opacity: 0;
}

.spin-in-ccw.mui-enter {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(.75turn);
	transition-property: transform, opacity;
	opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
	transform: rotate(0);
	opacity: 1;
}

.spin-out-ccw.mui-leave {
	transition-duration: .5s;
	transition-timing-function: linear;
	transform: rotate(0);
	transition-property: transform, opacity;
	opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
	transform: rotate(-.75turn);
	opacity: 0;
}

.slow {
	transition-duration: 750ms !important;
}

.fast {
	transition-duration: 250ms !important;
}

.linear {
	transition-timing-function: linear !important;
}

.ease {
	transition-timing-function: ease !important;
}

.ease-in {
	transition-timing-function: ease-in !important;
}

.ease-out {
	transition-timing-function: ease-out !important;
}

.ease-in-out {
	transition-timing-function: ease-in-out !important;
}

.bounce-in {
	transition-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important;
}

.bounce-out {
	transition-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
	transition-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
	transition-delay: .3s !important;
}

.long-delay {
	transition-delay: .7s !important;
}

.shake {
	animation-name: shake-7;
}

@keyframes shake-7 {
	0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
		transform: translateX(7%);
	}
	
	15%, 25%, 35%, 45%, 5%, 55%, 65%, 75%, 85%, 95% {
		transform: translateX(-7%);
	}
}

.spin-cw {
	animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
	0% {
		transform: rotate(-1turn);
	}
	
	100% {
		transform: rotate(0);
	}
}

.spin-ccw {
	animation-name: spin-ccw-1turn;
}

@keyframes spin-ccw-1turn {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(-1turn);
	}
}

.wiggle {
	animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
	40%, 50%, 60% {
		transform: rotate(7deg);
	}
	
	35%, 45%, 55%, 65% {
		transform: rotate(-7deg);
	}
	
	0%, 100%, 30%, 70% {
		transform: rotate(0);
	}
}

.shake, .spin-ccw, .spin-cw, .wiggle {
	animation-duration: .5s;
}

.infinite {
	animation-iteration-count: infinite;
}

.slow {
	animation-duration: 750ms !important;
}

.fast {
	animation-duration: 250ms !important;
}

.linear {
	animation-timing-function: linear !important;
}

.ease {
	animation-timing-function: ease !important;
}

.ease-in {
	animation-timing-function: ease-in !important;
}

.ease-out {
	animation-timing-function: ease-out !important;
}

.ease-in-out {
	animation-timing-function: ease-in-out !important;
}

.bounce-in {
	animation-timing-function: cubic-bezier(.485, .155, .24, 1.245) !important;
}

.bounce-out {
	animation-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
	animation-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
	animation-delay: .3s !important;
}

.long-delay {
	animation-delay: .7s !important;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: .875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

#wpadminbar {
	position: fixed !important;
}

@media print,screen and (max-width:47.99875em) {
	#wpadminbar {
		display: none !important;
	}
}

html[lang=en-US] {
	margin-top: 0 !important;
}

@media print,screen and (min-width:48em) {
	body.admin-bar {
		margin-top: 2rem;
	}
}

body.admin-bar.f-topbar-fixed .sticky.fixed {
	margin-top: 2rem;
}

body.admin-bar.offcanvas .off-canvas.is-open {
	top: 2.875rem;
}

@media screen and (min-width:48.9375em) {
	body.admin-bar.offcanvas .off-canvas.is-open {
		top: 2rem;
	}
}

@media print,screen and (min-width:48em) {
	body.admin-bar.init-fixed-header .site-menu {
		top: 2rem;
	}
	
	body.admin-bar.init-fixed-header .site-menu .desktop-dropdown {
		top: calc(5rem + 2rem);
	}
}

.wp-caption>figcaption {
	max-width: 100%;
	font-size: .8rem;
	color: #999;
	padding: .25rem 0;
}

p.wp-caption-text {
	font-size: 90%;
	color: #666;
	padding: .625rem 0;
}

.alignleft {
	float: left;
	padding-right: 1rem;
	margin: 0;
}

.alignright {
	float: right;
	padding-left: 1rem;
	margin: 0;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.gallery {
	display: flex;
	flex-flow: row wrap;
	margin-right: -.75rem;
	margin-left: -.75rem;
}

@media print,screen and (min-width:48em) {
	.gallery {
		margin-right: -.75rem;
		margin-left: -.75rem;
	}
}

.gallery.gallery-columns-1>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-1>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-1>.gallery-item {
		flex: 0 0 auto;
		width: calc(100% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-2>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-2>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-2>.gallery-item {
		flex: 0 0 auto;
		width: calc(50% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-3>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-3>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-3>.gallery-item {
		flex: 0 0 auto;
		width: calc(33.3333333333% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-4>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-4>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-4>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-5>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-5>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-5>.gallery-item {
		flex: 0 0 auto;
		width: calc(20% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-6>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-6>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-6>.gallery-item {
		flex: 0 0 auto;
		width: calc(16.6666666667% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-7>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-7>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-7>.gallery-item {
		flex: 0 0 auto;
		width: calc(14.2857142857% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-8>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-8>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-8>.gallery-item {
		flex: 0 0 auto;
		width: calc(12.5% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery.gallery-columns-9>.gallery-item {
	flex: 0 0 auto;
	width: calc(50% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.gallery.gallery-columns-9>.gallery-item {
		flex: 0 0 auto;
		width: calc(25% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

@media print,screen and (min-width:64em) {
	.gallery.gallery-columns-9>.gallery-item {
		flex: 0 0 auto;
		width: calc(11.1111111111% - 1.875rem);
		margin-left: .9375rem;
		margin-right: .9375rem;
	}
}

.gallery .gallery-icon>a {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 1rem;
	border: solid 4px #fff;
	border-radius: 0;
	box-shadow: 0 0 0 1px rgba(10, 10, 10, .2);
	line-height: 0;
	transition: box-shadow .2s ease-out;
}

.gallery .gallery-icon>a:focus, .gallery .gallery-icon>a:hover {
	box-shadow: 0 0 6px 1px rgba(0, 94, 157, .5);
}

.gallery .gallery-icon>a image {
	box-shadow: none;
}

.gallery .gallery-icon>img {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 1rem;
	border: solid 4px #fff;
	border-radius: 0;
	box-shadow: 0 0 0 1px rgba(10, 10, 10, .2);
	line-height: 0;
}

.has-primary-background-color {
	background-color: #005e9d;
}

.has-primary-color {
	color: #005e9d;
}

.has-secondary-background-color {
	background-color: #003b6a;
}

.has-secondary-color {
	color: #003b6a;
}

.has-tertiary-background-color {
	background-color: #007ac1;
}

.has-tertiary-color {
	color: #007ac1;
}

.has-success-background-color {
	background-color: #3adb76;
}

.has-success-color {
	color: #3adb76;
}

.has-warning-background-color {
	background-color: #ffae00;
}

.has-warning-color {
	color: #ffae00;
}

.has-alert-background-color {
	background-color: #cc4b37;
}

.has-alert-color {
	color: #cc4b37;
}

.wp-block-button .wp-block-button__link.has-primary-background-color {
	background-color: #005e9d;
}

.wp-block-button .wp-block-button__link.has-primary-color {
	color: #005e9d;
}

.wp-block-button .wp-block-button__link.has-secondary-background-color {
	background-color: #003b6a;
}

.wp-block-button .wp-block-button__link.has-secondary-color {
	color: #003b6a;
}

.wp-block-button .wp-block-button__link.has-tertiary-background-color {
	background-color: #007ac1;
}

.wp-block-button .wp-block-button__link.has-tertiary-color {
	color: #007ac1;
}

.wp-block-button .wp-block-button__link.has-success-background-color {
	background-color: #3adb76;
}

.wp-block-button .wp-block-button__link.has-success-color {
	color: #3adb76;
}

.wp-block-button .wp-block-button__link.has-warning-background-color {
	background-color: #ffae00;
}

.wp-block-button .wp-block-button__link.has-warning-color {
	color: #ffae00;
}

.wp-block-button .wp-block-button__link.has-alert-background-color {
	background-color: #cc4b37;
}

.wp-block-button .wp-block-button__link.has-alert-color {
	color: #cc4b37;
}

.wp-block-button.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

.wp-block-file .wp-block-file__button {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 1rem 0;
	padding: .85em 1em;
	border: 1px solid transparent;
	border-radius: 0;
	transition: background-color .25s ease-out, color .25s ease-out;
	font-family: inherit;
	font-size: .9rem;
	-webkit-appearance: none;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

[data-whatinput=mouse] .wp-block-file .wp-block-file__button {
	outline: 0;
}

.wp-block-file .wp-block-file__button, .wp-block-file .wp-block-file__button.disabled, .wp-block-file .wp-block-file__button.disabled:focus, .wp-block-file .wp-block-file__button.disabled:hover, .wp-block-file .wp-block-file__button[disabled], .wp-block-file .wp-block-file__button[disabled]:focus, .wp-block-file .wp-block-file__button[disabled]:hover {
	background-color: #005e9d;
	color: #fff;
}

.wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button:hover {
	background-color: #005085;
	color: #fff;
}

.gform_wrapper h3.gform_title {
	display: none !important;
}

.gform_body label {
	font-size: .6rem;
	color: #4d4d4d;
	font-weight: 600;
	text-transform: uppercase;
}

.gform_body ul {
	margin: 0;
}

.gform_body li {
	margin: 0 !important;
	list-style: none !important;
}

.gform_body input, .gform_body select, .gform_body textarea {
	font-size: .76rem;
	padding: .4rem;
	margin: 0 0 .8rem;
	border-color: #ccc;
}

.gform_body input[type=text] {
	height: 1.85rem;
}

.gform_body h3 {
	font-size: .83rem;
	margin: .8rem 0;
	padding: 0;
	line-height: .92rem;
}

.gform_body .ginput_container_fileupload input {
	padding: .4rem .4rem .4rem 0;
}

.gform_body input[type=file]::-webkit-file-upload-button {
	font-weight: 400;
	color: #fff;
	font-size: .75rem;
	background-color: #005e9d;
	border-color: #005e9d;
	border-radius: 1000px;
	height: 1.875rem;
}

.gform_body .ginput_recaptcha {
	margin-bottom: .9375rem;
}

.gform_footer button {
	border-radius: 1000px;
	margin: 0;
}

@media print,screen and (min-width:48em) {
	.mobile-menu, .site-title-bar {
		display: none !important;
	}
}

@media screen and (max-width:47.99875em) {
	.desktop-menu, .site-navigation .top-bar-left {
		display: none !important;
	}
}

.site-desktop-title a {
	font-weight: 700;
}

.post-navigation::after, .post-navigation::before {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.post-navigation::after {
	clear: both;
}

.nav-previous {
	float: left;
}

.nav-next {
	float: right;
}

.main-container {
	padding-right: .75rem;
	padding-left: .75rem;
	max-width: 74.375rem;
	margin-left: auto;
	margin-right: auto;
}

@media print,screen and (min-width:48em) {
	.main-container {
		padding-right: .75rem;
		padding-left: .75rem;
	}
}

.main-grid {
	display: flex;
	flex-flow: row wrap;
	margin-top: 1rem;
}

@media print,screen and (min-width:48em) {
	.main-grid {
		margin-top: 3rem;
	}
}

.main-grid.sidebar-left .main-content {
	order: 1;
}

.main-grid.sidebar-left .sidebar {
	order: 2;
}

@media print,screen and (min-width:48em) {
	.main-grid.sidebar-left .main-content {
		order: 2;
	}
	
	.main-grid.sidebar-left .sidebar {
		order: 1;
	}
}

.main-grid .main-content-full-width {
	flex: 0 0 auto;
	width: calc(100% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

.main-grid .main-content {
	flex: 0 0 auto;
	width: calc(100% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.main-grid .main-content {
		flex: 0 0 auto;
		width: calc(66.6666666667% - 1.5rem);
		margin-left: .75rem;
		margin-right: .75rem;
	}
}

.main-grid .sidebar {
	flex: 0 0 auto;
	width: calc(100% - 1.5rem);
	margin-left: .75rem;
	margin-right: .75rem;
}

@media print,screen and (min-width:48em) {
	.main-grid .sidebar {
		flex: 0 0 auto;
		width: calc(33.3333333333% - 1.5rem);
		margin-left: .75rem;
		margin-right: .75rem;
		margin-top: 1rem;
	}
}

#cookie-notice {
	background-color: rgba(10, 94, 164, .95) !important;
	line-height: 1.5rem;
	padding: 0;
	font-size: .875rem;
	font-weight: 400;
}

#cookie-notice .cookie-notice-container {
	padding: .625rem;
}

#cookie-notice .cookie-notice-container span {
	display: block;
}

#cookie-notice .cookie-notice-container .cn-button {
	color: #fff;
	border-width: 0;
	border-radius: 3px;
	text-decoration: none;
	padding: 0 .375rem;
	margin: 0 0 0 .5rem;
	text-shadow: none;
	background-image: none;
	font-size: .875rem;
	text-transform: none;
	line-height: 22px;
}

#cookie-notice .cookie-notice-container .cn-button.nitro-lazy {
	background-image: none !important;
}

#cookie-notice .cookie-notice-container .cn-button.cn-set-cookie {
	background-color: #23adf5;
}

#cookie-notice .cookie-notice-container .cn-button.cn-more-info {
	background-color: #111;
}

body#tinymce {
	height: auto;
	max-width: 74.375rem;
	padding: 1.25rem !important;
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.chosen-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	border: 1px solid #aaa;
	border-top: 0;
	background: #fff;
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .chosen-single .group-name, .chosen-container .search-choice .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 400;
	color: #999;
}

.chosen-container .chosen-single .group-name:after, .chosen-container .search-choice .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 8px;
	height: 25px;
	border: 1px solid #aaa;
	border-radius: 5px;
	background-color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
	background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px;
}

.chosen-container-single .chosen-default {
	color: #999;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-single .chosen-single abbr.nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 18px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat 0 2px;
}

.chosen-container-single .chosen-single div b.nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #aaa;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat 100% -20px;
	font-size: 1em;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
}

.chosen-container-single .chosen-search input[type=text].nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: 700;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0 5px;
	width: 100%;
	height: auto;
	border: 1px solid #aaa;
	background-color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
	background-image: linear-gradient(#eee 1%, #fff 15%);
	cursor: text;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
	margin: 1px 0;
	padding: 0;
	height: 25px;
	outline: 0;
	border: 0 !important;
	background: 0 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #999;
	font-size: 100%;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
	width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	margin: 3px 5px 3px 0;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaa;
	max-width: 100%;
	border-radius: 3px;
	background-color: #eee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-size: 100% 19px;
	background-repeat: repeat-x;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	color: #333;
	line-height: 13px;
	cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 4px;
	right: 3px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close.nitro-lazy {
	background-image: none !important;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #aaa;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
	background-image: linear-gradient(#eee 20%, #fff 80%);
	-webkit-box-shadow: 0 1px 0 #fff inset;
	box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222 !important;
}

.chosen-disabled {
	opacity: .5 !important;
	cursor: default;
}

.chosen-disabled .chosen-single {
	cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
	direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
	padding: 4px 5px 4px 20px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat -30px -20px;
	direction: rtl;
}

.chosen-rtl .chosen-search input[type=text].nitro-lazy {
	background-image: none !important;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
	.chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span, .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container-single .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-rtl .chosen-search input[type=text] {
		background-image: url("https://lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite@2x.png") !important;
		background-size: 52px 37px !important;
		background-repeat: no-repeat !important;
	}
	
	.chosen-container .chosen-results-scroll-down span.nitro-lazy, .chosen-container .chosen-results-scroll-up span.nitro-lazy, .chosen-container-multi .chosen-choices .search-choice .search-choice-close.nitro-lazy, .chosen-container-single .chosen-search input[type=text].nitro-lazy, .chosen-container-single .chosen-single abbr.nitro-lazy, .chosen-container-single .chosen-single div b.nitro-lazy, .chosen-rtl .chosen-search input[type=text].nitro-lazy {
		background-image: none !important;
	}
}

.product-anchors {
	margin-left: 0;
	display: inline-block;
	width: 100%;
}

@media print,screen and (min-width:48em) {
	.product-anchors.product-anchors-alt li:nth-child(odd) {
		width: calc(100% / 4 - .5rem);
		margin: 0 .5rem 1rem 0;
	}
}

@media print,screen and (min-width:48em) {
	.product-anchors.product-anchors-alt li {
		width: calc(100% / 4 - .5rem);
		margin: 0 .5rem 1rem 0;
	}
}

.product-anchors li {
	margin-left: 0;
	margin-bottom: 1rem;
	list-style-type: none;
}

@media print,screen and (min-width:48em) {
	.product-anchors li:nth-child(odd) {
		width: calc(100% / 2 - .5rem);
		margin-right: .5rem;
	}
}

.product-anchors li a {
	display: block;
	font-size: .75rem;
	padding: .5625rem 0 .5625rem .5625rem;
	margin-top: -.0625rem;
	border: solid #d5d5d5;
	border-width: 1px 0 1px 0;
}

.product-anchors li a:hover {
	background-color: #f1f1f1;
}

@media print,screen and (min-width:48em) {
	.product-anchors li {
		float: left;
		width: 50%;
	}
}

.tag {
	font-size: .375rem;
	line-height: .625rem;
	padding: 0 .1875rem;
	margin: 0 0 0 .25rem;
	vertical-align: middle;
}

.tag--new {
	color: #090;
	border: 1px solid #090;
}

.tag--eol {
	color: #ff8c00;
	border: 1px solid #ff8c00;
}

.sites-button {
	background: #005e9d;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 -2px 0 rgba(0, 0, 0, .2) inset;
	border-radius: 3px;
	border: none;
}

.button, .wp-block-button .wp-block-button__link, button, input[type=submit] {
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	padding: .375rem 1.1875rem;
	color: #fff;
	font-size: .75rem;
	background-color: #005e9d;
	border-color: #005e9d;
	margin: 0 0 .5rem;
	text-transform: uppercase;
	transition: background-color .3s ease-out;
	line-height: normal;
}

.button.round, .wp-block-button .round.wp-block-button__link, button.round, input[type=submit].round {
	border-radius: 6.25rem;
}

.button.transparent, .wp-block-button .transparent.wp-block-button__link, button.transparent, input[type=submit].transparent {
	background-color: transparent;
	color: #005e9d;
	border-color: #005e9d;
}

.button.transparent:hover, .wp-block-button .transparent.wp-block-button__link:hover, button.transparent:hover, input[type=submit].transparent:hover {
	background-color: transparent;
	color: #005e9d;
	border-color: #005e9d;
}

.button:hover, .wp-block-button .wp-block-button__link:hover, button:hover, input[type=submit]:hover {
	background-color: #007ac1;
	border-color: #007ac1;
}

.button-large {
	padding: .875rem 1.75rem;
	font-size: 1rem;
}

.wp-block-button.is-style-button-round .wp-block-button__link {
	border-radius: 6.25rem;
}

.wp-block-button.is-style-button-round-large .wp-block-button__link {
	border-radius: 6.25rem;
	padding: .875rem 1.75rem;
	font-size: 1rem;
}

.following-application a {
	background-color: #005e9d;
	min-height: 80px;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	font-size: .8125rem;
	font-weight: 600;
	text-transform: none;
	margin: 0 0 1rem;
	color: #fff;
}

.following-application a::after {
	content: "";
	height: 20px;
	width: 20px;
	display: block;
	margin: 3px auto 0;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/circle-arrow-white.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.following-application a:hover {
	color: rgba(255, 255, 255, .3);
}

.following-application a:hover::after {
	opacity: .3;
}

.featured-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 6.25rem;
}

@media print,screen and (min-width:48em) {
	.featured-hero {
		height: 12.5rem;
	}
}

@media screen and (min-width:75em) {
	.featured-hero {
		height: 25rem;
	}
}

.dotted {
	border-style: dashed;
	margin: 2rem 0;
}

[data-whatinput=mouse] a:focus, button:focus, button:focus [data-whatinput=touch] a:focus {
	outline: 0;
}

.ginput_container_radio ul.gfield_radio li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
}

.ginput_container_radio ul.gfield_radio li input, .ginput_container_radio ul.gfield_radio li label {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.ginput_container_radio ul.gfield_radio li input {
	margin-bottom: 4px;
	cursor: pointer;
}

.ginput_container_checkbox ul.gfield_checkbox li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
}

.ginput_container_checkbox ul.gfield_checkbox li input, .ginput_container_checkbox ul.gfield_checkbox li label {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.ginput_container_checkbox ul.gfield_checkbox li input {
	margin-bottom: 7px;
	cursor: pointer;
}

.gform_ajax_spinner {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: .5rem;
}

.gform_ajax_spinner svg {
	display: block;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: 0;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:after, .slick-track:before {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-loading .slick-list {
	background: #fff url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/ajax-loader.gif") center center no-repeat;
}

.slick-loading .slick-list.nitro-lazy {
	background-image: none !important;
}

.slick-next, .slick-prev {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: 0 0;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: 0;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
	outline: 0;
	background: 0 0;
	color: transparent;
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
	opacity: 1;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
	opacity: .25;
}

.slick-next:before, .slick-prev:before {
	font-family: slick;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: .75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir=rtl] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir=rtl] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: -25px;
}

[dir=rtl] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir=rtl] .slick-next:before {
	content: "←";
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -45px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 1px solid #000;
	background: 0 0;
	display: block;
	height: 20px;
	width: 20px;
	outline: 0;
	font-size: 0;
	color: transparent;
	padding: 0;
	cursor: pointer;
	border-radius: 100%;
	padding-right: 0;
	padding-top: 1px;
	text-align: center;
	line-height: 17px;
}

.slick-dots li button:focus, .slick-dots li button:hover {
	outline: 0;
}

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
	opacity: 1;
}

.slick-dots li button:before {
	top: 0;
	left: 0;
	content: "•";
	width: 10px !important;
	height: 10px !important;
	font-family: slick;
	font-size: 11px;
	color: #fff;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: #000;
	opacity: 1;
}

.info-container {
	background-color: #f9f9f9;
	padding: 2.905rem 0;
	font-weight: 100;
}

.info-container .title {
	text-align: center;
	font-weight: 100;
	font-size: 1.4375rem;
	color: #005e9d;
	line-height: 2.16rem;
	margin: .8rem 0 1.2rem;
}

.post-item-wrapper {
	margin-bottom: 1.5rem;
}

.post-item-wrapper .date {
	color: #005e9d;
	font-size: .8125rem;
	font-weight: 400;
	margin: 0;
}

.post-item-wrapper .post-content {
	color: #333;
	font-size: .8125rem;
	margin: 0;
	line-height: 1.375rem;
	display: block;
	font-weight: 100;
}

.post-item-wrapper .post-content a:hover, .post-item-wrapper .post-content.link:hover {
	color: #0a0a0a;
}

.banner {
	background-size: cover;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin: 0;
	padding: 3.125rem 0 0;
}

.banner.darkblue {
	background-color: #005e9d;
}

.banner.white {
	background-color: #fff;
}

.banner .grid-container {
	height: inherit;
}

.banner .grid-container .inner {
	height: inherit;
}

.banner.top-left .inner {
	justify-content: flex-start;
}

.banner.center-left .inner {
	justify-content: center;
}

.banner.bottom-left .inner {
	justify-content: flex-end;
	padding-bottom: 2.4rem;
}

.banner.bottom-left .inner .banner-content h1 {
	font-weight: 600;
	font-size: 1.3125rem;
	margin-bottom: 1.0625rem;
}

@media print,screen and (min-width:48em) {
	.banner.bottom-left .inner .banner-content h1 {
		font-size: 2.0625rem;
	}
}

.banner.bottom-right .inner {
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
	padding-bottom: 2.4rem;
}

.banner.bottom-right .inner .banner-content h1 {
	font-weight: 600;
	font-size: 1.3125rem;
	margin-bottom: 1.0625rem;
}

@media print,screen and (min-width:48em) {
	.banner.bottom-right .inner .banner-content h1 {
		font-size: 2.0625rem;
	}
}

.banner.landingpage {
	min-height: 12.5rem;
	margin-bottom: 4rem;
}

@media print,screen and (min-width:48em) {
	.banner.landingpage {
		height: 31.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.landingpage .banner-content h1 {
		font-size: 51px;
		font-weight: 300;
	}
}

.banner.landingpage .banner-content p {
	font-weight: 600;
	font-size: .875rem;
	text-transform: uppercase;
}

.banner.subpage {
	min-height: 12.5rem;
	margin-bottom: 1.5625rem;
}

@media print,screen and (min-width:48em) {
	.banner.subpage.small {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.subpage.medium {
		height: 18.75rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.subpage.tall {
		height: 25rem;
	}
}

.banner.subpage .banner-content.small {
	max-width: 22.375rem;
}

.banner.subpage .banner-content.wide {
	max-width: 32rem;
}

@media print,screen and (min-width:48em) {
	.banner.subpage .banner-content h1 {
		font-size: 2.5625rem;
	}
}

.banner.subpage .banner-content h1.thin {
	font-weight: 100;
}

.banner.subpage .banner-content h1.bold {
	font-weight: 600;
}

.banner.subpage .banner-content h1 .tag--eol, .banner.subpage .banner-content h1 .tag--new {
	color: #fff;
	border-color: #fff;
	vertical-align: top;
}

@media print,screen and (min-width:48em) {
	.banner.blog {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.errorbanner {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.blog-category {
		height: 25rem;
	}
}

.banner.blog-category .grid-container {
	height: auto;
}

.banner.blog-category .banner-content {
	padding: 130.938px 0;
}

.banner.blog-category h1 {
	font-weight: 100 !important;
	font-size: 2.56rem;
}

@media print,screen and (min-width:48em) {
	.banner .blog-category .blog {
		height: 25rem;
	}
}

.banner .blog-category .blog .grid-container {
	height: auto;
}

.banner .blog-category .blog .banner-content {
	padding: 130.938px 0;
}

.banner .blog-category .blog h1 {
	font-weight: 100 !important;
	font-size: 2.56rem;
}

@media print,screen and (min-width:48em) {
	.banner.search {
		height: 11.25rem;
	}
}

.banner.leadership {
	background-position: 65% center;
}

@media print,screen and (min-width:64em) {
	.banner.leadership {
		background-position: center;
	}
}

.banner.leadership .banner-content {
	max-width: 70%;
}

.banner.leadership .banner-content h1 {
	font-size: 1.5625rem;
}

@media print,screen and (min-width:48em) {
	.banner.leadership .banner-content h1 {
		font-size: 3.125rem;
	}
}

@media print,screen and (min-width:64em) {
	.banner.leadership .banner-content h1 {
		font-size: 5.625rem;
	}
}

.banner.leadership .banner-content h2 {
	color: #fff;
	font-weight: 100;
	margin: .75rem 0 1.25rem;
	line-height: normal;
}

@media print,screen and (min-width:48em) {
	.banner.leadership .banner-content h2 {
		font-size: 1.875rem;
	}
}

@media print,screen and (min-width:64em) {
	.banner.leadership .banner-content h2 {
		font-size: 3.125rem;
		line-height: 4.6875rem;
	}
}

.banner .banner-content {
	width: 100%;
	max-width: 22.375rem;
}

.banner .banner-content h1 {
	color: #fff;
	font-size: 1.3125rem;
	margin: 0 0 .375rem;
}

.banner .banner-content p {
	margin: 0;
	color: #fff;
	font-size: .875rem;
}

@media print,screen and (min-width:48em) {
	.banner .banner-content p {
		font-size: 1.1875rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner {
		padding: 0;
		background-position: 40% 50%;
	}
}

@media print,screen and (min-width:64em) {
	.banner {
		background-position: 50% 0;
	}
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-events-overview .banner.center-left.subpage .banner-content, .page-template-tpl-file-resources .banner.center-left.subpage .banner-content, .page-template-tpl-lit-by-lumileds .banner.center-left.subpage .banner-content, .page-template-tpl-lumileds-videos .banner.center-left.subpage .banner-content, .page-template-tpl-media-library .banner.center-left.subpage .banner-content, .page-template-tpl-press-contact .banner.center-left.subpage .banner-content {
		margin-bottom: 5.375rem;
	}
}

#bottom-nav {
	max-width: 100%;
}

#bottom-nav .cell {
	position: relative;
	color: #fff;
	background-size: cover;
	padding: 0;
}

#bottom-nav .cell span {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 600;
}

#bottom-nav .cell span::after {
	content: "";
	display: block;
	width: 3.4375rem;
	margin: .3125rem 0 0;
	height: .3125rem;
	background-size: contain;
	background-repeat: no-repeat;
}

#bottom-nav .cell#prev {
	background-color: #005e9d;
	padding: 2.47% 0 2.47% 2.47%;
}

#bottom-nav .cell#prev span::after {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/arrow-left.png");
	background-position: left;
}

#bottom-nav .cell#next {
	background-color: #00aeef;
	text-align: right;
	padding: 2.47% 2.47% 2.47% 0;
}

#bottom-nav .cell#next span::after {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/arrow-right.png");
	background-position: right;
	margin: 5px 0 0 auto;
}

#bottom-nav .cell:hover {
	opacity: .9;
}

#breadcrumbs {
	font-size: .64rem;
	margin: .64rem .96rem 1.28rem 0;
}

.bigger-breadcrumbs #breadcrumbs {
	font-size: .88rem;
	font-weight: 100;
	color: #333;
}

.blog-breadcrumbs #breadcrumbs {
	padding-top: 1.6rem;
}

#breadcrumbs-container {
	width: 100%;
}

#intro-text {
	padding-bottom: 1.5625rem;
}

#intro-text p {
	font-size: 1.125rem;
	line-height: 1.4375rem;
	font-weight: 100;
	margin: 0;
}

.main-row {
	margin-bottom: 5.625rem;
}

.news-summary {
	margin: 0 0 1.4375rem;
}

.news-summary .news-date {
	color: #005e9d;
	font-size: .8125rem;
	font-weight: 400;
}

.news-summary .news-title {
	font-size: .875rem;
}

#leftnav ul {
	list-style-type: none;
	margin: 0;
}

#leftnav ul li {
	list-style: none;
	margin: 0;
	text-transform: uppercase;
	font-size: .8125rem;
	line-height: 1.375rem;
	color: #333;
}

#leftnav ul li a {
	display: block;
	padding: .125rem .375rem .375rem 0;
	color: #333;
	min-height: .75rem;
	line-height: 1rem;
	text-decoration: none;
}

#leftnav ul li .top-header {
	padding-left: .75rem;
}

#leftnav ul li .children li {
	text-transform: none;
}

#leftnav ul li .children li a {
	padding-bottom: .125rem;
	padding-left: 1.5rem;
}

#leftnav ul li .children li.current a {
	background-position: .9375rem .4375rem;
}

#leftnav ul li.current a {
	color: #005e9d;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/menu-arrow.png");
	background-position: .25rem .4375rem;
	background-repeat: no-repeat;
}

#leftnav ul li.current a.nitro-lazy {
	background-image: none !important;
}

#leftnav ul li.menu-subtitle {
	margin-left: .75rem;
}

.is-style-panel, .panel {
	padding: .8rem;
	border-bottom: .1875rem solid #ccc;
	color: #333;
	background-color: #f2f2f2;
	margin-bottom: 1rem;
}

.is-style-panel h3, .panel h3 {
	color: #143766;
	margin-bottom: 1.2rem;
	font-weight: 400;
	text-transform: uppercase;
	font-size: .9375rem;
}

.is-style-panel h3:first-child, .panel h3:first-child {
	margin-top: 0;
}

.is-style-panel li, .panel li {
	margin-left: 1.12rem;
	font-size: .88rem;
	font-weight: 100;
	line-height: 1.36rem;
	margin-bottom: .4rem;
	list-style-type: square;
}

.is-style-panel a:hover, .panel a:hover {
	color: #0a0a0a;
}

.is-style-panel p, .panel p, .panel a {
	font-size: 1rem;
	line-height: 1.44rem;
	font-weight: 100;
	margin: .48rem 0 .88rem;
	color: #143766;
}

@media print,screen and (min-width:48em) {
	#pressbar .panel:nth-child(2) li .wrap {
		position: relative;
		z-index: 2;
		display: inline-block;
		width: 77%;
		padding-right: 2.5rem;
	}
	
	#pressbar .panel:nth-child(2) li .wrap a span {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 1;
	}
}

#pressbar .panel h4 {
	line-height: 1;
	margin: 0 0 .5rem;
	color: #333;
}

.reveal-overlay {
	background-color: rgba(26, 26, 26, .75);
	z-index: 150000;
}

.reveal-overlay .reveal {
	background-color: transparent;
	border: none;
	padding: 0;
	padding: 0 1.25rem;
	outline: 0;
	top: 0 !important;
	height: 100%;
	max-width: 29.75rem;
	overflow: visible;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

@media print,screen and (min-width:48em) {
	.reveal-overlay .reveal {
		padding: 0;
	}
}

.reveal-overlay .reveal .content-wrap {
	position: relative;
	margin: 0 auto;
	overflow: visible;
}

.reveal-overlay .reveal .content-wrap .img-wrap {
	text-align: center;
	background-color: #fff;
}

.reveal-overlay .reveal .content-wrap .img-wrap img {
	max-height: 426px;
}

.reveal-overlay .reveal .content-wrap .title {
	color: #eaeaea;
	font-size: .6875rem;
	font-weight: 400;
	line-height: 1.125rem;
	padding: .9375rem 0 .4375rem;
}

.reveal-overlay .reveal .close-button {
	background-color: transparent;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/png/sprite.png");
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 2.0625rem;
	height: 2.0625rem;
	cursor: pointer;
	padding: 0;
	right: -1rem;
	top: -.9375rem;
}

.reveal-overlay .reveal .close-button.nitro-lazy {
	background-image: none !important;
}

.reveal-overlay .reveal .close-button:hover {
	background-position: -33px 0;
}

.sustainability-menu {
	padding-top: .75rem;
	padding-bottom: 6.25rem;
}

.sustainability-menu .medium-7 h2 {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: normal;
	margin-bottom: .375rem;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-7 h2 {
		font-size: 2.875rem;
		margin-bottom: 1.375rem;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav {
	background-color: #005e9d;
	padding: 1.625rem 2.375rem;
	margin: 0 -.75rem;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-5 #sustainabilitynav {
		margin: 0;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav ul {
	margin: 0;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item {
	list-style-type: none;
	margin-left: .5rem;
	font-weight: 400;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item a {
	display: block;
	color: #fff;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children {
	margin: .8125rem .375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children>a {
	font-size: .875rem;
	line-height: 1.8125rem;
	font-weight: 400;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children>a {
		font-size: 1.1875rem;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children.current_page_item>a {
	font-weight: 700;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children {
	margin-left: .375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item {
	margin: 0 0 .375rem .375rem;
	line-height: .9375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item a {
	line-height: 1rem;
	font-size: .8125rem;
	display: inline-block;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item::before {
	content: ">";
	color: #fff;
	display: inline-block;
	width: .75rem;
	margin-left: -.75rem;
	font-size: .75rem;
	vertical-align: top;
	font-weight: 400;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item.current_page_item a {
	font-weight: 700;
}

.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1005;
	background-color: rgba(10, 10, 10, .45);
	overflow-y: auto;
	display: none;
}

.overlay .form {
	background-color: transparent;
	border: none;
	outline: 0;
	top: 0;
	height: 100%;
	max-width: 37.5rem;
	overflow: visible;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

.overlay .form .form-content-wrap {
	position: relative;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 10px;
}

.overlay .form .form-content-wrap .form-wrap {
	font-weight: 400;
}

.overlay .form .form-content-wrap .form-wrap p {
	font-size: .9rem;
	line-height: 1.5rem;
	font-weight: 100;
	margin: .5rem 0 .9rem;
	color: #333;
}

.overlay .form .form-content-wrap .form-wrap .close-button {
	background-color: #005e9d;
	color: #fff;
	right: 4px;
	top: 4px;
	width: 30px;
	height: 30px;
	text-transform: lowercase;
	border-radius: 50%;
	font-size: 1.3rem;
	padding: 0;
}

.overlay .form .form-content-wrap .form-wrap .close-button:hover {
	background-color: #007ac1;
}

.back-to-top {
	text-align: right;
	padding-top: .875rem;
}

.back-to-top .to-top {
	margin: 0;
	background-color: rgba(0, 0, 0, .3);
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50px;
	transition: all .3s ease-in-out 0s;
	line-height: 30px;
}

.back-to-top .to-top .fa {
	transition: all .3s ease-in-out 0s;
	position: relative;
	top: 0;
}

.back-to-top .to-top:hover {
	background-color: rgba(0, 0, 0, .7);
}

.back-to-top .to-top:hover .fa {
	top: -.1875rem;
}

@media print,screen and (min-width:48em) {
	#lists-with-image ul {
		margin-bottom: 0;
		color: #333;
	}
}

#lists-with-image .image-cell {
	text-align: center;
}

#lists-with-image .image-cell .hide-for-small-only {
	max-width: 27.4375rem;
}

.wp-block-image.is-style-solution-to-consider {
	position: relative;
	margin: 0 0 1rem;
}

.wp-block-image.is-style-solution-to-consider>a {
	display: block;
	border: 1px solid #ccc;
	border-radius: .125rem;
}

.wp-block-image.is-style-solution-to-consider>a img {
	opacity: .4;
	max-height: 11.875rem;
}

.wp-block-image.is-style-solution-to-consider figcaption {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	margin: 0;
	font-weight: 600;
	font-size: .8125rem;
	text-align: center;
}

.wp-block-image.is-style-solution-to-consider figcaption a {
	display: block;
	color: #0a0a0a;
}

.wp-block-image.is-style-solution-to-consider figcaption a::after {
	content: "";
	height: 20px;
	width: 20px;
	display: block;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/circle-arrow.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 2.25rem auto 0;
}

.wp-block-image.is-style-solution-to-consider:hover>a img {
	opacity: 1;
}

.wp-block-image.is-style-solution-to-consider:hover figcaption {
	opacity: .4;
}

.section.section-blue {
	background-color: #005e9d;
	color: #fff;
}

.section.section-blue h2 {
	color: #fff;
}

.section.section-blue .button, .section.section-blue .wp-block-button .wp-block-button__link, .wp-block-button .section.section-blue .wp-block-button__link {
	background-color: #fff;
	color: #005e9d;
}

.section.section-blue .button:hover, .section.section-blue .wp-block-button .wp-block-button__link:hover, .wp-block-button .section.section-blue .wp-block-button__link:hover {
	background-color: #f1f1f1;
}

.section.section-light-gray {
	background-color: #f1f1f1;
}

.section.section-dark-gray {
	background-color: #666;
	color: #fff;
}

.section.section-dark-gray h2 {
	color: #fff;
}

.section.section-dark-gray a {
	color: #fff;
}

.spotlight-block {
	height: 23.75rem;
	position: relative;
	background-size: cover;
	text-align: right;
	color: #fff;
	text-transform: uppercase;
	font-size: .875rem;
	font-weight: 600;
	padding: 1.1875rem;
	margin-bottom: 1.625rem;
}

#social-links ul {
	margin: 0;
	float: left;
	margin-bottom: .664rem;
	margin-top: .83rem;
}

@media print,screen and (min-width:48em) {
	#social-links ul {
		margin-top: 0;
		margin-bottom: 0;
		float: right;
		padding: 2px 0;
	}
}

#social-links ul a, #social-links ul li {
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	font-size: 1.125rem;
	background-color: #fff;
	color: #005e9d;
	border-radius: 100px;
	text-align: center;
	text-align: center;
	float: left;
	list-style: none;
	margin-right: .3125rem;
	margin-left: 0;
	margin-bottom: 0;
}

@media print,screen and (min-width:48em) {
	#social-links ul a, #social-links ul li {
		font-size: .875rem;
		width: 1.625rem;
		height: 1.625rem;
		line-height: 1.625rem;
	}
}

#social-links ul a::after, #social-links ul li::after {
	content: "";
}

#social-links ul a svg, #social-links ul li svg {
	margin-top: 6px;
	width: 14px;
	height: 14px;
	fill: #005e9d;
}

#social-links a:hover {
	background-color: #333;
}

.sustainability-table .bigger-font {
	margin-bottom: 1.5625rem;
}

.sustainability-table .bigger-font p {
	font-size: 1.5rem;
	font-weight: 100;
	line-height: normal;
	color: #0a0a0a;
	max-width: 34.375rem;
}

.sustainability-table h2 {
	font-size: 1.5rem;
	margin-bottom: .375rem;
	font-weight: 300;
	line-height: nomal;
}

@media print,screen and (min-width:64em) {
	.sustainability-table h2 {
		font-size: 2.875rem;
		margin-bottom: 2.36rem;
	}
}

.goals-table tbody, .goals-table thead {
	border: none;
}

.goals-table tr:not(:last-child) td:first-child {
	border-bottom: 4px solid #01aff1;
}

.goals-table tr:not(:last-child) td:last-child {
	border-bottom: 4px solid #49b435;
}

.goals-table tr th {
	border: 0;
	color: #fff;
	font-size: .875rem;
	padding: .9375rem;
	font-weight: 700;
}

.goals-table tr th:first-child {
	background-color: #01aff1;
}

.goals-table tr th:last-child {
	background-color: #49b435;
}

.goals-table tr td {
	border: 0;
	vertical-align: top;
	color: #0a0a0a;
	font-size: .875rem;
	padding: .9375rem;
}

.goals-table tr td:first-child {
	background-color: #c7f0fc;
}

.goals-table tr td:last-child {
	background-color: #e4f1de;
}

.goals-table tr td p {
	margin: 0;
}

.section-padding {
	padding: 1.625rem 0;
}

.gray-section {
	background-color: #f1f1f1;
	padding: 2.375rem 0 1.625rem;
}

.tablesorter th, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==");
	background-position: center right;
	background-repeat: no-repeat;
	cursor: pointer;
}

.tablesorter th.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.tablesorter th.up, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7");
}

.tablesorter th.up.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.tablesorter th.down, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7");
}

.tablesorter th.down.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.lv_window_lumileds .lv_content {
	background-color: #fff;
}

.lv_window_lumileds .lv_button_top_close {
	right: 2.8125rem;
}

.lv_window_lumileds .lv_spinner_wrapper+canvas {
	display: none !important;
}

.lv_window_lumileds .lv_slider {
	margin-top: -.625rem;
}

.loader {
	text-align: center;
	opacity: 0;
	transition: .4s;
}

.loader.loading {
	opacity: 1;
}

.guides-brochures .file-item {
	margin-bottom: 1.5rem;
}

.guides-brochures img {
	border: #efefef solid 1px;
	margin-bottom: .625rem;
	padding: 2px;
}

/*!
*/
.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.chosen-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	border: 1px solid #aaa;
	border-top: 0;
	background: #fff;
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .chosen-single .group-name, .chosen-container .search-choice .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 400;
	color: #999;
}

.chosen-container .chosen-single .group-name:after, .chosen-container .search-choice .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 8px;
	height: 25px;
	border: 1px solid #aaa;
	border-radius: 5px;
	background-color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
	background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px;
}

.chosen-container-single .chosen-default {
	color: #999;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 6px;
	right: 26px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-single .chosen-single abbr.nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 18px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat 0 2px;
}

.chosen-container-single .chosen-single div b.nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #aaa;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat 100% -20px;
	font-size: 1em;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
}

.chosen-container-single .chosen-search input[type=text].nitro-lazy {
	background-image: none !important;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	-webkit-clip-path: inset(100% 100%);
	clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: 700;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0 5px;
	width: 100%;
	height: auto;
	border: 1px solid #aaa;
	background-color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
	background-image: linear-gradient(#eee 1%, #fff 15%);
	cursor: text;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
	margin: 1px 0;
	padding: 0;
	height: 25px;
	outline: 0;
	border: 0 !important;
	background: 0 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #999;
	font-size: 100%;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
	width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	margin: 3px 5px 3px 0;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaa;
	max-width: 100%;
	border-radius: 3px;
	background-color: #eee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-size: 100% 19px;
	background-repeat: repeat-x;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	color: #333;
	line-height: 13px;
	cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 4px;
	right: 3px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") -42px 1px no-repeat;
	font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close.nitro-lazy {
	background-image: none !important;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #aaa;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
	background-image: linear-gradient(#eee 20%, #fff 80%);
	-webkit-box-shadow: 0 1px 0 #fff inset;
	box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222 !important;
}

.chosen-disabled {
	opacity: .5 !important;
	cursor: default;
}

.chosen-disabled .chosen-single {
	cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
	direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
	padding: 4px 5px 4px 20px;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite.png") no-repeat -30px -20px;
	direction: rtl;
}

.chosen-rtl .chosen-search input[type=text].nitro-lazy {
	background-image: none !important;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
	.chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span, .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container-single .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-rtl .chosen-search input[type=text] {
		background-image: url("https://lumileds.com/wp-content/themes/lumileds/assets/css/chosen-sprite@2x.png") !important;
		background-size: 52px 37px !important;
		background-repeat: no-repeat !important;
	}
	
	.chosen-container .chosen-results-scroll-down span.nitro-lazy, .chosen-container .chosen-results-scroll-up span.nitro-lazy, .chosen-container-multi .chosen-choices .search-choice .search-choice-close.nitro-lazy, .chosen-container-single .chosen-search input[type=text].nitro-lazy, .chosen-container-single .chosen-single abbr.nitro-lazy, .chosen-container-single .chosen-single div b.nitro-lazy, .chosen-rtl .chosen-search input[type=text].nitro-lazy {
		background-image: none !important;
	}
}

.product-anchors {
	margin-left: 0;
	display: inline-block;
	width: 100%;
}

@media print,screen and (min-width:48em) {
	.product-anchors.product-anchors-alt li:nth-child(odd) {
		width: calc(100% / 4 - .5rem);
		margin: 0 .5rem 1rem 0;
	}
}

@media print,screen and (min-width:48em) {
	.product-anchors.product-anchors-alt li {
		width: calc(100% / 4 - .5rem);
		margin: 0 .5rem 1rem 0;
	}
}

.product-anchors li {
	margin-left: 0;
	margin-bottom: 1rem;
	list-style-type: none;
}

@media print,screen and (min-width:48em) {
	.product-anchors li:nth-child(odd) {
		width: calc(100% / 2 - .5rem);
		margin-right: .5rem;
	}
}

.product-anchors li a {
	display: block;
	font-size: .75rem;
	padding: .5625rem 0 .5625rem .5625rem;
	margin-top: -.0625rem;
	border: solid #d5d5d5;
	border-width: 1px 0 1px 0;
}

.product-anchors li a:hover {
	background-color: #f1f1f1;
}

@media print,screen and (min-width:48em) {
	.product-anchors li {
		float: left;
		width: 50%;
	}
}

.tag {
	font-size: .375rem;
	line-height: .625rem;
	padding: 0 .1875rem;
	margin: 0 0 0 .25rem;
	vertical-align: middle;
}

.tag--new {
	color: #090;
	border: 1px solid #090;
}

.tag--eol {
	color: #ff8c00;
	border: 1px solid #ff8c00;
}

.sites-button {
	background: #005e9d;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 -2px 0 rgba(0, 0, 0, .2) inset;
	border-radius: 3px;
	border: none;
}

.button, .wp-block-button .wp-block-button__link, button, input[type=submit] {
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	padding: .375rem 1.1875rem;
	color: #fff;
	font-size: .75rem;
	background-color: #005e9d;
	border-color: #005e9d;
	margin: 0 0 .5rem;
	text-transform: uppercase;
	transition: background-color .3s ease-out;
	line-height: normal;
}

.button.round, .wp-block-button .round.wp-block-button__link, button.round, input[type=submit].round {
	border-radius: 6.25rem;
}

.button.transparent, .wp-block-button .transparent.wp-block-button__link, button.transparent, input[type=submit].transparent {
	background-color: transparent;
	color: #005e9d;
	border-color: #005e9d;
}

.button.transparent:hover, .wp-block-button .transparent.wp-block-button__link:hover, button.transparent:hover, input[type=submit].transparent:hover {
	background-color: transparent;
	color: #005e9d;
	border-color: #005e9d;
}

.button:hover, .wp-block-button .wp-block-button__link:hover, button:hover, input[type=submit]:hover {
	background-color: #007ac1;
	border-color: #007ac1;
}

.button-large {
	padding: .875rem 1.75rem;
	font-size: 1rem;
}

.wp-block-button.is-style-button-round .wp-block-button__link {
	border-radius: 6.25rem;
}

.wp-block-button.is-style-button-round-large .wp-block-button__link {
	border-radius: 6.25rem;
	padding: .875rem 1.75rem;
	font-size: 1rem;
}

.following-application a {
	background-color: #005e9d;
	min-height: 80px;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	font-size: .8125rem;
	font-weight: 600;
	text-transform: none;
	margin: 0 0 1rem;
	color: #fff;
}

.following-application a::after {
	content: "";
	height: 20px;
	width: 20px;
	display: block;
	margin: 3px auto 0;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/circle-arrow-white.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.following-application a:hover {
	color: rgba(255, 255, 255, .3);
}

.following-application a:hover::after {
	opacity: .3;
}

.featured-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 6.25rem;
}

@media print,screen and (min-width:48em) {
	.featured-hero {
		height: 12.5rem;
	}
}

@media screen and (min-width:75em) {
	.featured-hero {
		height: 25rem;
	}
}

.dotted {
	border-style: dashed;
	margin: 2rem 0;
}

[data-whatinput=mouse] a:focus, button:focus, button:focus [data-whatinput=touch] a:focus {
	outline: 0;
}

.ginput_container_radio ul.gfield_radio li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
}

.ginput_container_radio ul.gfield_radio li input, .ginput_container_radio ul.gfield_radio li label {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.ginput_container_radio ul.gfield_radio li input {
	margin-bottom: 4px;
	cursor: pointer;
}

.ginput_container_checkbox ul.gfield_checkbox li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
}

.ginput_container_checkbox ul.gfield_checkbox li input, .ginput_container_checkbox ul.gfield_checkbox li label {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.ginput_container_checkbox ul.gfield_checkbox li input {
	margin-bottom: 7px;
	cursor: pointer;
}

.gform_ajax_spinner {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: .5rem;
}

.gform_ajax_spinner svg {
	display: block;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: 0;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:after, .slick-track:before {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-loading .slick-list {
	background: #fff url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/ajax-loader.gif") center center no-repeat;
}

.slick-loading .slick-list.nitro-lazy {
	background-image: none !important;
}

.slick-next, .slick-prev {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: 0 0;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: 0;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
	outline: 0;
	background: 0 0;
	color: transparent;
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
	opacity: 1;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
	opacity: .25;
}

.slick-next:before, .slick-prev:before {
	font-family: slick;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: .75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir=rtl] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir=rtl] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: -25px;
}

[dir=rtl] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir=rtl] .slick-next:before {
	content: "←";
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -45px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 1px solid #000;
	background: 0 0;
	display: block;
	height: 20px;
	width: 20px;
	outline: 0;
	font-size: 0;
	color: transparent;
	padding: 0;
	cursor: pointer;
	border-radius: 100%;
	padding-right: 0;
	padding-top: 1px;
	text-align: center;
	line-height: 17px;
}

.slick-dots li button:focus, .slick-dots li button:hover {
	outline: 0;
}

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
	opacity: 1;
}

.slick-dots li button:before {
	top: 0;
	left: 0;
	content: "•";
	width: 10px !important;
	height: 10px !important;
	font-family: slick;
	font-size: 11px;
	color: #fff;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: #000;
	opacity: 1;
}

.info-container {
	background-color: #f9f9f9;
	padding: 2.905rem 0;
	font-weight: 100;
}

.info-container .title {
	text-align: center;
	font-weight: 100;
	font-size: 1.4375rem;
	color: #005e9d;
	line-height: 2.16rem;
	margin: .8rem 0 1.2rem;
}

.post-item-wrapper {
	margin-bottom: 1.5rem;
}

.post-item-wrapper .date {
	color: #005e9d;
	font-size: .8125rem;
	font-weight: 400;
	margin: 0;
}

.post-item-wrapper .post-content {
	color: #333;
	font-size: .8125rem;
	margin: 0;
	line-height: 1.375rem;
	display: block;
	font-weight: 100;
}

.post-item-wrapper .post-content a:hover, .post-item-wrapper .post-content.link:hover {
	color: #0a0a0a;
}

.banner {
	background-size: cover;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin: 0;
	padding: 3.125rem 0 0;
}

.banner.darkblue {
	background-color: #005e9d;
}

.banner.white {
	background-color: #fff;
}

.banner .grid-container {
	height: inherit;
}

.banner .grid-container .inner {
	height: inherit;
}

.banner.top-left .inner {
	justify-content: flex-start;
}

.banner.center-left .inner {
	justify-content: center;
}

.banner.bottom-left .inner {
	justify-content: flex-end;
	padding-bottom: 2.4rem;
}

.banner.bottom-left .inner .banner-content h1 {
	font-weight: 600;
	font-size: 1.3125rem;
	margin-bottom: 1.0625rem;
}

@media print,screen and (min-width:48em) {
	.banner.bottom-left .inner .banner-content h1 {
		font-size: 2.0625rem;
	}
}

.banner.bottom-right .inner {
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
	padding-bottom: 2.4rem;
}

.banner.bottom-right .inner .banner-content h1 {
	font-weight: 600;
	font-size: 1.3125rem;
	margin-bottom: 1.0625rem;
}

@media print,screen and (min-width:48em) {
	.banner.bottom-right .inner .banner-content h1 {
		font-size: 2.0625rem;
	}
}

.banner.landingpage {
	min-height: 12.5rem;
	margin-bottom: 4rem;
}

@media print,screen and (min-width:48em) {
	.banner.landingpage {
		height: 31.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.landingpage .banner-content h1 {
		font-size: 51px;
		font-weight: 300;
	}
}

.banner.landingpage .banner-content p {
	font-weight: 600;
	font-size: .875rem;
	text-transform: uppercase;
}

.banner.subpage {
	min-height: 12.5rem;
	margin-bottom: 1.5625rem;
}

@media print,screen and (min-width:48em) {
	.banner.subpage.small {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.subpage.medium {
		height: 18.75rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.subpage.tall {
		height: 25rem;
	}
}

.banner.subpage .banner-content.small {
	max-width: 22.375rem;
}

.banner.subpage .banner-content.wide {
	max-width: 32rem;
}

@media print,screen and (min-width:48em) {
	.banner.subpage .banner-content h1 {
		font-size: 2.5625rem;
	}
}

.banner.subpage .banner-content h1.thin {
	font-weight: 100;
}

.banner.subpage .banner-content h1.bold {
	font-weight: 600;
}

.banner.subpage .banner-content h1 .tag--eol, .banner.subpage .banner-content h1 .tag--new {
	color: #fff;
	border-color: #fff;
	vertical-align: top;
}

@media print,screen and (min-width:48em) {
	.banner.blog {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.errorbanner {
		height: 11.25rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner.blog-category {
		height: 25rem;
	}
}

.banner.blog-category .grid-container {
	height: auto;
}

.banner.blog-category .banner-content {
	padding: 130.938px 0;
}

.banner.blog-category h1 {
	font-weight: 100 !important;
	font-size: 2.56rem;
}

@media print,screen and (min-width:48em) {
	.banner .blog-category .blog {
		height: 25rem;
	}
}

.banner .blog-category .blog .grid-container {
	height: auto;
}

.banner .blog-category .blog .banner-content {
	padding: 130.938px 0;
}

.banner .blog-category .blog h1 {
	font-weight: 100 !important;
	font-size: 2.56rem;
}

@media print,screen and (min-width:48em) {
	.banner.search {
		height: 11.25rem;
	}
}

.banner.leadership {
	background-position: 65% center;
}

@media print,screen and (min-width:64em) {
	.banner.leadership {
		background-position: center;
	}
}

.banner.leadership .banner-content {
	max-width: 70%;
}

.banner.leadership .banner-content h1 {
	font-size: 1.5625rem;
}

@media print,screen and (min-width:48em) {
	.banner.leadership .banner-content h1 {
		font-size: 3.125rem;
	}
}

@media print,screen and (min-width:64em) {
	.banner.leadership .banner-content h1 {
		font-size: 5.625rem;
	}
}

.banner.leadership .banner-content h2 {
	color: #fff;
	font-weight: 100;
	margin: .75rem 0 1.25rem;
	line-height: normal;
}

@media print,screen and (min-width:48em) {
	.banner.leadership .banner-content h2 {
		font-size: 1.875rem;
	}
}

@media print,screen and (min-width:64em) {
	.banner.leadership .banner-content h2 {
		font-size: 3.125rem;
		line-height: 4.6875rem;
	}
}

.banner .banner-content {
	width: 100%;
	max-width: 22.375rem;
}

.banner .banner-content h1 {
	color: #fff;
	font-size: 1.3125rem;
	margin: 0 0 .375rem;
}

.banner .banner-content p {
	margin: 0;
	color: #fff;
	font-size: .875rem;
}

@media print,screen and (min-width:48em) {
	.banner .banner-content p {
		font-size: 1.1875rem;
	}
}

@media print,screen and (min-width:48em) {
	.banner {
		padding: 0;
		background-position: 40% 50%;
	}
}

@media print,screen and (min-width:64em) {
	.banner {
		background-position: 50% 0;
	}
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-events-overview .banner.center-left.subpage .banner-content, .page-template-tpl-file-resources .banner.center-left.subpage .banner-content, .page-template-tpl-lit-by-lumileds .banner.center-left.subpage .banner-content, .page-template-tpl-lumileds-videos .banner.center-left.subpage .banner-content, .page-template-tpl-media-library .banner.center-left.subpage .banner-content, .page-template-tpl-press-contact .banner.center-left.subpage .banner-content {
		margin-bottom: 5.375rem;
	}
}

#bottom-nav {
	max-width: 100%;
}

#bottom-nav .cell {
	position: relative;
	color: #fff;
	background-size: cover;
	padding: 0;
}

#bottom-nav .cell span {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 600;
}

#bottom-nav .cell span::after {
	content: "";
	display: block;
	width: 3.4375rem;
	margin: .3125rem 0 0;
	height: .3125rem;
	background-size: contain;
	background-repeat: no-repeat;
}

#bottom-nav .cell#prev {
	background-color: #005e9d;
	padding: 2.47% 0 2.47% 2.47%;
}

#bottom-nav .cell#prev span::after {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/arrow-left.png");
	background-position: left;
}

#bottom-nav .cell#next {
	background-color: #00aeef;
	text-align: right;
	padding: 2.47% 2.47% 2.47% 0;
}

#bottom-nav .cell#next span::after {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/arrow-right.png");
	background-position: right;
	margin: 5px 0 0 auto;
}

#bottom-nav .cell:hover {
	opacity: .9;
}

#breadcrumbs {
	font-size: .64rem;
	margin: .64rem .96rem 1.28rem 0;
}

.bigger-breadcrumbs #breadcrumbs {
	font-size: .88rem;
	font-weight: 100;
	color: #333;
}

.blog-breadcrumbs #breadcrumbs {
	padding-top: 1.6rem;
}

#breadcrumbs-container {
	width: 100%;
}

#intro-text {
	padding-bottom: 1.5625rem;
}

#intro-text p {
	font-size: 1.125rem;
	line-height: 1.4375rem;
	font-weight: 100;
	margin: 0;
}

.main-row {
	margin-bottom: 5.625rem;
}

.news-summary {
	margin: 0 0 1.4375rem;
}

.news-summary .news-date {
	color: #005e9d;
	font-size: .8125rem;
	font-weight: 400;
}

.news-summary .news-title {
	font-size: .875rem;
}

#leftnav ul {
	list-style-type: none;
	margin: 0;
}

#leftnav ul li {
	list-style: none;
	margin: 0;
	text-transform: uppercase;
	font-size: .8125rem;
	line-height: 1.375rem;
	color: #333;
}

#leftnav ul li a {
	display: block;
	padding: .125rem .375rem .375rem 0;
	color: #333;
	min-height: .75rem;
	line-height: 1rem;
	text-decoration: none;
}

#leftnav ul li .top-header {
	padding-left: .75rem;
}

#leftnav ul li .children li {
	text-transform: none;
}

#leftnav ul li .children li a {
	padding-bottom: .125rem;
	padding-left: 1.5rem;
}

#leftnav ul li .children li.current a {
	background-position: .9375rem .4375rem;
}

#leftnav ul li.current a {
	color: #005e9d;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/menu-arrow.png");
	background-position: .25rem .4375rem;
	background-repeat: no-repeat;
}

#leftnav ul li.current a.nitro-lazy {
	background-image: none !important;
}

#leftnav ul li.menu-subtitle {
	margin-left: .75rem;
}

.is-style-panel, .panel {
	padding: .8rem 1.1rem;
	border-bottom: .1875rem solid #ccc;
	color: #333;
	background-color: #f2f2f2;
	margin-bottom: 1rem;
}

.is-style-panel h3, .panel h3 {
	color: #143766;
	margin-bottom: 1.2rem;
	font-weight: 400;
	text-transform: uppercase;
	font-size: .9375rem;
}

.is-style-panel h3:first-child, .panel h3:first-child {
	margin-top: 0;
}

.is-style-panel li, .panel li {
	margin-left: 1.12rem;
	font-size: .88rem;
	font-weight: 100;
	line-height: 1.36rem;
	margin-bottom: .4rem;
	list-style-type: square;
}

.is-style-panel a:hover, .panel a:hover {
	color: #0a0a0a;
}

.is-style-panel p, .panel p, .panel a {
	font-size: 1rem;
	line-height: 1.44rem;
	font-weight: 100;
	margin: .48rem 0 .88rem;
	color: #143766;
}

@media print,screen and (min-width:48em) {
	#pressbar .panel:nth-child(2) li .wrap {
		position: relative;
		z-index: 2;
		display: inline-block;
		width: 77%;
		padding-right: 2.5rem;
	}
	
	#pressbar .panel:nth-child(2) li .wrap a span {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 1;
	}
}

#pressbar .panel h4 {
	line-height: 1;
	margin: 0 0 .5rem;
	color: #333;
}

.reveal-overlay {
	background-color: rgba(26, 26, 26, .75);
	z-index: 150000;
}

.reveal-overlay .reveal {
	background-color: transparent;
	border: none;
	padding: 0;
	padding: 0 1.25rem;
	outline: 0;
	top: 0 !important;
	height: 100%;
	max-width: 29.75rem;
	overflow: visible;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

@media print,screen and (min-width:48em) {
	.reveal-overlay .reveal {
		padding: 0;
	}
}

.reveal-overlay .reveal .content-wrap {
	position: relative;
	margin: 0 auto;
	overflow: visible;
}

.reveal-overlay .reveal .content-wrap .img-wrap {
	text-align: center;
	background-color: #fff;
}

.reveal-overlay .reveal .content-wrap .img-wrap img {
	max-height: 426px;
}

.reveal-overlay .reveal .content-wrap .title {
	color: #eaeaea;
	font-size: .6875rem;
	font-weight: 400;
	line-height: 1.125rem;
	padding: .9375rem 0 .4375rem;
}

.reveal-overlay .reveal .close-button {
	background-color: transparent;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/png/sprite.png");
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 2.0625rem;
	height: 2.0625rem;
	cursor: pointer;
	padding: 0;
	right: -1rem;
	top: -.9375rem;
}

.reveal-overlay .reveal .close-button.nitro-lazy {
	background-image: none !important;
}

.reveal-overlay .reveal .close-button:hover {
	background-position: -33px 0;
}

.sustainability-menu {
	padding-top: .75rem;
	padding-bottom: 6.25rem;
}

.sustainability-menu .medium-7 h2 {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: normal;
	margin-bottom: .375rem;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-7 h2 {
		font-size: 2.875rem;
		margin-bottom: 1.375rem;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav {
	background-color: #005e9d;
	padding: 1.625rem 2.375rem;
	margin: 0 -.75rem;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-5 #sustainabilitynav {
		margin: 0;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav ul {
	margin: 0;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item {
	list-style-type: none;
	margin-left: .5rem;
	font-weight: 400;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item a {
	display: block;
	color: #fff;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children {
	margin: .8125rem .375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children>a {
	font-size: .875rem;
	line-height: 1.8125rem;
	font-weight: 400;
}

@media print,screen and (min-width:48em) {
	.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children>a {
		font-size: 1.1875rem;
	}
}

.sustainability-menu .medium-5 #sustainabilitynav ul .page_item.page_item_has_children.current_page_item>a {
	font-weight: 700;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children {
	margin-left: .375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item {
	margin: 0 0 .375rem .375rem;
	line-height: .9375rem;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item a {
	line-height: 1rem;
	font-size: .8125rem;
	display: inline-block;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item::before {
	content: ">";
	color: #fff;
	display: inline-block;
	width: .75rem;
	margin-left: -.75rem;
	font-size: .75rem;
	vertical-align: top;
	font-weight: 400;
}

.sustainability-menu .medium-5 #sustainabilitynav ul.children .page_item.current_page_item a {
	font-weight: 700;
}

.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1005;
	background-color: rgba(10, 10, 10, .45);
	overflow-y: auto;
	display: none;
}

.overlay .form {
	background-color: transparent;
	border: none;
	outline: 0;
	top: 0;
	height: 100%;
	max-width: 37.5rem;
	overflow: visible;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

.overlay .form .form-content-wrap {
	position: relative;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 10px;
}

.overlay .form .form-content-wrap .form-wrap {
	font-weight: 400;
}

.overlay .form .form-content-wrap .form-wrap p {
	font-size: .9rem;
	line-height: 1.5rem;
	font-weight: 100;
	margin: .5rem 0 .9rem;
	color: #333;
}

.overlay .form .form-content-wrap .form-wrap .close-button {
	background-color: #005e9d;
	color: #fff;
	right: 4px;
	top: 4px;
	width: 30px;
	height: 30px;
	text-transform: lowercase;
	border-radius: 50%;
	font-size: 1.3rem;
	padding: 0;
}

.overlay .form .form-content-wrap .form-wrap .close-button:hover {
	background-color: #007ac1;
}

.back-to-top {
	text-align: right;
	padding-top: .875rem;
}

.back-to-top .to-top {
	margin: 0;
	background-color: rgba(0, 0, 0, .3);
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50px;
	transition: all .3s ease-in-out 0s;
	line-height: 30px;
}

.back-to-top .to-top .fa {
	transition: all .3s ease-in-out 0s;
	position: relative;
	top: 0;
}

.back-to-top .to-top:hover {
	background-color: rgba(0, 0, 0, .7);
}

.back-to-top .to-top:hover .fa {
	top: -.1875rem;
}

@media print,screen and (min-width:48em) {
	#lists-with-image ul {
		margin-bottom: 0;
		color: #333;
	}
}

#lists-with-image .image-cell {
	text-align: center;
}

#lists-with-image .image-cell .hide-for-small-only {
	max-width: 27.4375rem;
}

.wp-block-image.is-style-solution-to-consider {
	position: relative;
	margin: 0 0 1rem;
}

.wp-block-image.is-style-solution-to-consider>a {
	display: block;
	border: 1px solid #ccc;
	border-radius: .125rem;
}

.wp-block-image.is-style-solution-to-consider>a img {
	opacity: .4;
	max-height: 11.875rem;
}

.wp-block-image.is-style-solution-to-consider figcaption {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	margin: 0;
	font-weight: 600;
	font-size: .8125rem;
	text-align: center;
}

.wp-block-image.is-style-solution-to-consider figcaption a {
	display: block;
	color: #0a0a0a;
}

.wp-block-image.is-style-solution-to-consider figcaption a::after {
	content: "";
	height: 20px;
	width: 20px;
	display: block;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/circle-arrow.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 2.25rem auto 0;
}

.wp-block-image.is-style-solution-to-consider:hover>a img {
	opacity: 1;
}

.wp-block-image.is-style-solution-to-consider:hover figcaption {
	opacity: .4;
}

.section.section-blue {
	background-color: #005e9d;
	color: #fff;
}

.section.section-blue h2 {
	color: #fff;
}

.section.section-blue .button, .section.section-blue .wp-block-button .wp-block-button__link, .wp-block-button .section.section-blue .wp-block-button__link {
	background-color: #fff;
	color: #005e9d;
}

.section.section-blue .button:hover, .section.section-blue .wp-block-button .wp-block-button__link:hover, .wp-block-button .section.section-blue .wp-block-button__link:hover {
	background-color: #f1f1f1;
}

.section.section-light-gray {
	background-color: #f1f1f1;
}

.section.section-dark-gray {
	background-color: #666;
	color: #fff;
}

.section.section-dark-gray h2 {
	color: #fff;
}

.section.section-dark-gray a {
	color: #fff;
}

.spotlight-block {
	height: 23.75rem;
	position: relative;
	background-size: cover;
	text-align: right;
	color: #fff;
	text-transform: uppercase;
	font-size: .875rem;
	font-weight: 600;
	padding: 1.1875rem;
	margin-bottom: 1.625rem;
}

#social-links ul {
	margin: 0;
	float: left;
	margin-bottom: .664rem;
	margin-top: .83rem;
}

@media print,screen and (min-width:48em) {
	#social-links ul {
		margin-top: 0;
		margin-bottom: 0;
		float: right;
		padding: 2px 0;
	}
}

#social-links ul a, #social-links ul li {
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	font-size: 1.125rem;
	background-color: #fff;
	color: #005e9d;
	border-radius: 100px;
	text-align: center;
	text-align: center;
	float: left;
	list-style: none;
	margin-right: .3125rem;
	margin-left: 0;
	margin-bottom: 0;
}

@media print,screen and (min-width:48em) {
	#social-links ul a, #social-links ul li {
		font-size: .875rem;
		width: 1.625rem;
		height: 1.625rem;
		line-height: 1.625rem;
	}
}

#social-links ul a::after, #social-links ul li::after {
	content: "";
}

#social-links ul a svg, #social-links ul li svg {
	margin-top: 6px;
	width: 14px;
	height: 14px;
	fill: #005e9d;
}

#social-links a:hover {
	background-color: #333;
}

.sustainability-table .bigger-font {
	margin-bottom: 1.5625rem;
}

.sustainability-table .bigger-font p {
	font-size: 1.5rem;
	font-weight: 100;
	line-height: normal;
	color: #0a0a0a;
	max-width: 34.375rem;
}

.sustainability-table h2 {
	font-size: 1.5rem;
	margin-bottom: .375rem;
	font-weight: 300;
	line-height: nomal;
}

@media print,screen and (min-width:64em) {
	.sustainability-table h2 {
		font-size: 2.875rem;
		margin-bottom: 2.36rem;
	}
}

.goals-table tbody, .goals-table thead {
	border: none;
}

.goals-table tr:not(:last-child) td:first-child {
	border-bottom: 4px solid #01aff1;
}

.goals-table tr:not(:last-child) td:last-child {
	border-bottom: 4px solid #49b435;
}

.goals-table tr th {
	border: 0;
	color: #fff;
	font-size: .875rem;
	padding: .9375rem;
	font-weight: 700;
}

.goals-table tr th:first-child {
	background-color: #01aff1;
}

.goals-table tr th:last-child {
	background-color: #49b435;
}

.goals-table tr td {
	border: 0;
	vertical-align: top;
	color: #0a0a0a;
	font-size: .875rem;
	padding: .9375rem;
}

.goals-table tr td:first-child {
	background-color: #c7f0fc;
}

.goals-table tr td:last-child {
	background-color: #e4f1de;
}

.goals-table tr td p {
	margin: 0;
}

.section-padding {
	padding: 1.625rem 0;
}

.gray-section {
	background-color: #f1f1f1;
	padding: 2.375rem 0 1.625rem;
}

.tablesorter th, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==");
	background-position: center right;
	background-repeat: no-repeat;
	cursor: pointer;
}

.tablesorter th.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.tablesorter th.up, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7");
}

.tablesorter th.up.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.tablesorter th.down, .tablesorter thead {
	background-image: url("data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7");
}

.tablesorter th.down.nitro-lazy, .tablesorter thead.nitro-lazy {
	background-image: none !important;
}

.lv_window_lumileds .lv_content {
	background-color: #fff;
}

.lv_window_lumileds .lv_button_top_close {
	right: 2.8125rem;
}

.lv_window_lumileds .lv_spinner_wrapper+canvas {
	display: none !important;
}

.lv_window_lumileds .lv_slider {
	margin-top: -.625rem;
}

.loader {
	text-align: center;
	opacity: 0;
	transition: .4s;
}

.loader.loading {
	opacity: 1;
}

.guides-brochures .file-item {
	margin-bottom: 1.5rem;
}

.guides-brochures img {
	border: #efefef solid 1px;
	margin-bottom: .625rem;
	padding: 2px;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fa-lg {
	font-size: 1.3333333333em;
	line-height: .75em;
	vertical-align: -15%;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-fw {
	width: 1.2857142857em;
	text-align: center;
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.1428571429em;
	list-style-type: none;
}

.fa-ul>li {
	position: relative;
}

.fa-li {
	position: absolute;
	left: -2.1428571429em;
	width: 2.1428571429em;
	top: .1428571429em;
	text-align: center;
}

.fa-li.fa-lg {
	left: -1.8571428571em;
}

.fa-border {
	padding: .2em .25em .15em;
	border: solid .08em #eee;
	border-radius: .1em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left {
	margin-right: .3em;
}

.fa.fa-pull-right {
	margin-left: .3em;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.fa.pull-left {
	margin-right: .3em;
}

.fa.pull-right {
	margin-left: .3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.fa-rotate-90 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
	filter: none;
}

.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

.fa-glass:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-search:before {
	content: "";
}

.fa-envelope-o:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-star-o:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-th-large:before {
	content: "";
}

.fa-th:before {
	content: "";
}

.fa-th-list:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-close:before, .fa-remove:before, .fa-times:before {
	content: "";
}

.fa-search-plus:before {
	content: "";
}

.fa-search-minus:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-signal:before {
	content: "";
}

.fa-cog:before, .fa-gear:before {
	content: "";
}

.fa-trash-o:before {
	content: "";
}

.fa-home:before {
	content: "";
}

.fa-file-o:before {
	content: "";
}

.fa-clock-o:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-arrow-circle-o-down:before {
	content: "";
}

.fa-arrow-circle-o-up:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-play-circle-o:before {
	content: "";
}

.fa-repeat:before, .fa-rotate-right:before {
	content: "";
}

.fa-refresh:before {
	content: "";
}

.fa-list-alt:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-volume-down:before {
	content: "";
}

.fa-volume-up:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-camera:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-list:before {
	content: "";
}

.fa-dedent:before, .fa-outdent:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-video-camera:before {
	content: "";
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
	content: "";
}

.fa-pencil:before {
	content: "";
}

.fa-map-marker:before {
	content: "";
}

.fa-adjust:before {
	content: "";
}

.fa-tint:before {
	content: "";
}

.fa-edit:before, .fa-pencil-square-o:before {
	content: "";
}

.fa-share-square-o:before {
	content: "";
}

.fa-check-square-o:before {
	content: "";
}

.fa-arrows:before {
	content: "";
}

.fa-step-backward:before {
	content: "";
}

.fa-fast-backward:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-fast-forward:before {
	content: "";
}

.fa-step-forward:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-plus-circle:before {
	content: "";
}

.fa-minus-circle:before {
	content: "";
}

.fa-times-circle:before {
	content: "";
}

.fa-check-circle:before {
	content: "";
}

.fa-question-circle:before {
	content: "";
}

.fa-info-circle:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-times-circle-o:before {
	content: "";
}

.fa-check-circle-o:before {
	content: "";
}

.fa-ban:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-mail-forward:before, .fa-share:before {
	content: "";
}

.fa-expand:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-plus:before {
	content: "";
}

.fa-minus:before {
	content: "";
}

.fa-asterisk:before {
	content: "";
}

.fa-exclamation-circle:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-leaf:before {
	content: "";
}

.fa-fire:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-exclamation-triangle:before, .fa-warning:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-random:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-shopping-cart:before {
	content: "";
}

.fa-folder:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-arrows-v:before {
	content: "";
}

.fa-arrows-h:before {
	content: "";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
	content: "";
}

.fa-twitter-square:before {
	content: "";
}

.fa-facebook-square:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-cogs:before, .fa-gears:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-thumbs-o-up:before {
	content: "";
}

.fa-thumbs-o-down:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-heart-o:before {
	content: "";
}

.fa-sign-out:before {
	content: "";
}

.fa-linkedin-square:before {
	content: "";
}

.fa-thumb-tack:before {
	content: "";
}

.fa-external-link:before {
	content: "";
}

.fa-sign-in:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-github-square:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-lemon-o:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-square-o:before {
	content: "";
}

.fa-bookmark-o:before {
	content: "";
}

.fa-phone-square:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-facebook-f:before, .fa-facebook:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-credit-card:before {
	content: "";
}

.fa-feed:before, .fa-rss:before {
	content: "";
}

.fa-hdd-o:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-hand-o-right:before {
	content: "";
}

.fa-hand-o-left:before {
	content: "";
}

.fa-hand-o-up:before {
	content: "";
}

.fa-hand-o-down:before {
	content: "";
}

.fa-arrow-circle-left:before {
	content: "";
}

.fa-arrow-circle-right:before {
	content: "";
}

.fa-arrow-circle-up:before {
	content: "";
}

.fa-arrow-circle-down:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-tasks:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-arrows-alt:before {
	content: "";
}

.fa-group:before, .fa-users:before {
	content: "";
}

.fa-chain:before, .fa-link:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-cut:before, .fa-scissors:before {
	content: "";
}

.fa-copy:before, .fa-files-o:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-floppy-o:before, .fa-save:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
	content: "";
}

.fa-list-ul:before {
	content: "";
}

.fa-list-ol:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-magic:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-pinterest-square:before {
	content: "";
}

.fa-google-plus-square:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-money:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-columns:before {
	content: "";
}

.fa-sort:before, .fa-unsorted:before {
	content: "";
}

.fa-sort-desc:before, .fa-sort-down:before {
	content: "";
}

.fa-sort-asc:before, .fa-sort-up:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-rotate-left:before, .fa-undo:before {
	content: "";
}

.fa-gavel:before, .fa-legal:before {
	content: "";
}

.fa-dashboard:before, .fa-tachometer:before {
	content: "";
}

.fa-comment-o:before {
	content: "";
}

.fa-comments-o:before {
	content: "";
}

.fa-bolt:before, .fa-flash:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-clipboard:before, .fa-paste:before {
	content: "";
}

.fa-lightbulb-o:before {
	content: "";
}

.fa-exchange:before {
	content: "";
}

.fa-cloud-download:before {
	content: "";
}

.fa-cloud-upload:before {
	content: "";
}

.fa-user-md:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-bell-o:before {
	content: "";
}

.fa-coffee:before {
	content: "";
}

.fa-cutlery:before {
	content: "";
}

.fa-file-text-o:before {
	content: "";
}

.fa-building-o:before {
	content: "";
}

.fa-hospital-o:before {
	content: "";
}

.fa-ambulance:before {
	content: "";
}

.fa-medkit:before {
	content: "";
}

.fa-fighter-jet:before {
	content: "";
}

.fa-beer:before {
	content: "";
}

.fa-h-square:before {
	content: "";
}

.fa-plus-square:before {
	content: "";
}

.fa-angle-double-left:before {
	content: "";
}

.fa-angle-double-right:before {
	content: "";
}

.fa-angle-double-up:before {
	content: "";
}

.fa-angle-double-down:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-angle-down:before {
	content: "";
}

.fa-desktop:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-tablet:before {
	content: "";
}

.fa-mobile-phone:before, .fa-mobile:before {
	content: "";
}

.fa-circle-o:before {
	content: "";
}

.fa-quote-left:before {
	content: "";
}

.fa-quote-right:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-mail-reply:before, .fa-reply:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-folder-o:before {
	content: "";
}

.fa-folder-open-o:before {
	content: "";
}

.fa-smile-o:before {
	content: "";
}

.fa-frown-o:before {
	content: "";
}

.fa-meh-o:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-keyboard-o:before {
	content: "";
}

.fa-flag-o:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
	content: "";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-code-fork:before {
	content: "";
}

.fa-chain-broken:before, .fa-unlink:before {
	content: "";
}

.fa-question:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-exclamation:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-shield:before {
	content: "";
}

.fa-calendar-o:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-chevron-circle-left:before {
	content: "";
}

.fa-chevron-circle-right:before {
	content: "";
}

.fa-chevron-circle-up:before {
	content: "";
}

.fa-chevron-circle-down:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-unlock-alt:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-ellipsis-h:before {
	content: "";
}

.fa-ellipsis-v:before {
	content: "";
}

.fa-rss-square:before {
	content: "";
}

.fa-play-circle:before {
	content: "";
}

.fa-ticket:before {
	content: "";
}

.fa-minus-square:before {
	content: "";
}

.fa-minus-square-o:before {
	content: "";
}

.fa-level-up:before {
	content: "";
}

.fa-level-down:before {
	content: "";
}

.fa-check-square:before {
	content: "";
}

.fa-pencil-square:before {
	content: "";
}

.fa-external-link-square:before {
	content: "";
}

.fa-share-square:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
	content: "";
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
	content: "";
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
	content: "";
}

.fa-eur:before, .fa-euro:before {
	content: "";
}

.fa-gbp:before {
	content: "";
}

.fa-dollar:before, .fa-usd:before {
	content: "";
}

.fa-inr:before, .fa-rupee:before {
	content: "";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
	content: "";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
	content: "";
}

.fa-krw:before, .fa-won:before {
	content: "";
}

.fa-bitcoin:before, .fa-btc:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-file-text:before {
	content: "";
}

.fa-sort-alpha-asc:before {
	content: "";
}

.fa-sort-alpha-desc:before {
	content: "";
}

.fa-sort-amount-asc:before {
	content: "";
}

.fa-sort-amount-desc:before {
	content: "";
}

.fa-sort-numeric-asc:before {
	content: "";
}

.fa-sort-numeric-desc:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-youtube-square:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-xing-square:before {
	content: "";
}

.fa-youtube-play:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-bitbucket-square:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-tumblr-square:before {
	content: "";
}

.fa-long-arrow-down:before {
	content: "";
}

.fa-long-arrow-up:before {
	content: "";
}

.fa-long-arrow-left:before {
	content: "";
}

.fa-long-arrow-right:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-female:before {
	content: "";
}

.fa-male:before {
	content: "";
}

.fa-gittip:before, .fa-gratipay:before {
	content: "";
}

.fa-sun-o:before {
	content: "";
}

.fa-moon-o:before {
	content: "";
}

.fa-archive:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-arrow-circle-o-right:before {
	content: "";
}

.fa-arrow-circle-o-left:before {
	content: "";
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
	content: "";
}

.fa-dot-circle-o:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-vimeo-square:before {
	content: "";
}

.fa-try:before, .fa-turkish-lira:before {
	content: "";
}

.fa-plus-square-o:before {
	content: "";
}

.fa-space-shuttle:before {
	content: "";
}

.fa-slack:before {
	content: "";
}

.fa-envelope-square:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
	content: "";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-reddit-square:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-spoon:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-behance-square:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-steam-square:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-automobile:before, .fa-car:before {
	content: "";
}

.fa-cab:before, .fa-taxi:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-file-pdf-o:before {
	content: "";
}

.fa-file-word-o:before {
	content: "";
}

.fa-file-excel-o:before {
	content: "";
}

.fa-file-powerpoint-o:before {
	content: "";
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
	content: "";
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
	content: "";
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
	content: "";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
	content: "";
}

.fa-file-code-o:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
	content: "";
}

.fa-circle-o-notch:before {
	content: "";
}

.fa-ra:before, .fa-rebel:before, .fa-resistance:before {
	content: "";
}

.fa-empire:before, .fa-ge:before {
	content: "";
}

.fa-git-square:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-wechat:before, .fa-weixin:before {
	content: "";
}

.fa-paper-plane:before, .fa-send:before {
	content: "";
}

.fa-paper-plane-o:before, .fa-send-o:before {
	content: "";
}

.fa-history:before {
	content: "";
}

.fa-circle-thin:before {
	content: "";
}

.fa-header:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-sliders:before {
	content: "";
}

.fa-share-alt:before {
	content: "";
}

.fa-share-alt-square:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
	content: "";
}

.fa-tty:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-newspaper-o:before {
	content: "";
}

.fa-wifi:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-bell-slash-o:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-at:before {
	content: "";
}

.fa-eyedropper:before {
	content: "";
}

.fa-paint-brush:before {
	content: "";
}

.fa-birthday-cake:before {
	content: "";
}

.fa-area-chart:before {
	content: "";
}

.fa-pie-chart:before {
	content: "";
}

.fa-line-chart:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-lastfm-square:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-cc:before {
	content: "";
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
	content: "";
}

.fa-meanpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-diamond:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-heartbeat:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-intersex:before, .fa-transgender:before {
	content: "";
}

.fa-transgender-alt:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-mars-stroke-v:before {
	content: "";
}

.fa-mars-stroke-h:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-facebook-official:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-user-times:before {
	content: "";
}

.fa-bed:before, .fa-hotel:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-subway:before {
	content: "";
}

.fa-medium:before {
	content: "";
}

.fa-y-combinator:before, .fa-yc:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-battery-4:before, .fa-battery-full:before, .fa-battery:before {
	content: "";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
	content: "";
}

.fa-battery-2:before, .fa-battery-half:before {
	content: "";
}

.fa-battery-1:before, .fa-battery-quarter:before {
	content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
	content: "";
}

.fa-mouse-pointer:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-sticky-note:before {
	content: "";
}

.fa-sticky-note-o:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-balance-scale:before {
	content: "";
}

.fa-hourglass-o:before {
	content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
	content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
	content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
	content: "";
}

.fa-hourglass:before {
	content: "";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
	content: "";
}

.fa-hand-paper-o:before, .fa-hand-stop-o:before {
	content: "";
}

.fa-hand-scissors-o:before {
	content: "";
}

.fa-hand-lizard-o:before {
	content: "";
}

.fa-hand-spock-o:before {
	content: "";
}

.fa-hand-pointer-o:before {
	content: "";
}

.fa-hand-peace-o:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-tripadvisor:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-odnoklassniki-square:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-television:before, .fa-tv:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-calendar-plus-o:before {
	content: "";
}

.fa-calendar-minus-o:before {
	content: "";
}

.fa-calendar-times-o:before {
	content: "";
}

.fa-calendar-check-o:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-map-signs:before {
	content: "";
}

.fa-map-o:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-commenting:before {
	content: "";
}

.fa-commenting-o:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-credit-card-alt:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-pause-circle:before {
	content: "";
}

.fa-pause-circle-o:before {
	content: "";
}

.fa-stop-circle:before {
	content: "";
}

.fa-stop-circle-o:before {
	content: "";
}

.fa-shopping-bag:before {
	content: "";
}

.fa-shopping-basket:before {
	content: "";
}

.fa-hashtag:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-percent:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-wheelchair-alt:before {
	content: "";
}

.fa-question-circle-o:before {
	content: "";
}

.fa-blind:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-volume-control-phone:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-assistive-listening-systems:before {
	content: "";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before {
	content: "";
}

.fa-deaf:before, .fa-deafness:before, .fa-hard-of-hearing:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-sign-language:before, .fa-signing:before {
	content: "";
}

.fa-low-vision:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-viadeo-square:before {
	content: "";
}

.fa-snapchat:before {
	content: "";
}

.fa-snapchat-ghost:before {
	content: "";
}

.fa-snapchat-square:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
	content: "";
}

.fa-fa:before, .fa-font-awesome:before {
	content: "";
}

.fa-handshake-o:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-envelope-open-o:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-address-book:before {
	content: "";
}

.fa-address-book-o:before {
	content: "";
}

.fa-address-card:before, .fa-vcard:before {
	content: "";
}

.fa-address-card-o:before, .fa-vcard-o:before {
	content: "";
}

.fa-user-circle:before {
	content: "";
}

.fa-user-circle-o:before {
	content: "";
}

.fa-user-o:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-drivers-license:before, .fa-id-card:before {
	content: "";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-telegram:before {
	content: "";
}

.fa-thermometer-4:before, .fa-thermometer-full:before, .fa-thermometer:before {
	content: "";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
	content: "";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
	content: "";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
	content: "";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-bath:before, .fa-bathtub:before, .fa-s15:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-times-rectangle:before, .fa-window-close:before {
	content: "";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-eercast:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-snowflake-o:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

[class*=" icon-"], [class^=icon-] {
	font-family: icomoon !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-download:before {
	content: "";
}

.icon-youtube:before {
	content: "";
}

.icon-instagram:before {
	content: "";
}

.icon-brand:before {
	content: "";
}

.icon-social:before {
	content: "";
}

.icon-twitter:before {
	content: "";
}

.icon-brand1:before {
	content: "";
}

.icon-tweet:before {
	content: "";
}

.icon-social1:before {
	content: "";
}

.icon-facebook:before {
	content: "";
}

.icon-brand2:before {
	content: "";
}

.icon-social2:before {
	content: "";
}

.home #slider-section #home-slider {
	height: 18.75rem;
	overflow-y: hidden;
	margin-top: 0;
	margin-bottom: 0;
}

@media print,screen and (min-width:48em) {
	.home #slider-section #home-slider {
		height: 43.75rem;
	}
}

.home #slider-section #home-slider .slide {
	height: 18.75rem;
	background-position: 72% 0;
	background-size: cover;
	cursor: default;
}

.home #slider-section #home-slider .slide.left {
	text-align: left;
}

.home #slider-section #home-slider .slide.center {
	text-align: center;
}

.home #slider-section #home-slider .slide.right {
	text-align: right;
}

@media print,screen and (min-width:48em) {
	.home #slider-section #home-slider .slide {
		height: 43.75rem;
		background-size: cover;
		background-position: 0 50%;
	}
}

.home #slider-section #home-slider .slide::focus {
	outline: 0;
}

.home #slider-section #home-slider .slide .grid-container {
	height: 100%;
}

.home #slider-section #home-slider .slide .grid-container .grid-x {
	position: relative;
	height: 100%;
}

.home #slider-section #home-slider .slide .grid-container .grid-x .text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.home #slider-section #home-slider .slide .grid-container .grid-x .text .headertext {
	color: #fff;
	line-height: 1.3;
	font-size: 1.625rem;
	font-weight: 100;
}

@media print,screen and (min-width:64em) {
	.home #slider-section #home-slider .slide .grid-container .grid-x .text .headertext {
		font-weight: 300;
		font-size: 3.625rem;
	}
}

.home #slider-section #home-slider .slide .grid-container .grid-x .text .button, .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button .wp-block-button__link, .wp-block-button .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button__link {
	border-radius: 4px;
	background-color: rgba(0, 0, 0, .3);
	border: 1px solid #fff;
	font-weight: 300;
	margin-top: .5625rem;
	font-size: .9375rem;
}

.home #slider-section #home-slider .slide .grid-container .grid-x .text .button:focus, .home #slider-section #home-slider .slide .grid-container .grid-x .text .button:hover, .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button .wp-block-button__link:focus, .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button .wp-block-button__link:hover, .wp-block-button .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button__link:focus, .wp-block-button .home #slider-section #home-slider .slide .grid-container .grid-x .text .wp-block-button__link:hover {
	background-color: rgba(255, 255, 255, .2);
}

.home #slider-section #home-slider .slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	margin: 0 0 .9375rem;
	padding: 0 2px;
	cursor: default;
}

.home #slider-section #home-slider .slick-dots li {
	width: .75rem;
	height: 1.125rem;
	margin: 0 .125rem 0 0;
	cursor: pointer;
}

.home #slider-section #home-slider .slick-dots li button {
	border: none;
	width: .75rem;
	height: 1.125rem;
}

.home #slider-section #home-slider .slick-dots li button::before {
	font-size: .75rem;
	line-height: .9375rem;
	width: .75rem;
	height: 1.125rem;
	color: #fff;
	opacity: .25;
}

.home #slider-section #home-slider .slick-dots li.slick-active button::before {
	opacity: .85;
	color: #fff;
}

.home #spotlight-section {
	padding: 4rem 0 4.875rem;
}

.home #spotlight-section .grid-x .spotlight:first-child .spotlight-header {
	background-color: #666;
}

.home #spotlight-section .grid-x .spotlight:nth-child(2) .spotlight-header {
	background-color: #620d0e;
}

.home #spotlight-section .grid-x .spotlight:last-child .spotlight-header {
	background-color: #75b443;
}

.home #spotlight-section .grid-x .spotlight .spotlight-wrap {
	position: relative;
	text-align: right;
	color: #fff;
}

.home #spotlight-section .grid-x .spotlight .spotlight-wrap .spotlight-header {
	margin: 0 0 .3125rem;
}

.home #spotlight-section .grid-x .spotlight .spotlight-wrap .spotlight-header h3 {
	font-weight: 300;
	margin-top: 0;
	line-height: 1.8125rem;
	color: #fff;
	font-size: 1.4375rem;
	padding: 1.1875rem;
	text-transform: none;
}

@media print,screen and (min-width:48em) {
	.home #spotlight-section .grid-x .spotlight .spotlight-wrap .spotlight-header h3 {
		padding: 1.03125rem 1.1875rem 1.03125rem 0;
	}
}

.home #spotlight-section .grid-x .spotlight .spotlight-wrap .spotlight-image {
	height: 23.75rem;
	background-size: cover;
	background-repeat: no-repeat;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 1.625rem;
	padding: 1.1875rem;
	font-size: .875rem;
}

@media print,screen and (min-width:48em) {
	.home #spotlight-section .grid-x .spotlight .spotlight-wrap .spotlight-image {
		margin-bottom: 0;
	}
}

.bottom-section-padding {
	padding-top: 1.625rem;
	padding-bottom: 1.625rem;
}

.green-bullet {
	margin: 0;
}

.green-bullet li {
	width: 100%;
	float: left;
	list-style: none;
	margin: 0;
	padding-left: 1.875rem;
	position: relative;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1.25rem;
}

.green-bullet li:nth-child(odd) {
	padding-right: 15px;
}

@media print,screen and (min-width:48em) {
	.green-bullet li:nth-child(odd) {
		padding-right: 15px;
	}
}

.green-bullet li::before {
	position: absolute;
	content: "";
	left: 0;
	top: .625rem;
	background-color: #75b443;
	height: .875rem;
	width: .875rem;
}

.green-bullet li a {
	border-bottom: 1px solid #0a0a0a;
	color: #0a0a0a;
}

.green-bullet li a:hover {
	border-bottom: none;
}

@media print,screen and (min-width:48em) {
	.green-bullet .medium {
		width: 50%;
	}
}

.green-bullet .large:nth-child(odd) {
	clear: both;
}

@media print,screen and (min-width:64em) {
	.green-bullet .large {
		width: 50%;
	}
}

.lighting-solutions {
	display: flex;
	justify-content: space-evenly;
	margin: 0;
}

.lighting-solutions.left {
	justify-content: normal;
}

.lighting-solutions .solution {
	position: relative;
	width: 25%;
	padding: 1.625rem 0;
	margin: 0;
	background-color: #75b443;
	text-align: center;
	list-style: none;
	margin-right: 1px;
}

.lighting-solutions .solution .link-overlay:hover~.image {
	transform: scale(1.1);
}

.lighting-solutions .solution .image {
	margin-bottom: 1.625rem;
	max-width: 9.0625rem;
	transition: .4s;
}

.lighting-solutions .solution .title {
	display: block;
	font-size: 1rem;
	color: #fff;
	font-weight: 600;
}

.wp-two-columns {
	padding-bottom: 1.66rem;
	margin-bottom: 2.075rem;
}

.wp-two-columns p {
	font-size: 1rem;
	float: left;
	padding-bottom: 1.66rem;
	margin-bottom: 2.075rem;
	font-weight: 400;
}

@media print,screen and (min-width:48em) {
	.wp-two-columns p {
		width: 41.66667%;
	}
	
	.wp-two-columns p:nth-child(3) {
		margin-left: 6.2rem;
	}
}

.wp-two-columns h2 {
	line-height: 2.912rem;
	color: #005e9d;
	text-transform: none;
	margin: 1rem 0;
	font-size: 2.24rem;
	font-weight: 100;
}

.page-template-tpl-subpage {
	font-size: .875rem;
	color: #000;
}

.page-template-tpl-subpage .subpage-wrapper {
	margin-bottom: 2.4rem;
}

.page-template-tpl-subpage .subpage-wrapper .margin-bottom-text {
	margin-bottom: -1.875rem;
}

.page-template-tpl-subpage .subpage-wrapper #breadcrumbs {
	font-size: .625rem;
}

.page-template-tpl-subpage .subpage-wrapper figure {
	text-align: center;
}

.page-template-tpl-subpage .subpage-wrapper .iframe-register iframe {
	min-height: 940px;
}

.page-template-tpl-subpage .subpage-wrapper p.bigger {
	font-size: .896rem;
}

.page-template-tpl-subpage .subpage-wrapper h2 {
	font-size: 1.25rem;
	line-height: 1.9rem;
	margin-bottom: 1.36rem;
}

.page-template-tpl-subpage .subpage-wrapper h3 {
	font-size: .96rem;
}

@media screen and (min-width:90em) {
	body.single-blog .page-wrapper {
		background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern.png") top left repeat-y, url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern-r.png") top right repeat-y;
	}
	
	body.single-blog .page-wrapper.nitro-lazy {
		background-image: none !important;
	}
}

.blog-wrapper .newsDate {
	color: #0a0a0a;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
}

.blog-wrapper .blogPostDetailTitle h3 {
	font-size: 1.14rem;
	line-height: 1.26rem;
	color: #005e9d;
	text-transform: uppercase;
	margin: .8rem 0;
	font-weight: 400;
}

.blog-wrapper .blogPostDetailCategory {
	font-size: .7rem;
	color: #333;
	font-weight: 100;
}

.blog-wrapper .blogPostDetailCategory hr {
	margin: 1.23rem 0;
	height: 1px;
	border: none;
	float: none;
	background: #ededed;
}

.blog-wrapper .blogPostDetailImage {
	width: auto;
	float: right;
	border-bottom: .19rem solid grey;
	display: inline-block;
	margin: 0 0 .91rem 0;
	padding-bottom: .26rem;
}

.blog-wrapper .blogPostDetailImage .button, .blog-wrapper .blogPostDetailImage .wp-block-button .wp-block-button__link, .blog-wrapper .blogPostDetailImage button, .blog-wrapper .blogPostDetailImage input[type=submit], .wp-block-button .blog-wrapper .blogPostDetailImage .wp-block-button__link {
	background-color: transparent !important;
	padding: 0;
}

.blog-wrapper .blogPostDetailImage .button, .blog-wrapper .blogPostDetailImage .wp-block-button .wp-block-button__link, .wp-block-button .blog-wrapper .blogPostDetailImage .wp-block-button__link {
	border: none !important;
}

@media print,screen and (min-width:48em) {
	.blog-wrapper .blogPostDetailImage {
		margin: .44rem 0 .88rem 1.32rem;
		width: 18rem;
	}
}

.blog-wrapper .blogPostDetailImage p {
	background: none repeat scroll 0 0 transparent;
	font-size: .64rem;
	font-weight: 400;
	line-height: 1.125rem;
	padding: .19rem 0;
	text-align: left;
	color: grey;
	text-transform: uppercase;
}

.blog-wrapper .blogPostDetailImage img {
	padding: .625rem;
	border: 1px solid #e6e6e6;
}

.blog-wrapper .blogPostDetailContent strong {
	font-weight: 400;
}

.blog-wrapper .blogPostDetailContent li {
	list-style-type: square;
}

.blog-wrapper .SelectBlogPost {
	padding-bottom: 0;
	font-size: .913rem;
	font-weight: 100;
}

@media print,screen and (min-width:48em) {
	.blog-wrapper .SelectBlogPost {
		font-size: .88rem;
		padding-bottom: 1.6rem;
	}
}

.blog-wrapper .SelectBlogPost a:hover {
	color: #0a0a0a;
}

.blog-wrapper .left {
	float: left;
}

.blog-wrapper .right {
	float: right;
}

.current-category::first-letter {
	text-transform: uppercase;
}

.all-blogs-date {
	color: #005e9d;
	font-size: .8rem;
	font-weight: 400;
}

.blog-link {
	font-size: .88rem;
}

.blog-link a {
	color: #005e9d;
}

.blog-link a:hover {
	color: #000;
}

.all-blog-posts-category {
	font-size: .7rem;
	color: #333;
	font-weight: 100;
}

.blog-single-content {
	font-weight: 100;
	margin: .48rem 0 .88rem;
	line-height: 1.408rem;
}

.blog-summary hr {
	margin: 1.23rem 0;
	height: 1px;
	border: none;
	float: none;
	background: #ededed;
}

.subscribe {
	margin-bottom: 3rem;
}

.subscribe .button, .subscribe .wp-block-button .wp-block-button__link, .wp-block-button .subscribe .wp-block-button__link {
	border: solid 0;
	font-size: 14.88px;
	border-radius: 1000px;
	padding: 7.44px 29.76px;
	cursor: pointer;
}

.subscribe input {
	border-radius: 0;
	background-color: #fff;
	font-family: "Open Sans", sans-serif;
	border: solid 1px #ccc;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	color: #333;
	font-size: .8rem;
	padding: .47rem;
	margin: 0 0 .8rem 0;
	height: 2.15rem;
	font-weight: 400;
}

.subscribe label {
	font-size: .8rem !important;
	font-weight: 100 !important;
}

.page-template-tpl-news-overview .archive-links {
	font-size: .875rem;
	margin-bottom: 1.75rem;
}

.page-template-tpl-news-overview .archive-links li {
	display: inline-block;
}

.page-template-tpl-news-overview .archive-links li:not(:last-child) {
	position: relative;
	z-index: 2;
	padding-right: 10px;
}

.page-template-tpl-news-overview .archive-links li:not(:last-child)::after {
	content: "|";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	color: #1f1f1f;
}

.post-template-tpl-news-detail .news-date {
	font-size: 10px;
	color: #1f1f1f;
}

.post-template-tpl-news-detail h1 {
	font-size: 1.125rem;
	line-height: 1.5rem;
	color: #005e9d;
	margin-bottom: .75rem;
}

.post-template-tpl-news-detail .intro {
	margin: .4375rem 0 .875rem 0;
	font-style: italic;
	color: #1f1f1f;
}

.post-template-tpl-news-detail .feat-img {
	border-bottom: .1875rem solid #666;
	padding: 0 0 .25rem 0;
	margin: 0 0 .75rem 0;
}

@media print,screen and (min-width:48em) {
	.post-template-tpl-news-detail .feat-img {
		float: right;
		max-width: 200px;
		margin: .3125rem 0 .625rem .9375rem;
		padding: 0 0 .25rem 0;
	}
}

.post-template-tpl-news-detail .feat-img .image {
	max-width: 12.5rem;
	padding: .625rem;
	border: .0625rem solid #ededed;
}

.post-template-tpl-news-detail .feat-img .image .button, .post-template-tpl-news-detail .feat-img .image .wp-block-button .wp-block-button__link, .wp-block-button .post-template-tpl-news-detail .feat-img .image .wp-block-button__link {
	padding: 0;
	background-color: transparent;
	border: none;
}

.post-template-tpl-news-detail .feat-img .desc {
	line-height: 1.125rem;
	padding: .25rem 0;
	color: grey;
	text-transform: uppercase;
}

.post-template-tpl-news-detail .feat-img .desc p {
	font-size: .625rem;
	font-weight: 400;
	margin: 0;
}

.post-template-tpl-news-detail .returnnews {
	font-size: 10px;
}

.page-template-tpl-events-overview .event-item {
	font-size: .8125rem;
	font-weight: 400;
	margin: 0 0 1.4375rem;
	line-height: .9375rem;
}

.page-template-tpl-events-overview .event-item .event-details {
	font-weight: 100;
	font-size: .625rem;
}

@media print,screen and (min-width:64em) {
	.page-template-tpl-leadership .banner.leadership .banner-content h1 {
		font-size: 4.5rem;
	}
}

@media print,screen and (min-width:64em) {
	.page-template-tpl-leadership .banner.leadership .banner-content h2 {
		font-size: 2.5rem;
	}
}

.page-template-tpl-leadership .leader-bio {
	padding: 1.625rem 0 1.625rem;
}

.page-template-tpl-leadership .leader-bio p {
	font-size: .875rem;
	line-height: 1.8125rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-leadership .leader-bio p {
		font-size: 1.1875rem;
	}
}

.page-template-tpl-leadership .leadership-grid {
	padding-bottom: 4rem;
}

.page-template-tpl-leadership .leadership-grid .leader {
	float: left;
	width: 50%;
	text-align: center;
	background-color: #195d9a;
	cursor: pointer;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-leadership .leadership-grid .leader {
		width: calc(100% / 5);
	}
}

.page-template-tpl-leadership .leadership-grid .leader .leader-image img {
	filter: grayscale(100%);
}

.page-template-tpl-leadership .leadership-grid .leader .leader-info {
	padding: 0 .5rem;
	font-size: .75rem;
	color: #fff;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	min-height: 75px;
}

.page-template-tpl-leadership .leadership-grid .leader .leader-info p {
	margin: 0;
}

.page-template-tpl-leadership .leadership-grid .leader .leader-info p.name {
	font-weight: 700;
}

.page-template-tpl-leadership .leadership-grid .leader .leader-info p.function {
	color: rgba(255, 255, 255, .5);
	font-size: 11px;
}

.page-template-tpl-leadership .leadership-grid .leader:nth-child(2n) {
	background-color: #5588b3;
}

.page-template-tpl-leadership .leadership-grid .leader.active .leader-image img, .page-template-tpl-leadership .leadership-grid .leader:hover .leader-image img {
	filter: grayscale(0);
}

.page-template-tpl-leadership .leadership-grid::after {
	content: "";
	display: block;
	clear: both;
}

.page-template-tpl-leadership .show-for-small-only h1 {
	color: #005e9d;
	font-size: 2.0625rem;
	margin-bottom: 1.6875rem;
	font-weight: 100;
}

.page-template-tpl-leadership .show-for-small-only h2 {
	font-size: 1rem;
	margin-top: .625rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability .banner.subpage .banner-content h1 {
		font-size: 3.375rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.report {
	background-color: #f6f6f6;
}

.page-template-tpl-sustainability #sustainability-overview .section.report .cell .report-content {
	color: #0895e4;
	padding-top: 2.375rem;
	font-size: 1.0625rem;
	font-weight: 500;
}

.page-template-tpl-sustainability #sustainability-overview .section.report .cell .report-content p {
	font-size: inherit;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity {
	background-color: #666;
	color: #fff;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell.blue {
	background-color: #01aff1;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell.green {
	background-color: #49b435;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell.img {
	height: 18.75rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell .wrapper {
	width: 100%;
	height: 100%;
	max-width: 37.4375rem;
	margin: 0 auto;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	padding: 1.875rem 0;
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell .wrapper h3 {
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-top: 0;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell .wrapper h3 {
		font-size: 1.75rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.innovation-operations-integrity .cell .wrapper p {
	font-size: 1rem;
	width: 100%;
	max-width: 18.75rem;
	margin: 0;
	line-height: normal;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote {
	padding: 3.125rem 0 9.375rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block {
	width: 100%;
	max-width: 40.625rem;
	margin: 0 auto;
	text-align: center;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quotee-image {
	position: relative;
	z-index: 1;
	margin: 0 0 .75rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper {
	background-color: #eee;
	padding: 5rem 1.875rem 1.875rem;
	margin: -5rem 0 0;
	border-radius: 5px;
	position: relative;
	z-index: 0;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper .quote-text {
	color: #0a0a0a;
	margin: 0 0 1.625rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper .quote-text p {
	margin: 0;
	font-size: 1rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper .quotee-info span {
	display: block;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper .quotee-info .name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0a0a0a;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-quote .quote-block .quote-wrapper .quotee-info .function {
	font-size: .75rem;
	color: #005e9d;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-4 {
	position: relative;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-4 .background-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	margin: 0 calc(-24px / 2);
	height: 19.375rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-4 .background-image {
		margin: 0 0 0 calc(-24px / 2);
		width: 78.7%;
		height: 30rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-4 img {
	display: none;
	position: absolute;
	right: -9%;
	bottom: -.1875rem;
	z-index: 1;
	height: 120%;
	max-width: none;
	width: auto;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-4 img {
		display: block;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-8 .content {
	width: 100%;
	max-width: 40.625rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-8 .content h2 {
	font-size: 2.625rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.sustainability-priorities .cell.medium-8 .content h2 {
		font-size: 4.5rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues {
	padding-top: 0;
	padding-bottom: 3.125rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .priority-content {
	padding-bottom: 1.5625rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .priority-content p {
	font-size: 1.5rem;
	line-height: normal;
	width: 100%;
	max-width: 34.375rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue {
	text-align: center;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper {
	background-color: #eee;
	padding: 2.1875rem 0 1rem;
	margin: 0 0 1.625rem;
	position: relative;
	transition: all .2s ease-in-out 0s;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .img {
	height: 3.75rem;
	position: relative;
	z-index: 2;
	overflow: hidden;
	margin-bottom: 1rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .img img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	max-width: none;
	max-height: 3.75rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .content {
	width: 100%;
	max-width: 10rem;
	margin: 0 auto;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .content p {
	font-size: 1rem;
	min-height: 3.125rem;
	margin: 0;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .content .plus {
	margin-top: .8125rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper .content .plus img {
	max-height: 1.375rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper:focus, .page-template-tpl-sustainability #sustainability-overview .section.priority-issues .issue .wrapper:hover {
	background-color: #cfcfcf;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.priority-issues {
		padding-top: 9.375rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs {
	padding-top: 3.125rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs p {
	margin-top: 0;
}

.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs .title h2 {
	font-size: 2.625rem;
	margin: 0 0 1.25rem;
	font-weight: 300;
	line-height: 1.5em;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs .title h2 {
		font-size: 4.5rem;
		margin: 0 0 3.75rem;
	}
}

.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs .sdg-content {
	margin-bottom: 1.5625rem;
}

.page-template-tpl-sustainability #sustainability-overview .section.support-sdgs .sdg-content.big-text p {
	font-weight: 400;
	font-size: 1.5rem;
	color: #000;
	line-height: normal;
	max-width: 34.375rem;
	margin: -.25rem 0 1.5625rem;
}

.page-template-tpl-sustainability .goal {
	margin-bottom: 1.5625rem;
}

.page-template-tpl-sustainability .goal .inner {
	border: 1px solid #e1e1e1;
	padding: .75rem 0;
}

.page-template-tpl-sustainability .goal .inner img {
	margin-bottom: 1.5625rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability .goal .inner img {
		margin-bottom: 0;
	}
}

.page-template-tpl-sustainability .goal .inner p {
	margin: 0;
	color: #000;
}

.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.background {
	height: 18.75rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.background {
		height: 33.5rem;
	}
}

.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.content .wrapper {
	width: 100%;
	max-width: 40.625rem;
}

.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.content .wrapper h2 {
	font-weight: 300;
	font-size: 1.5rem;
	line-height: normal;
	margin-bottom: 1.3125rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.content .wrapper h2 {
		font-size: 2.875rem;
	}
}

.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.content .wrapper p {
	font-size: 1rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x .cell.content .wrapper {
		padding-left: 3.125rem;
	}
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.impacts .grid-x {
		align-items: center;
	}
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.impacts.operational-impacts .grid-x .content .wrapper {
		padding-left: 0;
		margin: 0 auto;
	}
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell {
	color: #fff;
	position: relative;
	transition: all .3s ease-in-out;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell .wrapper {
	width: 100%;
	max-width: 15.625rem;
	min-height: 12.5rem;
	margin: 0 auto;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell:first-child .wrapper h2 {
	font-weight: 300;
	margin: 0;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell:not(:first-child) {
	text-align: center;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell:not(:first-child) .wrapper p {
	margin: 0 0 .375rem;
	font-size: 1.125rem;
	font-weight: 700;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more .cell:not(:first-child) .wrapper img {
	max-height: 1.25rem;
	align-self: center;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:nth-child(2) {
	background-color: #259ed5;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:nth-child(2):hover {
	background-color: #00acee;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:nth-child(3) {
	background-color: #00acee;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:nth-child(3):hover {
	background-color: #259ed5;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:last-child {
	background-color: #259ed5;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-product-impacts .cell:last-child:hover {
	background-color: #00acee;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-operational-impacts .cell:first-child .wrapper {
	max-width: 20rem;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-operational-impacts .cell:nth-child(2) {
	background-color: #74b341;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-operational-impacts .cell:nth-child(2):hover {
	background-color: #6da343;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-operational-impacts .cell:last-child {
	background-color: #6da343;
}

.page-template-tpl-sustainability #sustainability-category .section.learn-more.more-about-operational-impacts .cell:last-child:hover {
	background-color: #74b341;
}

.page-template-tpl-sustainability #sustainability-category .section.goal-progress {
	padding-top: .75rem;
}

.page-template-tpl-sustainability #sustainability-category .section.enhance-performance {
	background-size: cover;
	background-position: center;
	padding: 6.25rem 0;
	color: #fff;
}

.page-template-tpl-sustainability #sustainability-category .section.enhance-performance p {
	font-size: 1rem;
	width: 100%;
	max-width: 20.3125rem;
}

.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies {
	padding: 3.125rem 0;
}

.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell p {
	font-size: .875rem;
	margin-bottom: .75rem;
}

.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell img {
	max-height: 1.5rem;
}

.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell:first-child p {
	font-size: 1rem;
}

.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell:not(:first-child) p {
	color: #72b048;
	font-weight: 700;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell:not(:first-child) {
		text-align: center;
	}
}

@media print,screen and (min-width:64em) {
	.page-template-tpl-sustainability #sustainability-category .section.sustainability-policies .cell:not(:last-child) {
		border-right: 1px solid #fff;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu {
	padding: 1.625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu .side-menu-tekst {
	font-size: 2.875rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu .goals {
	padding: .625rem;
	border: 1px solid #d9d9d9;
	margin-bottom: 15px;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu .green-bullet li {
	margin-bottom: 1.1875rem;
	font-size: .9375rem;
	line-height: 1.5rem;
	list-style: none;
	width: 100%;
	padding-left: 25px;
	padding-right: 0;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu .green-bullet li::before {
	top: .325rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu p {
	font-weight: 100;
}

.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu h2 {
	font-size: 1rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-detail .section.sustainability-menu h2 {
		font-size: 2.5625rem;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.gray-section {
	padding: 0;
}

.page-template-tpl-sustainability #sustainability-detail .section.gray-section span {
	font-size: 1rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.gray-section.gray-padding {
	padding: 2.4375rem 0 1.625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section .gray-padding {
	padding: 2.4375rem 1.625rem 1.625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section .padding-title {
	padding-top: 1.875rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.blue-section {
	background-color: #005e9d;
	color: #fff;
	font-weight: 400;
	padding: 2.375rem 0 1.625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.blue-section .button, .page-template-tpl-sustainability #sustainability-detail .section.blue-section .wp-block-button .wp-block-button__link, .wp-block-button .page-template-tpl-sustainability #sustainability-detail .section.blue-section .wp-block-button__link {
	background-color: #fff;
	color: #005e9d;
}

.page-template-tpl-sustainability #sustainability-detail .section.blue-section h2, .page-template-tpl-sustainability #sustainability-detail .section.blue-section h3 {
	color: #fff;
}

.page-template-tpl-sustainability #sustainability-detail .section.blue-section a {
	color: #01aff1;
}

.page-template-tpl-sustainability #sustainability-detail .section.white-section {
	padding: 1.625rem 0;
	margin: 2rem 0;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-detail .section.white-section .margin-left {
		margin-left: 8.33333%;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.white-section .intro p {
	font-size: 1rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.white-section p {
	font-size: .875rem;
	color: #0a0a0a;
}

.page-template-tpl-sustainability #sustainability-detail .section.white-section h2 {
	font-size: 2.25rem;
	font-weight: 100;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section {
	padding: 1.625rem;
	margin: 2rem 0;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .right-content {
	padding: .8125rem;
	padding-right: 0;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .text-left h2 {
	text-align: left;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .image-caption {
	position: relative;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .image-caption h2 {
	position: absolute;
	top: 10%;
	left: 12%;
	width: 45%;
	color: #fff;
	font-size: 1rem;
	line-height: 1.25rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-detail .section.lower-section .image-caption h2 {
		font-size: 2.5625rem;
		line-height: 2.9375rem;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .image-caption br {
	display: none;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-detail .section.lower-section .image-caption br {
		display: inline;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines {
	margin-bottom: 2.5rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tbody, .page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines thead {
	border: none;
	background-color: #fff;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr:nth-child(even) {
	background: 0 0;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr:last-child td p {
	font-weight: 600;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr th {
	color: #75b443;
	border: none;
	border-bottom: 1px solid #d8d8d8;
	background: 0 0;
	text-transform: none;
	font-weight: 700;
	text-align: center;
	padding-top: 1.1875rem;
	padding-bottom: 1.1875rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr th:first-child {
	color: #00aeef;
	text-align: left;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr td {
	border: none;
	border-bottom: 1px solid #d8d8d8;
	background: 0 0;
	font-size: 1.0625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr td p {
	font-size: 1.0625rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section .clean-lines tr td:first-child p {
	font-size: .8125rem;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section h2 {
	text-align: center;
	font-size: 1rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability #sustainability-detail .section.lower-section h2 {
		font-size: 2.25rem;
	}
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section p {
	font-weight: 100;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section blockquote {
	border: none;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section blockquote p {
	font-size: 1rem;
	color: grey;
	font-style: italic;
	line-height: 1.375rem;
	position: relative;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section blockquote p .quoteCredits {
	color: #0a0a0a;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section blockquote p::before {
	content: "“";
	left: -2.1875rem;
	top: 1.1875rem;
	position: absolute;
	font-size: 7rem;
	font-weight: 700;
	font-family: Georgia;
	opacity: .2;
	color: #999;
}

.page-template-tpl-sustainability #sustainability-detail .section.lower-section blockquote p::after {
	content: "”";
	position: absolute;
	right: -1.25rem;
	bottom: -1.1875rem;
	font-size: 7rem;
	font-weight: 700;
	font-family: Georgia;
	opacity: .2;
	color: #999;
}

.page-template-tpl-sustainability #sustainability-detail .section .background-image {
	min-height: 17.5rem;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-template-tpl-sustainability #sustainability-detail .section .blocks {
	border: 1px solid #ededed;
	padding: .8125rem;
	min-height: 12.1875rem;
	margin-bottom: 1.1875rem;
}

.page-template-tpl-sustainability #sustainability-detail .section .goals-table tr td {
	width: 50%;
}

.page-template-tpl-sustainability #sustainability-detail .section .goals-table tr td:last-child p {
	font-weight: 700;
}

.page-template-tpl-sustainability #sustainability-detail .section .goals-table tr td p {
	margin-bottom: 1rem;
}

.page-template-tpl-sustainability #sustainability-detail .section .tiny {
	font-size: .6875rem;
}

.page-template-tpl-sustainability #sustainability-detail .section li {
	line-height: 1.25rem;
	margin: 0;
	list-style: disc;
	font-weight: 100;
	font-size: .8125rem;
}

.page-template-tpl-sustainability #sustainability-detail .section h2 {
	font-size: 2.5625rem;
	line-height: 2.9375rem;
	margin: .8125rem 0;
	font-weight: 100;
}

.page-template-tpl-sustainability #sustainability-detail .section h3 {
	font-size: 1.1875rem;
	line-height: 1.75rem;
	color: #005e9d;
	text-transform: none;
	margin: .8125rem 0;
	font-weight: 600;
}

.page-template-tpl-sustainability #sustainability-detail .section p {
	font-weight: 400;
}

.page-template-tpl-subpage-page-sections {
	color: #333;
}

.page-template-tpl-subpage-page-sections .page-sections .section .no-padding {
	padding: 0;
}

.page-template-tpl-subpage-page-sections .page-sections .section.fusion-section {
	padding: 0 0 25px !important;
	color: #0a0a0a;
}

.page-template-tpl-subpage-page-sections .page-sections .section.fusion-section:nth-of-type(5) {
	padding: 0 !important;
}

.page-template-tpl-subpage-page-sections .page-sections .section.section-even .section-content {
	padding: .875rem .75rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-subpage-page-sections .page-sections .section.section-even .section-content {
		padding: 1.625rem;
	}
}

.page-template-tpl-subpage-page-sections .page-sections .section.section-even .section-image {
	height: 150px;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-subpage-page-sections .page-sections .section.section-even .section-image {
		height: auto;
	}
}

.page-template-tpl-subpage-page-sections .page-sections .section.extra-height {
	padding: 3.25rem 0;
}

.page-template-tpl-subpage-page-sections .page-sections .section.light-gray {
	background-color: #f1f1f1;
}

.page-template-tpl-subpage-page-sections .page-sections .section.light-gray.section-odd .section-content {
	padding: 0 0 .8125rem .8125rem;
}

.page-template-tpl-subpage-page-sections .page-sections .section.light-gray .section-content.content-background {
	background-color: #e6e6e6;
	padding: 1.625rem;
}

.page-template-tpl-subpage-page-sections .page-sections .section.dark-blue {
	background-color: #003b6a;
	padding: 0;
}

.page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content {
	background-color: #124975;
	color: #fff;
	padding: .8125rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content {
		padding: 1.5625rem;
	}
}

.page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content h2, .page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content h3, .page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content h4, .page-template-tpl-subpage-page-sections .page-sections .section.dark-blue .section-content h5 {
	color: #fff;
}

.page-template-tpl-subpage-page-sections .page-sections .section.white {
	padding: 3.25rem 0;
}

.page-template-tpl-subpage-page-sections .page-sections .section.white .section-image {
	background-size: auto 100%;
	background-position: center;
}

.page-template-tpl-subpage-page-sections .page-sections .section .section-image {
	background-size: cover;
	background-position: 0;
	background-repeat: no-repeat;
}

.page-template-tpl-subpage-page-sections .page-sections .section h3 {
	font-size: .9375rem;
}

.page-template-tpl-solution #breadcrumbs-container+.section:not(.main-body) {
	padding-top: 0;
}

.page-template-tpl-solution .section {
	padding: 2.375rem 0 1.625rem;
}

.page-template-tpl-solution .section.main-body {
	padding-top: 0;
}

.page-template-tpl-solution .section.main-body .anchor-brochure {
	text-align: center;
}

.page-template-tpl-solution .section.main-body .anchor-brochure .product-anchors {
	margin-top: 1.625rem;
	margin-bottom: 0;
}

.page-template-tpl-solution .section.main-body .anchor-brochure .product-anchors li {
	float: none;
	width: 100%;
}

.page-template-tpl-solution .section.section-last {
	padding: 3.625rem 0;
}

.page-template-tpl-solution .section.section-last.solutions-applications {
	text-align: center;
}

.page-template-tpl-solution .section.section-last .solution {
	position: relative;
	border: 1px solid #ccc;
	border-radius: 2px;
	margin: 0 0 1rem;
}

.page-template-tpl-solution .section.section-last .solution img {
	opacity: .4;
	max-height: 11.875rem;
}

.page-template-tpl-solution .section.section-last .solution .content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.page-template-tpl-solution .section.section-last .solution .content span {
	display: block;
	font-weight: 600;
	font-size: .8125rem;
	color: #0a0a0a;
}

.page-template-tpl-solution .section.section-last .solution .content::after {
	content: "";
	height: 20px;
	width: 20px;
	display: block;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/circle-arrow.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 2.25rem auto 0;
}

.page-template-tpl-solution .section.section-last .solution:hover img {
	opacity: 1;
}

.page-template-tpl-solution .section.section-last .solution:hover .content {
	opacity: .4;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-solution .section.section-last .application-block {
		width: calc(100% / 5);
	}
}

.footer {
	padding: .8rem 0;
	color: #fff;
	background-color: #0a0a0a;
	font-size: .625rem;
	line-height: .9375rem;
}

.footer .footer-menu a {
	color: #fff;
}

.footer .footer-menu a:hover {
	color: #005e9d;
}

.footer .footer-menu ul {
	margin: 0;
}

.footer .footer-menu ul li {
	float: left;
	list-style: none;
	margin-left: 0;
	margin-right: 3px;
	margin-bottom: 0;
	font-size: .8125rem;
	line-height: .9375rem;
}

@media print,screen and (min-width:48em) {
	.footer .footer-menu ul li {
		font-size: .625rem;
	}
}

.footer .footer-menu ul li::after {
	content: "|";
	margin-left: 3px;
}

.footer .footer-menu ul li:last-child::after {
	content: "";
}

.footer .footer-menu p {
	font-weight: 100;
	font-size: .8125rem;
	margin-bottom: 0;
}

@media print,screen and (min-width:48em) {
	.footer .footer-menu {
		font-size: .625rem;
	}
	
	.footer .footer-menu p {
		font-size: .625rem;
	}
}

.white-footer {
	color: #333;
	background-color: #f1f1f1;
	padding: 1.625rem 0;
}

.white-footer .footer-menu a {
	color: #333;
}

.map {
	padding-bottom: 2.5rem;
}

.map .map-wrapper {
	position: relative;
	background-color: #f9f9f9;
}

.map .map-wrapper #mapdiv .ammapDescriptionWindow {
	border: 0;
	background-color: #0a0a0a;
	margin-left: 1rem;
	margin-top: -3.125rem;
	padding: .5rem;
}

.map .map-wrapper #mapdiv .ammapDescriptionWindow .ammapDescriptionTitle {
	display: none;
}

.map .map-wrapper #mapdiv .ammapDescriptionWindow .ammapDescriptionText {
	color: #fff;
}

.map .map-wrapper #mapdiv .ammapDescriptionWindow .ammapDescriptionText p {
	font-size: .75rem;
	line-height: normal;
	margin: 0;
}

.map .map-wrapper .legenda {
	position: absolute;
	bottom: .75rem;
	right: 1rem;
}

.map .map-wrapper .legenda ul {
	margin: 0;
	padding: 0;
}

.map .map-wrapper .legenda ul li {
	list-style: none;
	padding-left: 2rem;
	margin-left: 0;
	position: relative;
}

.map .map-wrapper .legenda ul li:first-child::before {
	background-color: #22649e;
}

.map .map-wrapper .legenda ul li:nth-child(2)::before {
	background-color: #70ba1f;
}

.map .map-wrapper .legenda ul li:nth-child(3)::before {
	background-color: #000;
}

.map .map-wrapper .legenda ul li:last-child::before {
	background-color: #4d9ee6;
}

.map .map-wrapper .legenda ul li::before {
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	height: 1rem;
	width: 1rem;
	border-radius: 100%;
}

.contact-bodywrap {
	padding: 1.6rem;
}

.contact-bodywrap h1 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #005e9d;
	margin-bottom: 1.6rem;
	line-height: 1.5rem;
}

.contact-bodywrap h2 {
	font-size: .97rem;
	font-weight: 600;
	line-height: 1.92rem;
}

@media print,screen and (min-width:48em) {
	.contact-bodywrap h2 {
		font-size: 1.28rem;
	}
}

.contact-bodywrap h3 {
	margin: .8rem 0;
	text-transform: none;
	font-size: .9rem;
	font-weight: 400;
}

@media print,screen and (min-width:48em) {
	.contact-bodywrap h3 {
		font-size: .96rem;
	}
}

.contact-bodywrap .phone-mail {
	font-size: .8rem;
}

.contact-bodywrap .phone-mail .blue {
	color: #005e9d;
}

.contact-bodywrap .phone-mail span {
	margin-right: .31rem;
}

.contact-bodywrap .office-accordion {
	padding-top: 2.5rem;
}

.contact-bodywrap .office-accordion .accordion-item {
	background-color: transparent;
	border-bottom: 2px solid #f9f9f9;
	padding: 0 .75rem;
	transition: all .5s;
}

.contact-bodywrap .office-accordion .accordion-item.active {
	background-color: #f9f9f9;
}

.contact-bodywrap .office-accordion .accordion-item.active .accordion-location img {
	transform: translateY(-50%) rotate(0) !important;
}

.contact-bodywrap .office-accordion .accordion-item .item-wrap {
	display: none;
}

.contact-bodywrap .office-accordion .accordion-item .item-wrap .offices p {
	margin: 0;
}

.contact-bodywrap .office-accordion .accordion-item .item-wrap .offices hr {
	background-color: #f9f9f9;
}

.contact-bodywrap .office-accordion .accordion-item .item-wrap div:last-of-type hr {
	display: none;
}

.contact-bodywrap .office-accordion .accordion-item .accordion-location {
	position: relative;
	cursor: pointer;
}

.contact-bodywrap .office-accordion .accordion-item .accordion-location img {
	position: absolute;
	right: .75rem;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	transition: all .5s;
}

.contact-bodywrap .office-accordion .accordion-item .accordion-location h3 {
	padding: .8rem 0;
	margin: 0;
}

body {
	position: relative;
	transition: .4s;
	left: 0;
}

body.active-header {
	left: -80%;
}

body.active-header.init-fixed-header .site-menu {
	right: auto;
	left: -80%;
}

body.active-header.init-fixed-header .site-menu .main-header .main-menu {
	right: 0;
}

body.init-fixed-header .site-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: .4s;
}

body.init-fixed-header .page-wrapper {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 3.5rem);
}

.site-menu {
	z-index: 2;
}

@media print,screen and (min-width:48em) {
	.site-menu {
		position: relative;
	}
}

.site-menu .main-header {
	padding: .25rem 0;
	position: relative;
	background-color: #fff;
	border-bottom: 1px solid #d9d9d9;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header {
		padding-bottom: 1.25rem;
		padding-top: .625rem;
	}
}

.site-menu .main-header .main-header-wrapper {
	align-items: flex-end;
}

.site-menu .main-header .logo a {
	display: inline-block;
}

.site-menu .main-header .main-menu {
	padding: 20px 0;
	padding-left: calc(20% + 1.5rem);
	position: fixed;
	top: 0;
	right: -100vw;
	z-index: -1;
	height: 100vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	transition: .5s;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu {
		position: static;
		padding: 0 15px;
		z-index: 0;
		overflow: inherit;
		height: auto;
	}
}

.site-menu .main-header .main-menu #main-navigation {
	justify-content: flex-end;
	margin: 0;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu #main-navigation {
		display: flex;
	}
}

.site-menu .main-header .main-menu #main-navigation .menu-item {
	list-style: none;
	margin: 0;
}

.site-menu .main-header .main-menu #main-navigation .menu-item.active-menu>.submenu {
	left: 20%;
}

.site-menu .main-header .main-menu #main-navigation .menu-item.active a {
	color: #005e9d;
}

.site-menu .main-header .main-menu #main-navigation .menu-item.menu-header a span.menu-head {
	background-color: #fafafa;
	margin-left: 2.0625rem;
	display: block;
}

.site-menu .main-header .main-menu #main-navigation .menu-item a {
	color: #333;
	font-size: .875rem;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	padding: .625rem .625rem .625rem 2.5rem;
	display: block;
	background-color: #fafafa;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	position: relative;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu #main-navigation .menu-item a {
		padding: .75rem .5rem .25rem;
		background-color: transparent;
		border-bottom: 0;
	}
}

@media print,screen and (min-width:64em) {
	.site-menu .main-header .main-menu #main-navigation .menu-item a {
		padding: .75rem .5rem .25rem .9375rem;
	}
}

.site-menu .main-header .main-menu #main-navigation .menu-item a:hover {
	color: #005e9d;
}

.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap {
	display: inline-block;
	position: absolute;
	height: 100%;
	width: 2.5rem;
	background-color: #fafafa;
	top: 0;
	right: 0;
	bottom: 0;
}

.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap::before {
	content: "";
	background-color: rgba(0, 0, 0, .1);
	left: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
}

.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap::after {
	content: "";
	background-color: #fafafa;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 1px;
	position: absolute;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap {
		display: none;
	}
}

.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap .arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	margin-top: -2px;
}

.site-menu .main-header .main-menu #main-navigation .menu-item a .arrow-wrap .arrow::after {
	transform: rotate(-45deg);
	border: .125rem solid rgba(0, 0, 0, .3);
	border-top: 0;
	border-left: 0;
	width: .4375rem;
	height: .4375rem;
	content: "";
	display: inline-block;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu {
	position: absolute;
	top: 0;
	padding-bottom: 1.25rem;
	padding-left: 0;
	margin: 0;
	left: 100vw;
	min-height: 100vh;
	background-color: #fff;
	transition: .4s;
	z-index: 2;
	width: calc(100vw - 20%);
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu #main-navigation .menu-item .submenu {
		display: none;
	}
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .return {
	padding: 1.25rem;
	padding: 1.875rem .625rem .625rem 1.875rem;
	margin: 0;
	list-style: none;
	background-color: rgba(0, 0, 0, .06);
	color: rgba(0, 0, 0, .3);
	cursor: pointer;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .return .return-wrapper {
	display: block;
	position: relative;
	text-indent: 1.25rem;
	line-height: 1.3125rem;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .return .return-wrapper::before {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	left: 0;
	display: inline-block;
	border: 2px solid rgba(0, 0, 0, .3);
	border-right: none;
	border-bottom: none;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item {
	margin-left: 1.5rem;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item a {
	background-color: transparent;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item a[href="#"] {
	background-color: #fafafa;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item a[href="#"] .arrow-wrap {
	background-color: #fafafa;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item a .arrow-wrap {
	background-color: #fff;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item>a {
	padding-left: .875rem;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item>a .arrow-wrap::after {
	display: none;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item.active-menu>.submenu {
	left: 0;
}

.site-menu .main-header .main-menu #main-navigation .menu-item .submenu .menu-item .submenu {
	width: 100%;
}

.site-menu .main-header .main-menu .desktop-dropdown {
	position: fixed;
	top: 5rem;
	left: 0;
	right: 0;
}

@media print,screen and (max-width:47.99875em) {
	.site-menu .main-header .main-menu .desktop-dropdown {
		display: none;
	}
}

.site-menu .main-header .main-menu .desktop-dropdown .wrapper {
	position: relative;
	height: calc(100% - 1.1875rem);
}

.site-menu .main-header .main-menu .desktop-dropdown .wrapper .content {
	padding-top: 0;
	margin-top: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper.company .content-with-image p {
		padding-right: .75rem;
	}
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar {
	background-color: #003b6a;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .grid-container {
	background-color: transparent;
	padding-left: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper {
	height: 2.75rem;
	overflow: hidden;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns {
	display: flex;
	height: 100%;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item {
	border-left: 1px solid #fff;
	border-right: 2px solid #fff;
	width: 9.6875rem;
	transform: skew(17deg);
	background-color: #003b6a;
	text-align: center;
	margin: 0 0 0 -.875rem;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item:first-child {
	text-align: left;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item:first-child .name {
	padding-left: 1.5rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item.active {
	background-color: #fff;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item.active::after {
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/arrow-down.png") top left no-repeat;
	height: 20px;
	width: 20px;
	content: "";
	display: block;
	position: absolute;
	bottom: .3rem;
	right: .2rem;
	transform: skew(-17deg);
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item.active .name {
	color: #005e9d;
	font-weight: 600;
	font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
	border-bottom: 5px solid;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .sub-dropdowns .sub-item .name {
	padding: 1rem .6rem 1rem .5rem;
	display: block;
	transform: skew(-17deg);
	font-size: .8rem;
	height: 2.75rem;
	color: #fff;
	position: relative;
	left: .4375rem;
	line-height: .875rem;
	font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper #social-links {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10%;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .button, .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .wp-block-button .wp-block-button__link, .wp-block-button .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .wp-block-button__link {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 3rem;
	background-color: #003b6a;
	border: 1px solid #fff;
	font-size: .68rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .button:hover, .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .wp-block-button .wp-block-button__link:hover, .wp-block-button .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .wp-block-button__link:hover {
	background-color: #005e9d;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	font-size: 0;
	height: 1rem;
	width: 1rem;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/close2.png");
	background-repeat: no-repeat;
	background-position: cover;
	cursor: pointer;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .blue-bar .wrapper .close.nitro-lazy {
	background-image: none !important;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu.active {
	display: block;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu.inactive {
	display: none;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu>.grid-container {
	box-shadow: 0 .5625rem 2rem -.3125rem rgba(0, 0, 0, .75);
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .grid-container {
	background-color: #fff;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .grid-container.no-padding {
	padding: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .menu-padding .thicker {
	padding-left: 24px;
	padding-right: 30px;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .menu-padding .thicker .content {
	padding-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .menu-padding .extra-thick {
	padding-left: 30px;
	padding-right: 30px;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .menu-padding .extra-thick .content {
	padding-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks.no-border .block {
	border-right: 0 !important;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks.reverse-border>.block:first-of-type {
	border-left: 1px solid #d9d9d9 !important;
	border-right: none !important;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block {
	padding-bottom: 1rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block.small-top-padding {
	padding-top: .8rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block:not(:last-child) {
	border-right: 1px solid #d9d9d9;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .news-summary .post-content {
	font-size: .72rem;
	font-weight: 100;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .title {
	text-transform: uppercase;
	font-size: .8125rem;
	font-weight: 400;
	margin: 19px 0 .8rem;
	line-height: 1.248rem;
	color: #333;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content {
	padding-bottom: 1rem;
	font-size: .6875rem;
	margin-top: 1rem;
	margin-bottom: 1.25rem;
	font-weight: 400;
	color: #1f1f1f;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content.less-bottom-spacing {
	padding-bottom: 0;
	margin-bottom: 1rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content.less-bottom-spacing~.blue-links {
	padding-top: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content.no-bottom-spacing {
	padding-bottom: 0;
	margin-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content~.explore {
	font-size: .8rem;
	line-height: 1.28rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .big-title {
	font-size: 1.024rem;
	line-height: 1.5625rem;
	margin-top: 1.12rem;
	margin-bottom: .8125rem;
	font-weight: 600;
	text-transform: uppercase;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .big-title+.content {
	padding-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .oem-link {
	margin-top: 1.1875rem;
	margin-bottom: .8125rem;
	text-transform: uppercase;
	font-size: .8125rem;
	font-weight: 400;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .oem-link a {
	color: #333;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .oem-link a:hover {
	color: #0a0a0a;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .stroke {
	width: 100%;
	height: 1px;
	margin: 1.25rem 0;
	position: relative;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .stroke.margin-top-only {
	margin-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .stroke.wider-stroke::after {
	left: 0;
	right: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .stroke::after {
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	bottom: 0;
	background-color: #d9d9d9;
	content: "";
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image h3 {
	color: #333;
	font-size: .8125rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.single-highlighted .section {
	padding-top: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.single-highlighted .section h2, .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.single-highlighted .section h3 {
	margin-top: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.single-highlighted .section h2.top-margin, .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.single-highlighted .section h3.top-margin {
	margin-top: 1.2rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.with-button .text p {
	margin-top: 0;
	font-size: .8rem;
	font-weight: 400;
	line-height: 1.28rem;
	margin-bottom: .5rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.with-button .text .button, .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.with-button .text .wp-block-button .wp-block-button__link, .wp-block-button .site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image.with-button .text .wp-block-button__link {
	float: right;
	font-size: .8rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image .grid-container {
	padding: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image h2 {
	font-size: 1.0625rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 1.125rem 0 .8125rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image .text p {
	font-size: .704rem;
	color: #1f1f1f;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-with-image .text p.regular-spacing {
	margin: 0 0 1rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section {
	padding-top: .375rem;
	padding-right: .375rem;
	line-height: .9375rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section.half-width li {
	float: left;
	width: 50%;
	margin-bottom: .25rem;
	padding-right: .75rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section.no-margin-top {
	margin-top: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section.blue-links ul {
	margin-bottom: .72rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section.blue-links ul li {
	margin-bottom: .25rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section.blue-links ul li a {
	color: #005e9d;
	font-weight: 400;
	font-size: .72rem;
	line-height: .936rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section~.text .explore.static {
	margin-top: .75rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h2 {
	font-size: 1rem;
	margin: .875rem 0 .625rem;
	font-weight: 600;
	text-transform: uppercase;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h2 a {
	color: #777;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h2 a:hover {
	color: #0a0a0a;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h2.more-margin {
	margin-top: 1.12rem !important;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h5 {
	font-size: .704rem;
	font-weight: 700;
	line-height: .9856rem;
	margin: .375rem 0 0;
	padding: 0 0 3.84px;
	color: #005e9d;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section h5 a {
	color: #0a0a0a;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section ul {
	margin: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section ul li {
	list-style: none;
	margin: 0;
	padding: 0 .75rem 0 0;
	line-height: .9375rem;
	line-height: 1.152rem;
	font-size: .72rem;
	font-weight: 100;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section ul li a {
	color: #333;
	font-size: inherit;
	display: inline-block;
	padding-left: .5rem;
	text-indent: -.5rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section ul li a:hover {
	color: #0a0a0a;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .section .content {
	padding: 0;
	margin: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-wrapper {
	padding-top: 2.25rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-wrapper.less-top-spacing {
	padding-top: 19px;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-wrapper .title {
	margin: 0;
	padding: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .block .content-wrapper .content {
	margin-bottom: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .video-feed {
	max-width: 15.75rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .video-feed .video {
	margin: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .video-feed .video .lightview-video {
	height: 9.0625rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .video-feed .video .lightview-video img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: none;
	height: 100%;
	z-index: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .blocks .video-feed .video h5 {
	font-size: .625rem;
	color: #005e9d;
	line-height: .9375rem;
	margin: .75rem 0 .1875rem;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links-title {
	font-size: .75rem;
	display: block;
	color: #005e9d;
	font-weight: 400;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links {
	margin: 0;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links li {
	list-style: none;
	margin: 0;
	line-height: normal;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links li a {
	font-size: .75rem;
	color: #333;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links li a:hover {
	color: #005e9d;
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .links li a::after {
	content: " >";
}

.site-menu .main-header .main-menu .desktop-dropdown .dropdown-wrapper .dropdown-menu .extra-links .static {
	margin-top: 1rem;
}

.site-menu .main-header .search-bar {
	display: none;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .search-bar {
		display: block;
	}
}

.site-menu .main-header .search-bar .above-search {
	text-align: right;
}

.site-menu .main-header .search-bar .above-search a {
	font-size: .5625rem;
	color: #005e9d;
}

@media print,screen and (min-width:64em) {
	.site-menu .main-header .search-bar .above-search a {
		font-size: .625rem;
	}
}

.site-menu .main-header .search-bar .above-search a:not(:last-child)::after {
	content: " | ";
}

.site-menu .main-header .search-bar .above-search a:hover {
	color: #0a0a0a;
}

.site-menu .main-header .search-bar .search {
	position: relative;
}

.site-menu .main-header .search-bar .search .search-field {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 80%;
	float: right;
	height: 1.5625rem;
	color: #005e9d;
	border: 1px solid #003b6a;
	border-radius: 5px;
	font-size: .625rem;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	margin: 0;
}

.site-menu .main-header .search-bar .search .search-field:focus {
	box-shadow: inset 0 1px 2px transparent;
}

.site-menu .main-header .search-bar .search .search-field::placeholder {
	color: #005e9d;
}

.site-menu .main-header .search-bar .search .search-button {
	background-color: transparent;
	border: 0;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/searchbox.png");
	height: .75rem;
	width: .75rem;
	padding: 0;
	position: absolute;
	top: .75rem;
	right: 6px;
	transform: translateY(-50%);
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 0;
}

.site-menu .main-header .search-bar .search .search-button.nitro-lazy {
	background-image: none !important;
}

.site-menu .main-header .hamburger {
	width: 2.125rem;
	height: 1.75rem;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	border: 1px solid #ccc;
	border-radius: .25rem;
	cursor: pointer;
}

@media print,screen and (min-width:48em) {
	.site-menu .main-header .hamburger {
		display: none;
	}
}

.site-menu .main-header .hamburger .line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 1rem;
	height: 2px;
	background-color: #ccc;
}

.site-menu .main-header .hamburger .line:first-child {
	top: .375rem;
}

.site-menu .main-header .hamburger .line:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}

.site-menu .main-header .hamburger .line:last-child {
	bottom: .375rem;
}

.page-wrapper {
	background-color: #fff;
}

@media print,screen and (min-width:48em) {
	.page-wrapper {
		position: relative;
		z-index: 1;
	}
}

.page-template-tpl-design-resources .table-wrapper, .page-template-tpl-file-resources .table-wrapper, .product-template-default .table-wrapper {
	overflow-x: auto;
	clear: both;
}

.page-template-tpl-design-resources .design-resources-label, .page-template-tpl-file-resources .design-resources-label, .product-template-default .design-resources-label {
	font-size: .62rem;
	font-weight: 600;
	text-transform: uppercase;
}

.page-template-tpl-design-resources .design-checkbox-active, .page-template-tpl-file-resources .design-checkbox-active, .product-template-default .design-checkbox-active {
	background-color: #007ac1 !important;
	border-color: #005e9d !important;
}

.page-template-tpl-design-resources .label-active, .page-template-tpl-file-resources .label-active, .product-template-default .label-active {
	color: #fff !important;
}

.page-template-tpl-design-resources .checkbox-group .categorie, .page-template-tpl-file-resources .checkbox-group .categorie, .product-template-default .checkbox-group .categorie {
	border: solid 1px #d8d8d8;
	margin-bottom: 1rem;
	padding: .4375rem;
	background-color: #f2f2f2;
	display: inline-block;
	cursor: pointer;
}

.page-template-tpl-design-resources .checkbox-group .categorie:hover .checkbox-label, .page-template-tpl-file-resources .checkbox-group .categorie:hover .checkbox-label, .product-template-default .checkbox-group .categorie:hover .checkbox-label {
	color: #fff !important;
}

.page-template-tpl-design-resources .checkbox-group .categorie .checkbox-label, .page-template-tpl-file-resources .checkbox-group .categorie .checkbox-label, .product-template-default .checkbox-group .categorie .checkbox-label {
	font-size: .7rem;
	font-weight: 400;
	text-transform: inherit;
	cursor: pointer;
	color: #4d4d4d;
}

.page-template-tpl-design-resources .checkbox-group .categorie input[type=checkbox], .page-template-tpl-file-resources .checkbox-group .categorie input[type=checkbox], .product-template-default .checkbox-group .categorie input[type=checkbox] {
	margin: 0;
	cursor: pointer;
	vertical-align: middle;
}

.page-template-tpl-design-resources .checkbox-group .categorie input[type=checkbox]:checked, .page-template-tpl-file-resources .checkbox-group .categorie input[type=checkbox]:checked, .product-template-default .checkbox-group .categorie input[type=checkbox]:checked {
	color: #fff;
}

.page-template-tpl-design-resources .checkbox-group .categorie:hover, .page-template-tpl-file-resources .checkbox-group .categorie:hover, .product-template-default .checkbox-group .categorie:hover {
	background-color: #007ac1;
	border-color: #005e9d;
}

.page-template-tpl-design-resources .clear-chosen-table, .page-template-tpl-file-resources .clear-chosen-table, .product-template-default .clear-chosen-table {
	background-color: #e7e7e7;
	color: #333;
	border: none;
}

.page-template-tpl-design-resources .clear-chosen-table:hover, .page-template-tpl-file-resources .clear-chosen-table:hover, .product-template-default .clear-chosen-table:hover {
	background-color: #b9b9b9;
	color: #fff !important;
}

.page-template-tpl-design-resources .custom-dropdown, .page-template-tpl-file-resources .custom-dropdown, .product-template-default .custom-dropdown {
	margin-bottom: 1rem;
}

.page-template-tpl-design-resources .custom-dropdown .chosen-choices li, .page-template-tpl-file-resources .custom-dropdown .chosen-choices li, .product-template-default .custom-dropdown .chosen-choices li {
	color: rgba(0, 0, 0, .75);
	font-size: .7rem;
}

.page-template-tpl-design-resources .menu-left, .page-template-tpl-file-resources .menu-left, .product-template-default .menu-left {
	margin-bottom: 1.625rem;
}

.page-template-tpl-design-resources .menu-left li, .page-template-tpl-design-resources .menu-left ul, .page-template-tpl-file-resources .menu-left li, .page-template-tpl-file-resources .menu-left ul, .product-template-default .menu-left li, .product-template-default .menu-left ul {
	display: block;
	list-style: none;
	margin: 0;
	border: none;
	text-transform: initial;
	font-size: .8rem;
}

.page-template-tpl-design-resources .menu-left a, .page-template-tpl-file-resources .menu-left a, .product-template-default .menu-left a {
	display: block;
	padding: 0 .4rem .12rem .8rem;
	color: #333;
	min-height: .8em;
	text-decoration: none;
	line-height: 1rem;
}

.page-template-tpl-design-resources .menu-left a:hover, .page-template-tpl-file-resources .menu-left a:hover, .product-template-default .menu-left a:hover {
	color: #039;
}

.page-template-tpl-design-resources .menu-left .second-menu, .page-template-tpl-file-resources .menu-left .second-menu, .product-template-default .menu-left .second-menu {
	margin: -.08rem 0 .64rem .8rem;
}

.page-template-tpl-design-resources .menu-left .big-header, .page-template-tpl-file-resources .menu-left .big-header, .product-template-default .menu-left .big-header {
	display: block;
	list-style: none;
	margin: 0;
	text-transform: uppercase;
	font-size: .8rem;
	color: #333;
	padding: .4rem 0 .64rem .88rem;
}

.page-template-tpl-design-resources .menu-left .section-header, .page-template-tpl-file-resources .menu-left .section-header, .product-template-default .menu-left .section-header {
	color: #005e9d;
	font-size: .8rem;
	font-weight: 400;
	margin: .64rem 0 0 -.24rem;
	padding: .4rem 0 .24rem .88rem;
}

.page-template-tpl-design-resources .menu-left .current, .page-template-tpl-file-resources .menu-left .current, .product-template-default .menu-left .current {
	color: #005e9d;
	background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/menu-arrow.png") 4px 7px no-repeat;
}

.page-template-tpl-design-resources .menu-left .current.nitro-lazy, .page-template-tpl-file-resources .menu-left .current.nitro-lazy, .product-template-default .menu-left .current.nitro-lazy {
	background-image: none !important;
}

.page-template-tpl-design-resources .left-product-title, .page-template-tpl-file-resources .left-product-title, .product-template-default .left-product-title {
	display: inline-flex;
}

.page-template-tpl-design-resources .right-top-button, .page-template-tpl-file-resources .right-top-button, .product-template-default .right-top-button {
	float: right;
	font-size: .64rem;
	font-weight: 100;
}

.page-template-tpl-design-resources .readme, .page-template-tpl-file-resources .readme, .product-template-default .readme {
	background-color: #005e9d;
	color: #fff !important;
	padding: .8rem;
	margin-bottom: 1.2rem;
	font-size: .8rem;
	clear: both;
	display: block !important;
}

.page-template-tpl-design-resources .readme img, .page-template-tpl-file-resources .readme img, .product-template-default .readme img {
	margin-top: -3px;
	max-width: 1.25rem;
	margin-right: .44rem;
	display: inline-block !important;
}

.page-template-tpl-design-resources .readme .readme-link, .page-template-tpl-file-resources .readme .readme-link, .product-template-default .readme .readme-link {
	color: #fff;
	font-weight: 400;
	border-bottom: 1px solid #fff;
}

.page-template-tpl-design-resources .readme .readme-link:hover, .page-template-tpl-file-resources .readme .readme-link:hover, .product-template-default .readme .readme-link:hover {
	border-bottom: none;
}

.page-template-tpl-design-resources .hidden-products, .page-template-tpl-file-resources .hidden-products, .product-template-default .hidden-products {
	display: none;
}

@media screen and (min-width:90em) {
	body.single-product-family .page-wrapper {
		background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern.png") top left repeat-y, url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern-r.png") top right repeat-y;
	}
	
	body.single-product-family .page-wrapper.nitro-lazy {
		background-image: none !important;
	}
}

body.single-product-family .family-section.section-main {
	padding-bottom: 1.5625rem;
}

body.single-product-family .family-section.section-main h2 {
	margin: 0 0 1.3125rem;
	line-height: 1.875rem;
}

body.single-product-family .family-section.section-main h2.is-style-regular-blue {
	margin: 0 0 1.3125rem;
	line-height: 1.875rem;
}

body.single-product-family .family-section.section-main h3 {
	margin-top: 0;
	line-height: 1.25rem;
}

body.single-product-family .family-section.product-section {
	padding: 2.5625rem 0;
	position: relative;
}

body.single-product-family .family-section.product-section h2 {
	font-size: 1.4375rem;
	margin-top: 0;
}

body.single-product-family .family-section.product-section h2.new-product::after {
	content: "NEW";
	color: #090;
	border: 1px solid #090;
	font-size: .375rem;
	line-height: .625rem;
	padding: 0 .1875rem;
	margin: 0 0 0 .25rem;
	vertical-align: top;
}

body.single-product-family .family-section.product-section h3 {
	font-size: .9375rem;
}

body.single-product-family .family-section.product-section img.prodthumb {
	max-width: 18.75rem;
}

body.single-product-family .family-section:nth-child(even) {
	background-color: #f1f1f1;
}

body.single-product-family .back-to-top {
	position: absolute;
	right: 1.25rem;
	bottom: .875rem;
}

.page-template-tpl-media-library .page-wrapper {
	padding: 0 0 1.5625rem;
}

.page-template-tpl-media-library .page-wrapper .media-gallery-item {
	margin: 0 0 1rem;
}

.page-template-tpl-media-library .page-wrapper .media-gallery-item .image img {
	max-height: 18.75rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-media-library .page-wrapper .media-gallery-item .image img {
		max-height: 8.75rem;
	}
}

.page-template-tpl-media-library .page-wrapper .media-gallery-item .link {
	font-size: .8125rem;
}

.error404 .errorbanner {
	margin-bottom: 2.625rem;
}

.error404 #error-content h2 {
	font-weight: 400;
	font-size: 1.625rem;
}

.error404 #error-content .search-bar {
	width: 100%;
	max-width: 25rem;
}

.error404 #error-content .search-bar .search-form input {
	height: 1.875rem;
	line-height: normal;
	padding: .375rem;
	color: #0a0a0a;
	font-size: .8125rem;
	border-color: #ccc;
}

.error404 #error-content .search-bar .search-form input::placeholder {
	color: #0a0a0a;
}

.single-product .page-wrapper #breadcrumbs-container {
	padding-bottom: 0;
}

.single-product .page-wrapper .grid-container {
	padding-bottom: 1.5625rem;
}

.single-product .page-wrapper .grid-container .medium-8 h2 {
	color: #005e9d;
	margin: 0 0 1.3125rem;
}

.single-product .page-wrapper .grid-container .medium-8 table {
	display: block;
	width: 100%;
	overflow-x: scroll;
}

.single-product .page-wrapper .grid-container .medium-8 table.sortable th {
	padding-right: 1.25rem;
	text-align: left;
}

@media print,screen and (min-width:64em) {
	.single-product .page-wrapper .grid-container .medium-8 table {
		overflow-x: auto;
		display: table;
	}
}

.single-product .page-wrapper .grid-container .medium-8 table td {
	color: #000;
}

.single-product .page-wrapper .grid-container .medium-8 table td img.docIcon {
	margin: 0 .25rem .25rem 0;
}

.single-product .page-wrapper .grid-container .medium-8 .resource-header {
	text-transform: uppercase;
	font-size: .9375rem;
	margin: .8125rem 0 1.0625rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion {
	margin: 1rem 0 .5625rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion:first-of-type {
	margin-bottom: 1.25rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item {
	list-style-type: none;
	margin-top: 6px;
	margin-bottom: 9px;
	margin-left: .8125rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item.is-active .accordion-title::after {
	transform: rotate(90deg);
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title {
	border: none;
	padding: .125rem;
	font-size: .875rem;
	font-weight: 400;
	display: inline-block;
	color: #005e9d;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title::before {
	display: none;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title::after {
	content: "";
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/menu-arrow.png");
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	width: .75rem;
	height: .75rem;
	position: relative;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title:active, .single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title:focus, .single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-title:hover {
	background-color: transparent;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content {
	border: none;
	padding: .75rem 0;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content .resource-product-block .left-product-title {
	float: left;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content .resource-product-block .left-product-title br {
	display: none;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content .resource-product-block .right-top-button {
	float: right;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content .resource-product-block .readme {
	display: inline-block;
	color: #333;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item .accordion-content .resource-product-block .readme img {
	display: none;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item table .hidden-products {
	display: none;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item table tr th {
	font-size: .8125rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item table tr td {
	font-size: .8125rem;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item table tr td a {
	font-size: inherit;
}

.single-product .page-wrapper .grid-container .medium-8 .accordion .accordion-item table tr:hover {
	background-color: #efefef;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items {
	display: inline-block;
	width: 100%;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item {
	padding: 0 .5rem 1rem;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item .inner {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
	height: 110px;
	overflow: hidden;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item .inner a {
	display: block;
	height: 100%;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item .inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item .inner:hover img {
	transition: transform .4s;
	transform: scale(1.1);
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.first-gallery-item {
	margin-bottom: 1rem;
	padding-bottom: 0;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.first-gallery-item .inner {
	max-height: 350px;
	min-height: 200px;
	height: 100%;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.gallery-item {
	float: left;
	width: 33.333333%;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.video .inner {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/css/smooth-skin/thumb-overlay-play.png");
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	height: 110px;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.video .inner.nitro-lazy {
	background-image: none !important;
}

.single-product .page-wrapper .grid-container .medium-4 #media-gallery-items .media-gallery-item.video .inner img {
	position: absolute;
	z-index: -1;
}

.single-product .page-wrapper .grid-container .medium-4 ul li {
	line-height: 1.25rem;
}

.single-product .page-wrapper table th {
	text-align: center;
}

.single-product .footer {
	color: #333;
	background-color: #f1f1f1;
	padding: 1.625rem 0;
}

.single-product .footer .footer-menu a {
	color: #333;
}

.page-template-tpl-sustainability-subpage .sustainability-menu {
	padding: 1.625rem;
}

.page-template-tpl-sustainability-subpage .sustainability-menu .goals {
	padding: .625rem;
	border: 1px solid #d9d9d9;
	margin-bottom: 15px;
}

.page-template-tpl-sustainability-subpage .sustainability-menu .green-bullet li {
	margin-bottom: 1.1875rem;
	font-size: .9375rem;
	line-height: 1.5rem;
	list-style: none;
	width: 100%;
	padding-left: 25px;
	padding-right: 0;
}

.page-template-tpl-sustainability-subpage .sustainability-menu .green-bullet li::before {
	top: .325rem;
}

.page-template-tpl-sustainability-subpage .sustainability-menu p {
	font-weight: 100;
}

.page-template-tpl-sustainability-subpage .sustainability-menu h2 {
	font-size: 1rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability-subpage .sustainability-menu h2 {
		font-size: 2.5625rem;
	}
}

.page-template-tpl-sustainability-subpage .gray-section {
	padding: 0;
}

.page-template-tpl-sustainability-subpage .gray-section span {
	font-size: 1rem;
}

.page-template-tpl-sustainability-subpage .grey-padding {
	padding: 2.4375rem 1.625rem 1.625rem;
}

.page-template-tpl-sustainability-subpage .padding-title {
	padding-top: 1.875rem;
}

.page-template-tpl-sustainability-subpage .blue-section {
	background-color: #005e9d;
	color: #fff;
	font-weight: 400;
	padding: 2.375rem 0 1.625rem;
}

.page-template-tpl-sustainability-subpage .blue-section .button, .page-template-tpl-sustainability-subpage .blue-section .wp-block-button .wp-block-button__link, .wp-block-button .page-template-tpl-sustainability-subpage .blue-section .wp-block-button__link {
	background-color: #fff;
	color: #005e9d;
}

.page-template-tpl-sustainability-subpage .blue-section h2, .page-template-tpl-sustainability-subpage .blue-section h3 {
	color: #fff;
}

.page-template-tpl-sustainability-subpage .blue-section a {
	color: #01aff1;
}

.page-template-tpl-sustainability-subpage .white-section {
	padding: 1.625rem 0;
	margin: 2rem 0;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability-subpage .white-section .margin-left {
		margin-left: 8.33333%;
	}
}

.page-template-tpl-sustainability-subpage .white-section .intro p {
	font-size: 1rem;
}

.page-template-tpl-sustainability-subpage .white-section p {
	font-size: .875rem;
	color: #0a0a0a;
}

.page-template-tpl-sustainability-subpage .white-section h2 {
	font-size: 2.25rem;
	font-weight: 100;
}

.page-template-tpl-sustainability-subpage .lower-section {
	padding: 1.625rem;
	margin: 2rem 0;
}

.page-template-tpl-sustainability-subpage .lower-section .right-content {
	padding: .8125rem;
	padding-right: 0;
}

.page-template-tpl-sustainability-subpage .lower-section .text-left h2 {
	text-align: left;
}

.page-template-tpl-sustainability-subpage .lower-section .image-caption {
	position: relative;
}

.page-template-tpl-sustainability-subpage .lower-section .image-caption h2 {
	position: absolute;
	top: 10%;
	left: 12%;
	width: 45%;
	color: #fff;
	font-size: 1rem;
	line-height: 1.25rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability-subpage .lower-section .image-caption h2 {
		font-size: 2.5625rem;
		line-height: 2.9375rem;
	}
}

.page-template-tpl-sustainability-subpage .lower-section .image-caption br {
	display: none;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability-subpage .lower-section .image-caption br {
		display: inline;
	}
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines {
	margin-bottom: 2.5rem;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tbody, .page-template-tpl-sustainability-subpage .lower-section .clean-lines thead {
	border: none;
	background-color: #fff;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr:nth-child(even) {
	background: 0 0;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr:last-child td p {
	font-weight: 600;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr th {
	color: #75b443;
	border: none;
	border-bottom: 1px solid #d8d8d8;
	background: 0 0;
	text-transform: none;
	font-weight: 700;
	text-align: center;
	padding-top: 1.1875rem;
	padding-bottom: 1.1875rem;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr th:first-child {
	color: #00aeef;
	text-align: left;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr td {
	border: none;
	border-bottom: 1px solid #d8d8d8;
	background: 0 0;
	font-size: 1.0625rem;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr td p {
	font-size: 1.0625rem;
}

.page-template-tpl-sustainability-subpage .lower-section .clean-lines tr td:first-child p {
	font-size: .8125rem;
}

.page-template-tpl-sustainability-subpage .lower-section h2 {
	text-align: center;
	font-size: 1rem;
}

@media print,screen and (min-width:48em) {
	.page-template-tpl-sustainability-subpage .lower-section h2 {
		font-size: 2.25rem;
	}
}

.page-template-tpl-sustainability-subpage .lower-section p {
	font-weight: 100;
}

.page-template-tpl-sustainability-subpage .lower-section blockquote {
	border: none;
}

.page-template-tpl-sustainability-subpage .lower-section blockquote p {
	font-size: 1rem;
	color: grey;
	font-style: italic;
	line-height: 1.375rem;
	position: relative;
}

.page-template-tpl-sustainability-subpage .lower-section blockquote p .quoteCredits {
	color: #0a0a0a;
}

.page-template-tpl-sustainability-subpage .lower-section blockquote p::before {
	content: "“";
	left: -2.1875rem;
	top: 1.1875rem;
	position: absolute;
	font-size: 7rem;
	font-weight: 700;
	font-family: Georgia;
	opacity: .2;
	color: #999;
}

.page-template-tpl-sustainability-subpage .lower-section blockquote p::after {
	content: "”";
	position: absolute;
	right: -1.25rem;
	bottom: -1.1875rem;
	font-size: 7rem;
	font-weight: 700;
	font-family: Georgia;
	opacity: .2;
	color: #999;
}

.page-template-tpl-sustainability-subpage .background-image {
	min-height: 17.5rem;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-template-tpl-sustainability-subpage .blocks {
	border: 1px solid #ededed;
	padding: .8125rem;
	min-height: 12.1875rem;
	margin-bottom: 1.1875rem;
}

.page-template-tpl-sustainability-subpage .goals-table tr td {
	width: 50%;
}

.page-template-tpl-sustainability-subpage .goals-table tr td:last-child p {
	font-weight: 700;
}

.page-template-tpl-sustainability-subpage .goals-table tr td p {
	margin-bottom: 1rem;
}

.page-template-tpl-sustainability-subpage .tiny {
	font-size: .6875rem;
}

.page-template-tpl-sustainability-subpage li {
	line-height: 1.25rem;
	margin: 0;
	list-style: disc;
	font-weight: 100;
	font-size: .8125rem;
}

.page-template-tpl-sustainability-subpage h2 {
	font-size: 2.5625rem;
	line-height: 2.9375rem;
	margin: .8125rem 0;
	font-weight: 100;
}

.page-template-tpl-sustainability-subpage h3 {
	font-size: 1.1875rem;
	line-height: 1.75rem;
	color: #005e9d;
	text-transform: none;
	margin: .8125rem 0;
	font-weight: 600;
}

.page-template-tpl-sustainability-subpage p {
	font-weight: 400;
}

.page-template-tpl-company-directory .company-directory .chosen-container {
	margin: 0 0 1rem;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-single {
	border: 1px solid #ccc;
	border-radius: 0;
	background: 0 0;
	box-shadow: none;
	font-size: .6875rem;
	padding: .375rem;
	border-color: #ccc;
	height: 1.875rem;
	color: #0a0a0a;
	line-height: 1.5;
	transition: box-shadow .5s, border-color .25s ease-in-out;
	margin-bottom: .0625rem;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-single:hover {
	background-color: #f3f3f3;
	border-color: rgba(0, 0, 0, .75);
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop {
	padding: 0;
	padding: 0;
	border: 0 1px 1px 1px #999;
	box-shadow: none;
	border-radius: 0;
	background-color: #f3f3f3;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-search {
	display: none;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results {
	margin: 0;
	padding: 0;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li {
	font-size: .875rem;
	line-height: 1.375rem;
	padding: .1875rem .1875rem .1875rem 1.0625rem;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/dropdown-block.png");
	background-repeat: no-repeat;
	background-position: .125rem center;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li.nitro-lazy {
	background-image: none !important;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li.highlighted {
	background-color: #eee;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/dropdown-block.png");
	background-repeat: no-repeat;
	background-position: .125rem center;
	color: #1f1f1f;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li.highlighted.nitro-lazy {
	background-image: none !important;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li:focus, .page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li:hover {
	background-color: #eee;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/dropdown-block.png");
	background-repeat: no-repeat;
	background-position: .125rem center;
	color: #1f1f1f;
}

.page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li:focus.nitro-lazy, .page-template-tpl-company-directory .company-directory .chosen-container .chosen-drop .chosen-results li:hover.nitro-lazy {
	background-image: none !important;
}

.page-template-tpl-company-directory .company-directory .options {
	font-size: .6875rem;
	padding: .375rem;
	border-color: #ccc;
	height: auto;
	box-shadow: none;
}

.page-template-tpl-company-directory .company-directory .options option {
	font-size: .875rem;
}

.page-template-tpl-company-directory .company-directory .options:hover {
	background-color: #f3f3f3;
	border-color: rgba(0, 0, 0, .75);
}

.page-template-tpl-company-directory #company-results {
	margin-top: 1.375rem;
}

.page-template-tpl-company-directory .company-list {
	display: inline-block;
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.page-template-tpl-company-directory .company-list .company-cell {
	float: left;
	width: 25%;
	padding: 0 .5rem;
	margin: 0;
	list-style-type: none;
}

.page-template-tpl-company-directory .company-list .company-cell:nth-of-type(4n+1) {
	padding-left: 0;
}

.page-template-tpl-company-directory .company-list .company-cell:nth-of-type(1n) {
	clear: none;
}

.page-template-tpl-company-directory .company-list:after, .page-template-tpl-company-directory .company-list:before {
	display: table;
	content: "";
}

.page-template-tpl-company-directory .company h3 {
	font-size: .9375rem;
}

.page-template-tpl-company-directory .company p {
	line-height: .9375rem;
	font-size: .875rem;
}

.page-template-tpl-company-directory .company p:first-child {
	margin: .1875rem 0 .5rem;
	color: #333;
	line-height: 1.4375rem;
}

.page-template-tpl-company-directory .company p:not(:first-child) {
	line-height: 1.4375rem;
}

.page-template-tpl-company-directory .company.online-company {
	position: relative;
	padding-right: 2.5rem;
}

.page-template-tpl-company-directory .company.online-company img.online-icon {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	margin: .625rem .625rem 0 0;
}

.page-template-tpl-company-directory .company .logo {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 5.625rem;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.page-template-tpl-company-directory .company .logo img {
	max-width: 60%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.page-template-tpl-company-directory .company .accordion {
	background-color: transparent;
}

.page-template-tpl-company-directory .company .accordion .accordion-item {
	list-style-type: none;
	margin-left: 0;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title {
	border: none;
	padding: 0;
	margin: 0;
	font-size: .875rem;
	display: inline-block;
	color: #005e9d;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title::before {
	display: none;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title::after {
	content: "";
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/menu-arrow.png");
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	width: .75rem;
	height: .75rem;
	position: relative;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title:active, .page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title:focus, .page-template-tpl-company-directory .company .accordion .accordion-item .accordion-title:hover {
	background-color: transparent;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-content {
	padding: .75rem 0;
	border: 0;
	background-color: transparent;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-content .child-company {
	margin-bottom: 1.625rem;
}

.page-template-tpl-company-directory .company .accordion .accordion-item .accordion-content .child-company p.phone-number {
	margin-top: 1.1875rem;
}

.page-template-tpl-company-directory .offices h3 {
	text-transform: none;
	font-size: 1.2rem;
}

.page-template-tpl-company-directory .offices .fa {
	font-size: 1.3rem;
	width: 25px;
	color: #143766;
}

.video-feed .featured-video {
	border-bottom: 1px solid #efefef;
	padding: 0 0 1.625rem;
	margin: 0 0 1.625rem;
}

.video-feed .featured-video h3 {
	margin-top: 0;
	font-size: .9375rem;
}

.video-feed .featured-video .lightview-video {
	display: inline-block;
}

.video-feed .featured-video.custom-video-embed {
	display: inline-block;
	border: none;
	padding: 0;
	margin: 0;
}

.video-feed .featured-video.custom-video-embed .lightview-video {
	margin: 0;
}

.video-feed .featured-video.custom-video-embed .caption {
	text-align: left;
	margin: 0;
	padding: .375rem 0;
	line-height: 1.1875rem;
	font-style: italic;
	font-size: .75rem;
	border-top: 1px solid #ddd;
	color: #333;
}

.video-feed .video {
	margin: 0 0 2rem;
}

.video-feed .video p:first-child {
	margin: 0;
}

.video-feed .lightview-video {
	position: relative;
	display: block;
	margin: 0 0 .25rem;
}

.video-feed .lightview-video::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/play-btn.png");
	background-size: 300%;
	background-position: center;
	background-repeat: no-repeat;
}

.video-feed .lightview-video:hover::before {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/play-btn-hover.png");
}

.page-template-tpl-rss-feeds .wp-block-table table {
	width: auto;
}

.page-template-tpl-rss-feeds .caption {
	font-size: 10px;
	margin: 0;
}

@media screen and (min-width:90em) {
	.search .page-wrapper {
		background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern.png") top left repeat-y, url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern-r.png") top right repeat-y;
	}
	
	.search .page-wrapper.nitro-lazy {
		background-image: none !important;
	}
}

.search .search-form .button, .search .search-form .wp-block-button .wp-block-button__link, .wp-block-button .search .search-form .wp-block-button__link {
	font-transform: uppercase;
}

.search .search-form input[type=text] {
	height: 1.85rem;
	font-size: .76rem;
	padding: .4rem;
	margin: 0 0 .8rem;
	border-color: #ccc;
	margin-top: 2rem;
}

@media screen and (min-width:90em) {
	.search .search-form input[type=text] {
		margin-top: 4rem;
	}
}

.search .result {
	border-bottom: 1px solid #ededed;
	margin: 5px 0;
	padding: 10px 0 15px;
}

.search .result .date {
	color: #666;
	font-weight: 700;
	font-size: .6875rem;
}

.search .result .title {
	font-size: 1.0625rem;
	margin: 0;
	line-height: 1.375rem;
}

.search .result .pdf {
	background-image: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/pdf.gif");
	background-position: 0 1px;
	background-repeat: no-repeat;
	padding: 0 0 0 1.4375rem;
}

.search .result .pdf.nitro-lazy {
	background-image: none !important;
}

.search .result .url {
	color: #488745;
	line-height: .9375rem;
}

.search .result h2 {
	font-size: .875rem;
	line-height: 1.4375rem;
	font-weight: 100;
	margin: 8px 0 14px;
	color: #333;
}

.search .result em {
	font-size: .875rem;
	color: #333;
}

.search p {
	font-size: .875rem;
	line-height: 1.4375rem;
	font-weight: 100;
	margin: 8px 0 14px;
	color: #333;
}

.search p:first-child {
	margin: 0;
}

.page-template-tpl-sitemap {
	color: #333;
}

@media screen and (min-width:90em) {
	.page-template-tpl-sitemap .page-wrapper {
		background: url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern.png") top left repeat-y, url("https://cdn-gdmih.nitrocdn.com/xglDybwwbLfUsyxuTNQqvfUdgBHCveZM/assets/images/optimized/rev-23a0560/lumileds.com/wp-content/themes/lumileds/assets/img/background-pattern-r.png") top right repeat-y;
	}
	
	.page-template-tpl-sitemap .page-wrapper.nitro-lazy {
		background-image: none !important;
	}
}

.page-template-tpl-sitemap .sitemap-wrapper .submenu .return {
	display: none;
}

.page-template-tpl-sitemap .sitemap-wrapper h1 {
	font-size: 2.9375rem;
	color: #003b6a;
	font-weight: 600;
	line-height: 3.8125rem;
}

.automotive-oem-wrapper {
	margin-bottom: 2.4rem;
}

.automotive-oem-wrapper .cross-technology-button {
	margin: .625rem 0 1.25rem;
}

.automotive-oem-wrapper .wp-block-table table {
	width: 99%;
}

.automotive-oem-wrapper .wp-block-table table thead {
	background: 0 0;
	border: none;
}

.automotive-oem-wrapper .wp-block-table table thead tr:first-child th {
	border: none;
	background: 0 0;
	text-align: center;
}

.automotive-oem-wrapper figure {
	text-align: center;
}

.automotive-oem-wrapper iframe {
	width: 20rem;
}

@media print,screen and (min-width:48em) {
	.automotive-oem-wrapper iframe {
		width: 73%;
		height: 30rem;
	}
}

.automotive-oem-wrapper p {
	font-size: 1rem;
	line-height: 1.44rem;
	font-weight: 100;
	margin: .48rem 0 .88rem;
	color: #333;
}

.automotive-oem-wrapper h2 {
	font-size: 1.25rem;
	line-height: 1.9rem;
	margin-bottom: 1.36rem;
}

.automotive-oem-wrapper h3 {
	font-size: .9375rem;
}

.automotive-oem-wrapper h4 {
	font-size: .875rem;
}

.numbers {
	padding: 1rem;
	border-bottom: 3px solid #ccc;
	background-color: #f1f1f1;
}

.numbers ol {
	counter-reset: numList;
}

.numbers ol li {
	margin: 0 0 1.2rem;
	position: relative;
	padding: 0 0 1rem 3.5rem;
	list-style-type: none !important;
}

.numbers ol li::before {
	counter-increment: numList;
	content: counter(numList);
	float: left;
	position: absolute;
	left: 0;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	width: 1.75rem;
	height: 1.75rem;
	padding-top: .1875rem;
	background: #005e9d;
	border-radius: 50px;
	font-weight: 400;
}

.sustainability-intro {
	display: flex;
	flex-direction: column;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0 -100px;
}

.sustainability-title div {
	padding: 1.5rem;
}

.sustainability-title h2 {
	color: #fff;
	font-size: 30px;
	line-height: 42px;
	text-shadow: 0 0 12px rgba(0, 0, 0, .6);
	letter-spacing: -.35px;
	font-weight: 300;
}

.sustainability-title h2 span {
	color: #00b0f2;
}

.sustainability-title p {
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-shadow: 0 0 12px rgba(0, 0, 0, .6);
}

.sustainability-report {
	padding: 70px 15px;
	background: #fff;
}

.sustainability-report h3 {
	color: #00b0f2;
	font-size: 40px;
	letter-spacing: -.35px;
	line-height: 50px;
	font-weight: 300;
	margin-bottom: 20px;
}

.sustainability-report p {
	line-height: 2;
	font-size: 16px;
}

.sustainability-report .wp-block-button a.wp-block-button__link, .sustainability-report a.button, .wp-block-button .sustainability-report a.wp-block-button__link {
	position: relative;
	position: relative;
	display: inline-block;
	border: 0;
	margin: 0 0 -10px;
	overflow: hidden;
	padding: 10px 20px;
	border-style: solid;
	color: #fff;
	background: #0045a0;
	text-align: initial;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	transition: all .2s ease-in-out;
}

.sustainability-report .wp-block-button a.wp-block-button__link:before, .sustainability-report a.button:before, .wp-block-button .sustainability-report a.wp-block-button__link:before {
	content: "";
	font-family: icomoon;
	font-size: 14px;
	color: #fff;
	margin-right: 10px;
}

.sustainability-ceo {
	position: relative;
	padding-bottom: 70px;
}

.sustainability-ceo:before {
	content: "";
	background: #e8f8f3;
	position: absolute;
	height: 50%;
	width: 100%;
	z-index: -1;
}

.sustainability-ceo-card {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin: 0 auto;
	padding-top: 9%;
}

.sustainability-ceo-card img {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	max-width: 100%;
}

.sustainability-ceo-info {
	width: 100%;
	padding: 20px 40px;
	background-color: #fff;
	display: flex;
	align-items: center;
}

.sustainability-ceo-info h4 {
	color: #005e9d;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.sustainability-ceo-info h6 {
	color: grey;
	font-size: 14px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
}

.sustainability-ceo-info blockquote {
	padding: 0;
	background: #fff;
	margin: 0;
	font-size: 18px;
	border: none;
}

.sustainability-priorities {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 70px 0;
}

.sustainability-priorities-info {
	display: flex;
	flex-direction: column;
}

.sustainability-priorities-info-title h2 {
	font-size: 35px;
	letter-spacing: -.35px;
	line-height: 50px;
	font-weight: 300;
	color: #fff;
	margin: 0;
}

.sustainability-priorities-info-content p {
	color: #fff;
	line-height: 2;
}

.sustainability-priorities-info-content p+p {
	margin-top: 30px;
}

.sustainability-priorities-cards {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.sustainability-priorities-cards li {
	list-style-type: none;
	width: 50%;
	margin: 0;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
}

.sustainability-priorities-cards li div {
	background-color: rgba(3, 78, 128, .71);
	padding: 22px 30px;
	border-style: solid;
	border-width: 1px;
	border-color: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	text-align: center;
	width: 100%;
}

.sustainability-priorities-cards li div img {
	max-width: 100%;
	height: 38px;
	margin-bottom: 20px;
}

.sustainability-priorities-cards li div h3 {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	line-height: 19px;
	text-transform: unset;
}

.sustainability-priorities-cards li div a .plus-icon {
	max-width: 25px;
}

.sustainability-priorities-cards li div a:hover .plus-icon .cls-1 {
	fill: #fff;
}

.sustainability-goals {
	padding: 70px 0;
	position: relative;
	padding-bottom: 70px;
}

.sustainability-goals:after {
	content: "";
	background: #e8f8f3;
	position: absolute;
	height: 50%;
	width: 100%;
	z-index: -1;
	bottom: 0;
}

.sustainability-goals-info {
	display: flex;
	flex-direction: column;
}

.sustainability-goals-info-title h2 {
	color: #00b0f2;
	font-size: 35px;
	letter-spacing: -.35px;
	line-height: 50px;
	font-weight: 300;
	margin: 0;
}

.sustainability-goals-info-content p {
	color: #000;
	line-height: 2;
}

.sustainability-goals-info-content p+p {
	margin-top: 30px;
}

.sustainability-goals-info-content .wp-block-button a.wp-block-button__link, .sustainability-goals-info-content a.button, .wp-block-button .sustainability-goals-info-content a.wp-block-button__link {
	position: relative;
	display: inline-block;
	border: 0;
	margin: 0 0 -10px;
	overflow: hidden;
	padding: 10px 20px;
	border-style: solid;
	color: #fff;
	background: #0045a0;
	text-align: initial;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	transition: all .2s ease-in-out;
}

.sustainability-goals-info-content .wp-block-button a.wp-block-button__link:before, .sustainability-goals-info-content a.button:before, .wp-block-button .sustainability-goals-info-content a.wp-block-button__link:before {
	content: "";
	font-family: icomoon;
	font-size: 14px;
	color: #fff;
	margin-right: 10px;
}

.sustainability-goals-cards {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 60px -7px -7px;
	padding: 0;
}

.sustainability-goals-cards li {
	list-style-type: none;
	padding: 7px;
	box-sizing: border-box;
	margin: 0;
	display: flex;
}

.sustainability-goals-cards li>div {
	background-color: #fff;
	padding: 16px 16px 16px;
	border-radius: 5px;
	box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .06);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.sustainability-goals-cards li>div img {
	max-width: 100%;
	margin: 0;
}

.sustainability-goals-cards li>div>div {
	width: 100%;
}

.sustainability-goals-cards li>div>div h3 {
	font-size: 14px;
	color: grey;
	font-weight: 400;
	line-height: 24px;
	padding-bottom: 0;
	margin-bottom: 0;
	border-style: none;
}

.sustainability-goals-cards li>div>div p {
	font-size: 14px;
	color: #005e9d;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 2rem;
}

.sustainability-goals-button {
	font-size: 14px;
	color: #005e9d;
	line-height: 22px;
	background-color: #fff;
	padding: 5px 15px 6px;
	margin: 5px 0;
	border-style: solid;
	border-width: 1px;
	border-color: #005e9d;
	border-radius: 25px;
	position: relative;
	display: inline-block;
}

.sustainability-goals-button:before {
	content: "";
	font-family: icomoon;
	font-size: 14px;
	color: #005e9d;
	margin-right: 10px;
}

.sustainability-goals-button:active, .sustainability-goals-button:hover {
	color: #fff;
	background-color: #005e9d;
	border-style: solid;
	border-width: 1px;
	border-color: #005e9d;
	border-radius: 25px;
}

.sustainability-goals-button:active:before, .sustainability-goals-button:hover:before {
	color: #fff;
}

@media screen and (min-width:1024px) {
	.sustainability-intro {
		flex-direction: row;
		align-items: center;
		background-position: center;
	}
	
	.sustainability-report, .sustainability-title {
		width: 50%;
		display: flex;
		justify-content: center;
	}
	
	.sustainability-title {
		padding-right: 9%;
		padding-left: 8%;
	}
	
	.sustainability-title div {
		padding: 0;
	}
	
	.sustainability-title h2 {
		font-size: 40px;
		line-height: 55px;
	}
	
	.sustainability-report {
		padding: 225px 10% 225px 40px;
	}
	
	.sustainability-report h3 {
		margin-bottom: 35px;
	}
	
	.sustainability-ceo {
		padding-bottom: 220px;
	}
	
	.sustainability-ceo-card {
		width: 63%;
		flex-direction: row;
	}
	
	.sustainability-ceo-card img {
		width: 40%;
	}
	
	.sustainability-ceo-info {
		padding: 60px 80px;
		width: 60%;
	}
	
	.sustainability-priorities {
		padding: 140px 0;
	}
	
	.sustainability-priorities-info {
		flex-direction: row;
	}
	
	.sustainability-priorities-info-title {
		width: 36%;
	}
	
	.sustainability-priorities-info-content {
		width: 33.33333333%;
	}
	
	.sustainability-priorities-cards li {
		width: 33%;
	}
	
	.sustainability-goals {
		padding: 140px 0;
	}
	
	.sustainability-goals-info {
		flex-direction: row;
		margin: 0 -12px;
	}
	
	.sustainability-goals-info-content, .sustainability-goals-info-title {
		padding: 0 12px;
		box-sizing: border-box;
	}
	
	.sustainability-goals-info-title {
		width: 36%;
	}
	
	.sustainability-goals-info-content {
		width: 33.33333333%;
	}
	
	.sustainability-goals-cards {
		flex-direction: row;
	}
	
	.sustainability-goals-cards li {
		width: 50%;
	}
	
	.sustainability-goals-cards li>div {
		align-items: flex-start;
		flex-direction: row;
	}
	
	.sustainability-goals-cards li>div img {
		max-width: 30%;
		margin: 10px 20px 0 0;
	}
	
	.sustainability-goals-cards li>div>div {
		width: 70%;
	}
}

body {
	font-weight: 100;
	min-height: 100%;
	box-shadow: 0 0 .625rem rgba(0, 0, 0, .3);
}

h1, h2, h3, h4, h5 {
	font-weight: 400;
}

h2 {
	color: #005e9d;
	line-height: 1.875rem;
	margin: .75rem 0 1.1875rem;
	font-size: 1.25rem;
	font-weight: 600;
}

h3 {
	font-size: .9375rem;
	line-height: 1.4375rem;
	color: #005e9d;
	text-transform: uppercase;
	margin: .8rem 0;
}

h4 {
	font-size: 1rem;
	line-height: 1.125rem;
	color: #0a0a0a;
	margin: 1rem 0 .5rem;
}

h5 {
	font-size: .9rem;
	line-height: 1.26rem;
}

h6 {
	font-size: .8rem;
	line-height: 1.12rem;
	font-weight: 400;
	color: #0a0a0a;
}

h2.is-style-large-blue, h3.is-style-large-blue {
	font-weight: 300;
	font-size: 1rem;
	color: #005e9d;
	line-height: 1.5;
}

@media print,screen and (min-width:48em) {
	h2.is-style-large-blue, h3.is-style-large-blue {
		font-size: 2.25rem;
	}
}

h2.is-style-regular-blue, h3.is-style-regular-blue {
	font-weight: 400;
	font-size: 1.25rem;
	color: #005e9d;
	line-height: 1.5;
}

@media print,screen and (min-width:48em) {
	h2.is-style-regular-blue, h3.is-style-regular-blue {
		font-size: 1.625rem;
	}
}

p {
	font-size: .975rem;
	margin: 7px 0 14px;
}

strong {
	font-weight: 600;
}

a {
	color: #005e9d;
}

.link-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
}

.lumiledsBlue {
	color: #005e9d;
}

.blueCallout {
	font-size: 1rem;
	color: #00aeef;
}

.lumiledsBold {
	color: #005e9d;
}

hr {
	background-color: #ededed;
	height: .0625rem;
	margin: .875rem 0;
	border: none;
}

.underline {
	border-bottom: 1px solid #ededed;
	padding-bottom: .8rem;
	text-transform: none;
}

.button.round, .wp-block-button .round.wp-block-button__link {
	border-radius: 62.5rem;
}

.button.large, .wp-block-button .large.wp-block-button__link {
	font-size: 1rem;
	padding: .9375rem 1.75rem;
}

.wp-block-button p.wp-block-button__link a, p.button a {
	color: inherit;
}

.wp-block-button p.round.wp-block-button__link, p.button.round {
	border-radius: 62.5rem;
}

.wp-block-button p.large.wp-block-button__link, p.button.large {
	font-size: 1rem;
	padding: .9375rem 1.75rem;
}

.uppercase {
	text-transform: uppercase;
}

.explore {
	text-transform: uppercase;
	font-size: .75rem;
	font-weight: 400;
	display: block;
}

.explore:not(.static) {
	position: absolute;
	bottom: 0;
	left: 0;
}

.small {
	font-size: .7rem;
}

.wp-block-image.is-style-technology img {
	padding: .625rem;
	border: 1px solid #ededed;
}

.wp-block-image figcaption {
	text-align: left;
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.125rem;
	padding: .1875rem 0;
	border-bottom: 3px solid #666;
}

table {
	width: 99%;
	overflow-x: auto;
	border: none;
	box-sizing: content-box;
	font-size: .75rem;
	text-align: left;
}

table tr:nth-child(even) {
	background-color: #f9f9f9;
}

table tr td {
	border: 1px solid #ccc;
	padding: .4375rem .5rem;
	line-height: 1.1875rem;
}

table tr th {
	color: #666;
	font-weight: 600;
	text-transform: none;
	background-color: #efefef;
	border: 1px solid #ccc;
	padding: .4375rem .5rem;
	line-height: 1.1875rem;
}

.table-odd-color tr:nth-child(odd) {
	background-color: transparent;
}

.table-odd-color tr:nth-child(even) {
	background-color: #f9f9f9;
}

ul {
	margin: 0 0 1.25rem 12px;
	padding: 0;
}

ul li {
	font-size: .975rem;
	line-height: 1.6rem;
	margin: 0 0 .375rem 1.125rem;
	list-style-type: square;
}

ol {
	padding: 0;
	margin: 0 0 1.25rem 12px;
}

ol li {
	font-size: .975rem;
	line-height: 1.6rem;
	margin: 0 0 .375rem 1.125rem;
}

.is-style-blue-numbered-list {
	padding: 0;
	margin: 0 0 0 .8125rem;
	counter-reset: numList;
}

.is-style-blue-numbered-list li {
	margin: 0 0 1rem;
	list-style-type: none;
	position: relative;
	padding: 0 0 .8125rem 2.8125rem;
}

.is-style-blue-numbered-list li::before {
	content: counter(numList);
	counter-increment: numList;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	color: #fff;
	background-color: #005e9d;
	border-radius: 6.25rem;
	font-weight: 400;
}

.fa {
	font-size: .875rem;
}
