@charset "UTF-8";
.show-for-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
/* !  Dependent files
	 ------------------------------------------------------------------------------------------------------*/
/* ==========================================================================
#
# //////////////////////////////// GLOBAL ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------

		Global variables and mixins for SASS/Foundation

		Table of Contents:

		1. Color Variables
		2. Font Variables
		3. Foundation global variables
		4. Mixins

-------------------------------------------*/
/* ==========================================================================
	1. 	COLOR VARIABLES
	========================================================================== */
/* 	Brand Colors — Create unique, meaningful variable names. Resources: https://goo.gl/EsRWcj, https://goo.gl/qpV8Zg
	========================================================================== */
/* 	Primary UI — Colors used for buttons and callouts. There must always be a color called `primary`.
	========================================================================== */
/* 	Gray UI — Used heavily in components.
	========================================================================== */
/* 	Social Colors
	========================================================================== */
/* ==========================================================================
	2. 	FONT VARIABLES
	========================================================================== */
/* ==========================================================================
	3. 	GLOBAL VARIABLES
	========================================================================== */
/* ==========================================================================
	4. 	MIXINS
	========================================================================== */
/* !  Extra Components
	 ------------------------------------------------------------------------------------------------------*/
/* ==========================================================================
#
# ///////////////////////////// MENU HAMBURGER //////////////////////////////
#
========================================================================== */
/* ==========================================================================
	!  VARIABLES & MIXINS
	========================================================================== */
/* ==========================================================================
	!  BASE STYLES
	========================================================================== */
.lines-button {
  display: block;
  padding: 0 0;
  margin-top: -0.5rem;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
  border-radius: 0.2142857143rem;
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:active {
  transition: 0;
  background: rgba(0, 0, 0, 0.1);
}
.lines-button .text {
  display: none;
}
.lines {
  display: inline-block;
  width: 1.5rem;
  height: 0.1666666667rem;
  background: #417640;
  border-radius: 5px;
  transition: 1s;
  position: relative;
}
.lines:before, .lines:after {
  display: inline-block;
  width: 1.5rem;
  height: 0.1666666667rem;
  background: #417640;
  border-radius: 5px;
  transition: 1s;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: 0.1071428571rem center;
}
.lines:before {
  top: 0.375rem;
}
.lines:after {
  top: -0.375rem;
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:hover .lines:before {
  top: 0.4285714286rem;
}
.lines-button:hover .lines:after {
  top: -0.4285714286rem;
}
.lines-button .lines {
  transition: background 0.3s 0.6s ease;
}
.lines-button .lines:before, .lines-button .lines:after {
  transform-origin: 50% 50%;
  transition: top 0.3s 0.6s ease, transform 0.3s ease;
}
.lines-button.close .lines {
  transition: background 0.3s 0s ease;
  background: transparent;
}
.lines-button.close .lines:before, .lines-button.close .lines:after {
  transition: top 0.3s ease, transform 0.3s 0.5s ease;
  top: 0;
  width: 1.5rem;
  background: #417640;
}
.lines-button.close .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.close .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}
/* ==========================================================================
#
# ///////////// jQuery Accessible Accordion Aria Plugin Styles /////////////
#
========================================================================== */
.js-accordion-panel[aria-hidden=true] {
  display: none;
}
.js-accordion-panel[role="tabpanel"] .js-accordion-header {
  display: none;
}
button.js-accordion-header {
  display: block !important;
}
.js-accordion-header[aria-expanded="true"]:after {
  content: "×";
}
.js-accordion-header[aria-expanded="false"]:after {
  content: "+";
}
/* ==========================================================================
#
# /////////////////////////////// Dialogs ///////////////////////////////////
# 	e.g. Modal Pop-Ups, via the a11y-dialog plugin.
#
========================================================================== */
/*************************************************
**************** GENERAL DIALOGS
*************************************************/
/**
* 1. Make the dialog container, and its child overlay spread across
*    the entire window.
*/
.dialog-container, .dialog-overlay {
  position: fixed;
  /* 1 */
  inset: 0;
  /* 1 */
}
/**
* 1. Make sure the dialog container and all its descendants sits on
*    top of the rest of the page.
* 2. Make the dialog container a flex container to easily center the
*    dialog.
* 3. Ensure the close button remains in frame.
* 4. Ensure can scroll tall items.
* 5. Account for the admin bar when logged in.
*/
.dialog-container {
  z-index: 15;
  /* 1 */
  display: flex;
  /* 2 */
  padding: 40px;
  /* 3 */
  overflow-y: auto;
  /* 4 */
}
body.admin-bar .dialog-container {
  padding-top: 86px;
  /* 5 */
}
@media screen and (min-width: 48.9375em) {
  body.admin-bar .dialog-container {
    padding-top: 72px;
    /* 5 */
  }
}
/**
* 1. Make sure the dialog container and all its descendants are not
*    visible and not focusable when it is hidden.
*/
.dialog-container[aria-hidden="true"] {
  display: none;
  /* 1 */
}
/**
* 1. Animation Styles
*/
@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@keyframes slide-up {
  from {
    transform: translateY(10%);
  }
}
/**
* 1. Make the overlay look like an overlay.
*/
.dialog-overlay {
  background-color: rgba(43, 46, 56, 0.9);
  /* 1 */
  animation: fade-in 200ms both;
}
/**
* 1. Vertically and horizontally center the dialog in the page.
* 2. Make sure the dialog sits on top of the overlay.
* 3. Make sure the dialog has an opaque background.
* 4. Add an animation delay equal to the overlay animation duration to
*    wait for the overlay to appear before animation in the dialog.
* 5. Limit height of image.
*/
.dialog-content {
  margin: auto;
  /* 1 */
  z-index: 20;
  /* 2 */
  position: relative;
  /* 2 */
  background-color: white;
  /* 3 */
  animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
  /* 4 */
  /* 5 */
}
.dialog-content .dialog-image {
  max-height: calc(100vh - 80px);
}
body.admin-bar .dialog-content .dialog-image {
  max-height: calc(100vh - 126px);
}
@media screen and (min-width: 48.9375em) {
  body.admin-bar .dialog-content .dialog-image {
    max-height: calc(100vh - 112px);
  }
}
/**
* 1. Style the Close Dialog Button
*/
.dialog-content .close-dialog {
  font-size: 40px;
  line-height: 1;
  border-radius: 0;
  padding: 0px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  color: white;
}
.dialog-content .close-dialog:active {
  top: -39px;
}
.dialog-content .close-dialog:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
  border-radius: 3px;
}
/* Slider */
.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: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -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:before, .slick-track:after {
  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;
}
/* !  Layout — Headers, footers, sidebars (reusable )
	 ------------------------------------------------------------------------------------------------------*/
/* ==========================================================================
#
# //////////////////////////// COLOR HELPERS /////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Text Colors
		2. Background Colors
		3. Misc
-------------------------------------------*/
/* ==========================================================================
	1.  TEXT COLORS
	========================================================================== */
.primary-color {
  color: #417640 !important;
}
.primary-colora:hover, .primary-colora:focus {
  color: #386537 !important;
}
a.primary-color:hover, a.primary-color:focus {
  color: #386537 !important;
}
.primary-hover-color:hover, .primary-hover-color:focus {
  color: #417640 !important;
}
.secondary-color {
  color: #ffd100 !important;
}
.secondary-colora:hover, .secondary-colora:focus {
  color: #dbb400 !important;
}
a.secondary-color:hover, a.secondary-color:focus {
  color: #dbb400 !important;
}
.secondary-hover-color:hover, .secondary-hover-color:focus {
  color: #ffd100 !important;
}
.tertiary-color {
  color: #222222 !important;
}
.tertiary-colora:hover, .tertiary-colora:focus {
  color: #1d1d1d !important;
}
a.tertiary-color:hover, a.tertiary-color:focus {
  color: #1d1d1d !important;
}
.tertiary-hover-color:hover, .tertiary-hover-color:focus {
  color: #222222 !important;
}
.success-color {
  color: #658f64 !important;
}
.success-colora:hover, .success-colora:focus {
  color: #577b56 !important;
}
a.success-color:hover, a.success-color:focus {
  color: #577b56 !important;
}
.success-hover-color:hover, .success-hover-color:focus {
  color: #658f64 !important;
}
.warning-color {
  color: #fde231 !important;
}
.warning-colora:hover, .warning-colora:focus {
  color: #fddc07 !important;
}
a.warning-color:hover, a.warning-color:focus {
  color: #fddc07 !important;
}
.warning-hover-color:hover, .warning-hover-color:focus {
  color: #fde231 !important;
}
.alert-color {
  color: #ff2c5d !important;
}
.alert-colora:hover, .alert-colora:focus {
  color: #ff023d !important;
}
a.alert-color:hover, a.alert-color:focus {
  color: #ff023d !important;
}
.alert-hover-color:hover, .alert-hover-color:focus {
  color: #ff2c5d !important;
}
.info-color {
  color: #417640 !important;
}
.info-colora:hover, .info-colora:focus {
  color: #386537 !important;
}
a.info-color:hover, a.info-color:focus {
  color: #386537 !important;
}
.info-hover-color:hover, .info-hover-color:focus {
  color: #417640 !important;
}
.white-color {
  color: #FFFFFF !important;
}
.white-colora:hover, .white-colora:focus {
  color: #dbdbdb !important;
}
a.white-color:hover, a.white-color:focus {
  color: #dbdbdb !important;
}
.white-hover-color:hover, .white-hover-color:focus {
  color: #FFFFFF !important;
}
.black-color {
  color: #000000 !important;
}
.black-colora:hover, .black-colora:focus {
  color: black !important;
}
a.black-color:hover, a.black-color:focus {
  color: black !important;
}
.black-hover-color:hover, .black-hover-color:focus {
  color: #000000 !important;
}
.gray-color {
  color: #dddddd !important;
}
.gray-colora:hover, .gray-colora:focus {
  color: #bebebe !important;
}
a.gray-color:hover, a.gray-color:focus {
  color: #bebebe !important;
}
.gray-hover-color:hover, .gray-hover-color:focus {
  color: #dddddd !important;
}
.light-gray-color {
  color: #f7f7f7 !important;
}
.light-gray-colora:hover, .light-gray-colora:focus {
  color: #d4d4d4 !important;
}
a.light-gray-color:hover, a.light-gray-color:focus {
  color: #d4d4d4 !important;
}
.light-gray-hover-color:hover, .light-gray-hover-color:focus {
  color: #f7f7f7 !important;
}
.medium-gray-color {
  color: #eeeeee !important;
}
.medium-gray-colora:hover, .medium-gray-colora:focus {
  color: #cdcdcd !important;
}
a.medium-gray-color:hover, a.medium-gray-color:focus {
  color: #cdcdcd !important;
}
.medium-gray-hover-color:hover, .medium-gray-hover-color:focus {
  color: #eeeeee !important;
}
.dark-gray-color {
  color: #757575 !important;
}
.dark-gray-colora:hover, .dark-gray-colora:focus {
  color: #656565 !important;
}
a.dark-gray-color:hover, a.dark-gray-color:focus {
  color: #656565 !important;
}
.dark-gray-hover-color:hover, .dark-gray-hover-color:focus {
  color: #757575 !important;
}
.twitter-color {
  color: #00aced !important;
}
.twitter-colora:hover, .twitter-colora:focus {
  color: #0094cc !important;
}
a.twitter-color:hover, a.twitter-color:focus {
  color: #0094cc !important;
}
.twitter-hover-color:hover, .twitter-hover-color:focus {
  color: #00aced !important;
}
.facebook-color {
  color: #3b5998 !important;
}
.facebook-colora:hover, .facebook-colora:focus {
  color: #334d83 !important;
}
a.facebook-color:hover, a.facebook-color:focus {
  color: #334d83 !important;
}
.facebook-hover-color:hover, .facebook-hover-color:focus {
  color: #3b5998 !important;
}
.google-color {
  color: #dd4b39 !important;
}
.google-colora:hover, .google-colora:focus {
  color: #cc3623 !important;
}
a.google-color:hover, a.google-color:focus {
  color: #cc3623 !important;
}
.google-hover-color:hover, .google-hover-color:focus {
  color: #dd4b39 !important;
}
.youtube-color {
  color: #bb0000 !important;
}
.youtube-colora:hover, .youtube-colora:focus {
  color: #a10000 !important;
}
a.youtube-color:hover, a.youtube-color:focus {
  color: #a10000 !important;
}
.youtube-hover-color:hover, .youtube-hover-color:focus {
  color: #bb0000 !important;
}
.linkedin-color {
  color: #007bb6 !important;
}
.linkedin-colora:hover, .linkedin-colora:focus {
  color: #006a9d !important;
}
a.linkedin-color:hover, a.linkedin-color:focus {
  color: #006a9d !important;
}
.linkedin-hover-color:hover, .linkedin-hover-color:focus {
  color: #007bb6 !important;
}
.instagram-color {
  color: #517fa4 !important;
}
.instagram-colora:hover, .instagram-colora:focus {
  color: #466d8d !important;
}
a.instagram-color:hover, a.instagram-color:focus {
  color: #466d8d !important;
}
.instagram-hover-color:hover, .instagram-hover-color:focus {
  color: #517fa4 !important;
}
.pinterest-color {
  color: #cb2027 !important;
}
.pinterest-colora:hover, .pinterest-colora:focus {
  color: #af1c22 !important;
}
a.pinterest-color:hover, a.pinterest-color:focus {
  color: #af1c22 !important;
}
.pinterest-hover-color:hover, .pinterest-hover-color:focus {
  color: #cb2027 !important;
}
.link-color {
  color: #417640 !important;
}
.link-colora:hover, .link-colora:focus {
  color: #386537 !important;
}
a.link-color:hover, a.link-color:focus {
  color: #386537 !important;
}
.link-hover-color:hover, .link-hover-color:focus {
  color: #417640 !important;
}
/* ==========================================================================
	2.  BACKGROUND COLORS
	========================================================================== */
.primary-bg {
  background-color: #417640 !important;
}
.secondary-bg {
  background-color: #ffd100 !important;
}
.tertiary-bg {
  background-color: #222222 !important;
}
.success-bg {
  background-color: #658f64 !important;
}
.warning-bg {
  background-color: #fde231 !important;
}
.alert-bg {
  background-color: #ff2c5d !important;
}
.info-bg {
  background-color: #417640 !important;
}
.white-bg {
  background-color: #FFFFFF !important;
}
.black-bg {
  background-color: #000000 !important;
}
.gray-bg {
  background-color: #dddddd !important;
}
.light-gray-bg {
  background-color: #f7f7f7 !important;
}
.medium-gray-bg {
  background-color: #eeeeee !important;
}
.dark-gray-bg {
  background-color: #757575 !important;
}
.twitter-bg {
  background-color: #00aced !important;
}
.facebook-bg {
  background-color: #3b5998 !important;
}
.google-bg {
  background-color: #dd4b39 !important;
}
.youtube-bg {
  background-color: #bb0000 !important;
}
.linkedin-bg {
  background-color: #007bb6 !important;
}
.instagram-bg {
  background-color: #517fa4 !important;
}
.pinterest-bg {
  background-color: #cb2027 !important;
}
/* ==========================================================================
	3.  MISC
	========================================================================== */
.instagram-bg, .instagram-bg-hover:hover, .instagram-bg-hover:focus {
  background: radial-gradient(circle at 33% 100%, #FED373 0%, #F15245 40%, #D92E7F 60%, #9B36B7 75%, #515ECF) !important;
}
@media screen and (min-width: 64em) {
  .instagram-bg, .instagram-bg-hover:hover, .instagram-bg-hover:focus {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%) !important;
  }
}
/* ==========================================================================
#
# //////////////////////////// LAYOUT HELPERS ///////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. SELECTION
		2. Floats and Clearfix
		3. Visibility
		4. Display Class Helpers
		5. Spacers, Margins, and Padding
		6. Media

-------------------------------------------*/
/* ==========================================================================
	1.  SELECTION
	========================================================================== */
::selection {
  background: #417640;
  color: #FFFFFF;
}
/* ==========================================================================
	1.  FLOATS & CLEARFIX
	========================================================================== */
.float-left, .left {
  float: left !important;
}
.float-right, .right {
  float: right !important;
}
.float-center, .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* ==========================================================================
	3.  VISIBILITY
	========================================================================== */
.hide, .hidden, .display-none {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
/* ==========================================================================
	4.  DISPLAY CLASS HELPERS
	========================================================================== */
.display-inline-block, .inline-block {
  display: inline-block;
}
.display-block, .block {
  display: block;
}
.display-inline, .inline {
  display: inline;
}
.overflow-hidden {
  overflow: hidden;
}
.position-relative {
  position: relative;
}
/* ==========================================================================
	5.  SPACERS | MARGINS | 
	========================================================================== */
/* -----------------------------------------------------------------------------

		Add padding or margins to elements. Can use media queries in class names (but no -only classes like medium-only).
			
		SPACINGTYPE-DIRECTIONCLASS-SPACINGSIZE
		BREAKPOINTCLASS-SPACINGTYPE-DIRECTIONCLASS-SPACINGSIZE

		BREAKPOINTCLASS: 	medium, large (to add xlarge, you must change array in $breakpoint-classes in foundatin/util/_breakpoint.scss)
		SPACINGTYPE: 			padding, margin
		DIRECTIONCLASS:		(blank), top, bottom, left, right, h, v
		SPACINGSIZE: 			none, tiny, small, medium, large, xlarge
		
		Example:
			padding-left-medium: 			adds padding-left:2.5rem;
			large-padding-left-medium	adds padding-left:2.5rem; on large screens and above only

		Special shorthand:
			margin-small: 					adds margin:1.25rem; to ALL sides
			margin-h-small:				adds margin:1.25rem; to TOP and BOTTOM
			margin-v-small: 				adds margin:1.25rem; to LEFT and RIGHT
	------------------------------------------------------------------------------ */
.padding-none {
  padding: 0 !important;
}
.padding-tiny {
  padding: 0.5rem !important;
}
.padding-small {
  padding: 1.25rem !important;
}
.padding-medium {
  padding: 2.5rem !important;
}
.padding-large {
  padding: 3.75rem !important;
}
.padding-xlarge {
  padding: 5rem !important;
}
.padding-top-none {
  padding-top: 0 !important;
}
.padding-top-tiny {
  padding-top: 0.5rem !important;
}
.padding-top-small {
  padding-top: 1.25rem !important;
}
.padding-top-medium {
  padding-top: 2.5rem !important;
}
.padding-top-large {
  padding-top: 3.75rem !important;
}
.padding-top-xlarge {
  padding-top: 5rem !important;
}
.padding-bottom-none {
  padding-bottom: 0 !important;
}
.padding-bottom-tiny {
  padding-bottom: 0.5rem !important;
}
.padding-bottom-small {
  padding-bottom: 1.25rem !important;
}
.padding-bottom-medium {
  padding-bottom: 2.5rem !important;
}
.padding-bottom-large {
  padding-bottom: 3.75rem !important;
}
.padding-bottom-xlarge {
  padding-bottom: 5rem !important;
}
.padding-left-none {
  padding-left: 0 !important;
}
.padding-left-tiny {
  padding-left: 0.5rem !important;
}
.padding-left-small {
  padding-left: 1.25rem !important;
}
.padding-left-medium {
  padding-left: 2.5rem !important;
}
.padding-left-large {
  padding-left: 3.75rem !important;
}
.padding-left-xlarge {
  padding-left: 5rem !important;
}
.padding-right-none {
  padding-right: 0 !important;
}
.padding-right-tiny {
  padding-right: 0.5rem !important;
}
.padding-right-small {
  padding-right: 1.25rem !important;
}
.padding-right-medium {
  padding-right: 2.5rem !important;
}
.padding-right-large {
  padding-right: 3.75rem !important;
}
.padding-right-xlarge {
  padding-right: 5rem !important;
}
.padding-h-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.padding-h-tiny {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.padding-h-small {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.padding-h-medium {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.padding-h-large {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}
.padding-h-xlarge {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.padding-v-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.padding-v-tiny {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.padding-v-small {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.padding-v-medium {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.padding-v-large {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}
.padding-v-xlarge {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
@media screen and (min-width: 40em) {
  .medium-padding-none {
    padding: 0 !important;
  }
  .medium-padding-tiny {
    padding: 0.5rem !important;
  }
  .medium-padding-small {
    padding: 1.25rem !important;
  }
  .medium-padding-medium {
    padding: 2.5rem !important;
  }
  .medium-padding-large {
    padding: 3.75rem !important;
  }
  .medium-padding-xlarge {
    padding: 5rem !important;
  }
  .medium-padding-top-none {
    padding-top: 0 !important;
  }
  .medium-padding-top-tiny {
    padding-top: 0.5rem !important;
  }
  .medium-padding-top-small {
    padding-top: 1.25rem !important;
  }
  .medium-padding-top-medium {
    padding-top: 2.5rem !important;
  }
  .medium-padding-top-large {
    padding-top: 3.75rem !important;
  }
  .medium-padding-top-xlarge {
    padding-top: 5rem !important;
  }
  .medium-padding-bottom-none {
    padding-bottom: 0 !important;
  }
  .medium-padding-bottom-tiny {
    padding-bottom: 0.5rem !important;
  }
  .medium-padding-bottom-small {
    padding-bottom: 1.25rem !important;
  }
  .medium-padding-bottom-medium {
    padding-bottom: 2.5rem !important;
  }
  .medium-padding-bottom-large {
    padding-bottom: 3.75rem !important;
  }
  .medium-padding-bottom-xlarge {
    padding-bottom: 5rem !important;
  }
  .medium-padding-left-none {
    padding-left: 0 !important;
  }
  .medium-padding-left-tiny {
    padding-left: 0.5rem !important;
  }
  .medium-padding-left-small {
    padding-left: 1.25rem !important;
  }
  .medium-padding-left-medium {
    padding-left: 2.5rem !important;
  }
  .medium-padding-left-large {
    padding-left: 3.75rem !important;
  }
  .medium-padding-left-xlarge {
    padding-left: 5rem !important;
  }
  .medium-padding-right-none {
    padding-right: 0 !important;
  }
  .medium-padding-right-tiny {
    padding-right: 0.5rem !important;
  }
  .medium-padding-right-small {
    padding-right: 1.25rem !important;
  }
  .medium-padding-right-medium {
    padding-right: 2.5rem !important;
  }
  .medium-padding-right-large {
    padding-right: 3.75rem !important;
  }
  .medium-padding-right-xlarge {
    padding-right: 5rem !important;
  }
  .medium-padding-h-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .medium-padding-h-tiny {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .medium-padding-h-small {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .medium-padding-h-medium {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .medium-padding-h-large {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .medium-padding-h-xlarge {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .medium-padding-v-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .medium-padding-v-tiny {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .medium-padding-v-small {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .medium-padding-v-medium {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .medium-padding-v-large {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .medium-padding-v-xlarge {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media screen and (min-width: 64em) {
  .large-padding-none {
    padding: 0 !important;
  }
  .large-padding-tiny {
    padding: 0.5rem !important;
  }
  .large-padding-small {
    padding: 1.25rem !important;
  }
  .large-padding-medium {
    padding: 2.5rem !important;
  }
  .large-padding-large {
    padding: 3.75rem !important;
  }
  .large-padding-xlarge {
    padding: 5rem !important;
  }
  .large-padding-top-none {
    padding-top: 0 !important;
  }
  .large-padding-top-tiny {
    padding-top: 0.5rem !important;
  }
  .large-padding-top-small {
    padding-top: 1.25rem !important;
  }
  .large-padding-top-medium {
    padding-top: 2.5rem !important;
  }
  .large-padding-top-large {
    padding-top: 3.75rem !important;
  }
  .large-padding-top-xlarge {
    padding-top: 5rem !important;
  }
  .large-padding-bottom-none {
    padding-bottom: 0 !important;
  }
  .large-padding-bottom-tiny {
    padding-bottom: 0.5rem !important;
  }
  .large-padding-bottom-small {
    padding-bottom: 1.25rem !important;
  }
  .large-padding-bottom-medium {
    padding-bottom: 2.5rem !important;
  }
  .large-padding-bottom-large {
    padding-bottom: 3.75rem !important;
  }
  .large-padding-bottom-xlarge {
    padding-bottom: 5rem !important;
  }
  .large-padding-left-none {
    padding-left: 0 !important;
  }
  .large-padding-left-tiny {
    padding-left: 0.5rem !important;
  }
  .large-padding-left-small {
    padding-left: 1.25rem !important;
  }
  .large-padding-left-medium {
    padding-left: 2.5rem !important;
  }
  .large-padding-left-large {
    padding-left: 3.75rem !important;
  }
  .large-padding-left-xlarge {
    padding-left: 5rem !important;
  }
  .large-padding-right-none {
    padding-right: 0 !important;
  }
  .large-padding-right-tiny {
    padding-right: 0.5rem !important;
  }
  .large-padding-right-small {
    padding-right: 1.25rem !important;
  }
  .large-padding-right-medium {
    padding-right: 2.5rem !important;
  }
  .large-padding-right-large {
    padding-right: 3.75rem !important;
  }
  .large-padding-right-xlarge {
    padding-right: 5rem !important;
  }
  .large-padding-h-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .large-padding-h-tiny {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .large-padding-h-small {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .large-padding-h-medium {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .large-padding-h-large {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
  .large-padding-h-xlarge {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .large-padding-v-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .large-padding-v-tiny {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .large-padding-v-small {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .large-padding-v-medium {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .large-padding-v-large {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .large-padding-v-xlarge {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
.margin-none {
  margin: 0 !important;
}
.margin-tiny {
  margin: 0.5rem !important;
}
.margin-small {
  margin: 1.25rem !important;
}
.margin-medium {
  margin: 2.5rem !important;
}
.margin-large {
  margin: 3.75rem !important;
}
.margin-xlarge {
  margin: 5rem !important;
}
.margin-top-none {
  margin-top: 0 !important;
}
.margin-top-tiny {
  margin-top: 0.5rem !important;
}
.margin-top-small {
  margin-top: 1.25rem !important;
}
.margin-top-medium {
  margin-top: 2.5rem !important;
}
.margin-top-large {
  margin-top: 3.75rem !important;
}
.margin-top-xlarge {
  margin-top: 5rem !important;
}
.margin-bottom-none {
  margin-bottom: 0 !important;
}
.margin-bottom-tiny {
  margin-bottom: 0.5rem !important;
}
.margin-bottom-small {
  margin-bottom: 1.25rem !important;
}
.margin-bottom-medium {
  margin-bottom: 2.5rem !important;
}
.margin-bottom-large {
  margin-bottom: 3.75rem !important;
}
.margin-bottom-xlarge {
  margin-bottom: 5rem !important;
}
.margin-left-none {
  margin-left: 0 !important;
}
.margin-left-tiny {
  margin-left: 0.5rem !important;
}
.margin-left-small {
  margin-left: 1.25rem !important;
}
.margin-left-medium {
  margin-left: 2.5rem !important;
}
.margin-left-large {
  margin-left: 3.75rem !important;
}
.margin-left-xlarge {
  margin-left: 5rem !important;
}
.margin-right-none {
  margin-right: 0 !important;
}
.margin-right-tiny {
  margin-right: 0.5rem !important;
}
.margin-right-small {
  margin-right: 1.25rem !important;
}
.margin-right-medium {
  margin-right: 2.5rem !important;
}
.margin-right-large {
  margin-right: 3.75rem !important;
}
.margin-right-xlarge {
  margin-right: 5rem !important;
}
.margin-h-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.margin-h-tiny {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.margin-h-small {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}
.margin-h-medium {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}
.margin-h-large {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}
.margin-h-xlarge {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.margin-v-none, .spacer-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.margin-v-tiny, .spacer-tiny {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.margin-v-small, .spacer-small {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.margin-v-medium, .spacer-medium {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.margin-v-large, .spacer-large {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}
.margin-v-xlarge, .spacer-xlarge {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
@media screen and (min-width: 40em) {
  .medium-margin-none {
    margin: 0 !important;
  }
  .medium-margin-tiny {
    margin: 0.5rem !important;
  }
  .medium-margin-small {
    margin: 1.25rem !important;
  }
  .medium-margin-medium {
    margin: 2.5rem !important;
  }
  .medium-margin-large {
    margin: 3.75rem !important;
  }
  .medium-margin-xlarge {
    margin: 5rem !important;
  }
  .medium-margin-top-none {
    margin-top: 0 !important;
  }
  .medium-margin-top-tiny {
    margin-top: 0.5rem !important;
  }
  .medium-margin-top-small {
    margin-top: 1.25rem !important;
  }
  .medium-margin-top-medium {
    margin-top: 2.5rem !important;
  }
  .medium-margin-top-large {
    margin-top: 3.75rem !important;
  }
  .medium-margin-top-xlarge {
    margin-top: 5rem !important;
  }
  .medium-margin-bottom-none {
    margin-bottom: 0 !important;
  }
  .medium-margin-bottom-tiny {
    margin-bottom: 0.5rem !important;
  }
  .medium-margin-bottom-small {
    margin-bottom: 1.25rem !important;
  }
  .medium-margin-bottom-medium {
    margin-bottom: 2.5rem !important;
  }
  .medium-margin-bottom-large {
    margin-bottom: 3.75rem !important;
  }
  .medium-margin-bottom-xlarge {
    margin-bottom: 5rem !important;
  }
  .medium-margin-left-none {
    margin-left: 0 !important;
  }
  .medium-margin-left-tiny {
    margin-left: 0.5rem !important;
  }
  .medium-margin-left-small {
    margin-left: 1.25rem !important;
  }
  .medium-margin-left-medium {
    margin-left: 2.5rem !important;
  }
  .medium-margin-left-large {
    margin-left: 3.75rem !important;
  }
  .medium-margin-left-xlarge {
    margin-left: 5rem !important;
  }
  .medium-margin-right-none {
    margin-right: 0 !important;
  }
  .medium-margin-right-tiny {
    margin-right: 0.5rem !important;
  }
  .medium-margin-right-small {
    margin-right: 1.25rem !important;
  }
  .medium-margin-right-medium {
    margin-right: 2.5rem !important;
  }
  .medium-margin-right-large {
    margin-right: 3.75rem !important;
  }
  .medium-margin-right-xlarge {
    margin-right: 5rem !important;
  }
  .medium-margin-h-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .medium-margin-h-tiny {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .medium-margin-h-small {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .medium-margin-h-medium {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .medium-margin-h-large {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .medium-margin-h-xlarge {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .medium-margin-v-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .medium-margin-v-tiny {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .medium-margin-v-small {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .medium-margin-v-medium {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .medium-margin-v-large {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .medium-margin-v-xlarge {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media screen and (min-width: 64em) {
  .large-margin-none {
    margin: 0 !important;
  }
  .large-margin-tiny {
    margin: 0.5rem !important;
  }
  .large-margin-small {
    margin: 1.25rem !important;
  }
  .large-margin-medium {
    margin: 2.5rem !important;
  }
  .large-margin-large {
    margin: 3.75rem !important;
  }
  .large-margin-xlarge {
    margin: 5rem !important;
  }
  .large-margin-top-none {
    margin-top: 0 !important;
  }
  .large-margin-top-tiny {
    margin-top: 0.5rem !important;
  }
  .large-margin-top-small {
    margin-top: 1.25rem !important;
  }
  .large-margin-top-medium {
    margin-top: 2.5rem !important;
  }
  .large-margin-top-large {
    margin-top: 3.75rem !important;
  }
  .large-margin-top-xlarge {
    margin-top: 5rem !important;
  }
  .large-margin-bottom-none {
    margin-bottom: 0 !important;
  }
  .large-margin-bottom-tiny {
    margin-bottom: 0.5rem !important;
  }
  .large-margin-bottom-small {
    margin-bottom: 1.25rem !important;
  }
  .large-margin-bottom-medium {
    margin-bottom: 2.5rem !important;
  }
  .large-margin-bottom-large {
    margin-bottom: 3.75rem !important;
  }
  .large-margin-bottom-xlarge {
    margin-bottom: 5rem !important;
  }
  .large-margin-left-none {
    margin-left: 0 !important;
  }
  .large-margin-left-tiny {
    margin-left: 0.5rem !important;
  }
  .large-margin-left-small {
    margin-left: 1.25rem !important;
  }
  .large-margin-left-medium {
    margin-left: 2.5rem !important;
  }
  .large-margin-left-large {
    margin-left: 3.75rem !important;
  }
  .large-margin-left-xlarge {
    margin-left: 5rem !important;
  }
  .large-margin-right-none {
    margin-right: 0 !important;
  }
  .large-margin-right-tiny {
    margin-right: 0.5rem !important;
  }
  .large-margin-right-small {
    margin-right: 1.25rem !important;
  }
  .large-margin-right-medium {
    margin-right: 2.5rem !important;
  }
  .large-margin-right-large {
    margin-right: 3.75rem !important;
  }
  .large-margin-right-xlarge {
    margin-right: 5rem !important;
  }
  .large-margin-h-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .large-margin-h-tiny {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .large-margin-h-small {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
  .large-margin-h-medium {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .large-margin-h-large {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
  .large-margin-h-xlarge {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .large-margin-v-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .large-margin-v-tiny {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .large-margin-v-small {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .large-margin-v-medium {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .large-margin-v-large {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .large-margin-v-xlarge {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
.spacer-none {
  display: block;
  width: 100%;
}
.spacer-none:after {
  content: "";
  display: table;
  clear: both;
}
.spacer-tiny {
  display: block;
  width: 100%;
}
.spacer-tiny:after {
  content: "";
  display: table;
  clear: both;
}
.spacer-small {
  display: block;
  width: 100%;
}
.spacer-small:after {
  content: "";
  display: table;
  clear: both;
}
.spacer-medium {
  display: block;
  width: 100%;
}
.spacer-medium:after {
  content: "";
  display: table;
  clear: both;
}
.spacer-large {
  display: block;
  width: 100%;
}
.spacer-large:after {
  content: "";
  display: table;
  clear: both;
}
.spacer-xlarge {
  display: block;
  width: 100%;
}
.spacer-xlarge:after {
  content: "";
  display: table;
  clear: both;
}
.no-margin, .margin-collapse {
  margin: 0 !important;
}
.no-padding, .padding-collapse {
  padding: 0 !important;
}
/* ==========================================================================
	6.  MEDIA
	========================================================================== */
.circle {
  border-radius: 100% !important;
}
.circle img {
  border-radius: 100% !important;
}
.rounded {
  border-radius: 15px;
}
.rounded img {
  border-radius: 15px;
}
.bordered {
  border: 1px solid #dddddd;
}
/* ==========================================================================
#
# ////////////////////////// TYPOGRAPHY HELPERS /////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Foundation Typography Classes
		2. Foundation Text Alignment
		3. Font Style Helpers
		4. Link Style Helpers

-------------------------------------------*/
/* ==========================================================================
	1.  FOUNDATION TYPOGRAPHY CLASSES
	========================================================================== */
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #454142;
}
.lead {
  font-size: 22.5px;
  line-height: 1.6;
}
.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}
.no-bullet {
  margin-left: 0;
  list-style: none;
}
/* ==========================================================================
	2.  FOUNDATION TEXT ALIGNMENT
	========================================================================== */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
@media screen and (min-width: 40em) {
  .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 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;
  }
}
/* ==========================================================================
	3.  FONT STYLE HELPERS
	========================================================================== */
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic !important;
}
.no-italic {
  font-style: normal !important;
}
.underline {
  text-decoration: underline !important;
}
.text-xxsmall {
  font-size: 0.8em !important;
}
.text-xsmall {
  font-size: 0.8em !important;
}
.text-small {
  font-size: 0.9em !important;
}
.text-regular {
  font-size: 1em !important;
}
.text-large {
  font-size: 1.15em !important;
}
.text-xlarge {
  font-size: 1.25em !important;
}
.text-xxlarge {
  font-size: 2em !important;
}
.text-xxxlarge {
  font-size: 3.5em !important;
}
.font-normal {
  font-weight: normal;
}
.font-bold {
  font-weight: bold;
}
.font-300 {
  font-weight: 300;
}
.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.font-800 {
  font-weight: 800;
}
.font-900 {
  font-weight: 900;
}
.font-sans-serif {
  font-family: "Inter Tight", Arial, sans-serif;
}
.font-sans-serif-condensed {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.font-serif {
  font-family: Georgia, serif;
}
.font-uppercase .uppercase {
  text-transform: uppercase;
}
.font-standard, .sentence-case {
  text-transform: normal;
}
.line-height-xsm, .line-height-xsmall {
  line-height: 1;
}
.line-height-sm, .line-height-small {
  line-height: 1.2;
}
.line-height-med, .line-height-medium {
  line-height: 1.4;
}
.line-height-lrg, .line-height-large {
  line-height: 1.6;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
/* ==========================================================================
	4.  LINK STYLE HELPERS
	========================================================================== */
.underline {
  text-decoration: underline;
}
.underline-hover:hover, .underline-hover:focus {
  text-decoration: underline;
}
/* ==========================================================================
#
# /////////////////////////////// HEADER ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Header Main
		2. Mega Menu
		3. Offcanvas Header

-------------------------------------------*/
/* ==========================================================================
	1.  Header Main
	========================================================================== */
.header--container .header--bar > .fl-col-content {
  background-color: #FFFFFF !important;
}
.header--preferred-location-info .location-name span, .header--preferred-location-info .location-phone {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.header--preferred-location-info .location-name {
  color: #FFFFFF;
  padding-left: 25px;
  position: relative;
  vertical-align: middle;
}
.header--preferred-location-info .location-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/location-pin-yellow.svg');
  background-repeat: no-repeat;
}
.header--preferred-location-info .location-phone {
  color: #FFFFFF;
  font-weight: bold;
}
.header--preferred-location-info .location-divider {
  color: #FFFFFF;
  margin: 0 2px;
  font-size: 10px;
}
.header--preferred-location-info .location-change-link {
  font-size: 14px;
  text-decoration: underline;
  color: #ffd100;
}
@media screen and (max-width: 39.9375em) {
  .header--preferred-location-info :where(a.location-name, a.location-phone) {
    font-size: 15px;
  }
  .header--preferred-location-info .location-name {
    padding-left: 20px;
  }
  .header--preferred-location-info .location-name span {
    max-width: 90px;
  }
  .header--preferred-location-info .location-name::before {
    width: 15px;
    height: 15px;
  }
  .header--preferred-location-info .location-phone {
    max-width: 106px;
  }
}
.navigation--top-bar .top-bar--seconedary-nav {
  flex: 0 1 250px;
}
.navigation--top-bar .top-bar--location {
  flex: 1 1 auto;
}
.navigation--top-bar .top-bar--search {
  flex: 0 1 250px;
}
.header--search-container {
  position: relative;
  top: 8px;
}
.header--search-container .fl-search-form-button .fl-search-form-wrap {
  padding: 0;
}
.header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button {
  padding: 0;
  background: transparent !important;
  border: none;
}
.header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button:hover, .header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button:active, .header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button:focus {
  outline: none !important;
}
.header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button-icon::before {
  font-size: 18px;
  padding: 5px;
  display: inline-block;
}
.mfp-wrap {
  backdrop-filter: blur(5px);
}
.mfp-wrap .mfp-container .fl-search-form-input-wrap {
  max-width: 1450px;
  width: 100%;
}
.mfp-wrap .mfp-container .fl-search-text {
  font-size: 24px !important;
  height: 60px;
}
.mfp-wrap .mfp-close::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/close-x.svg');
  background-repeat: no-repeat;
}
.mfp-wrap .mfp-close span {
  display: none;
}
.header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) .fl-has-submenu-container {
  display: flex !important;
}
.header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) > li.menu-item > a, .header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) > li.menu-item > .fl-has-submenu-container > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) > li.menu-item > a, .header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) > li.menu-item > .fl-has-submenu-container > a {
    padding-right: 20px;
    font-size: 16px;
    padding-left: 10px;
  }
}
.header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) .fl-menu-toggle {
  transform: none !important;
  width: 10px;
  left: -10px;
}
.header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) .fl-menu-toggle::before {
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #417640 transparent transparent transparent;
  border-radius: 0.0625rem;
  margin: 0;
  transform: none;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
}
.header--container .navigation-primary--container :where(#menu-primary-navigation-desktop) .menu .fl-search-form-wrap .fl-search-form-fields .fl-button-wrap a.fl-button {
  padding: 15px !important;
  border-radius: 0 !important;
}
@media screen and (max-width: 1125px) {
  .header--container .promotions-button {
    display: none;
  }
}
.header--container.mobile .header--search-container {
  display: flex;
  align-items: center;
  top: 0;
  margin-right: 5px;
  padding-right: 5px;
  border-right: solid 1px #f7f7f7;
}
.header--container.mobile .header--search-container .fl-search-form-button .fl-search-form-wrap .fl-button-wrap .fl-button-icon {
  color: #417640 !important;
}
.header--container.mobile .header--hamburger-container {
  display: flex;
  align-items: center;
}
.header--container.mobile .box--parent {
  align-items: stretch;
}
.header--container.mobile .box--child {
  height: auto;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++
		Theme color changes for the Catalog & Used Equipment
		Detail Pages. 
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
body.fl-builder-edit .header--top-bar :where(li.menu-item > a, i.fl-button-icon, a.location-name, a.location-phone, a.location-change-link, span.location-divider), .fl-builder-content-354049 .header--top-bar :where(li.menu-item > a, i.fl-button-icon, a.location-name, a.location-phone, a.location-change-link, span.location-divider) {
  color: #417640 !important;
}
/* ==========================================================================
	2.  Mega Menu
	========================================================================== */
.main-megamenu--container .all-categories-link {
  font-family: "Inter Tight", Arial, sans-serif;
  text-transform: none;
  font-weight: normal;
}
.main-megamenu--container .all-categories-link a {
  text-decoration: underline;
}
.main-megamenu--container > .fl-row-content-wrap {
  background: #f7f7f7 !important;
}
.main-megamenu--container nav ul.menu > li.menu-item {
  display: block !important;
  text-align: left !important;
}
.main-megamenu--container nav ul.menu > li.menu-item.menu-group--title {
  font-weight: bold;
}
.main-megamenu--container nav ul.menu > li.menu-item > a {
  transition: color 200ms ease-in-out;
}
.main-megamenu--container nav ul.menu > li.menu-item > a:hover {
  color: #424242;
  transition: color 200ms ease-in-out;
}
.main-megamenu--container nav ul.menu > li.menu-item:not(.menu-group--title) {
  font-family: "Inter Tight", Arial, sans-serif;
  text-transform: none;
  font-weight: normal;
  line-height: 1.1;
}
.main-megamenu--container nav ul.menu > li.menu-item.menu-group--title {
  padding-bottom: 5px !important;
  margin-bottom: 10px !important;
  border-bottom: solid 2px #eeeeee;
  transition: border 200ms ease-in-out;
}
.main-megamenu--container nav ul.menu > li.menu-item.menu-group--title:hover {
  border-color: #417640;
  transform: scale(1.02);
  transition: all 200ms ease-in-out;
}
.main-megamenu--container nav ul.menu > li.menu-item.menu-group--title a:hover {
  color: #000000;
  transition: all 200ms ease-in-out;
}
.main-megamenu--container nav ul.menu > li.menu-item.menu-group--viewall {
  margin-top: 20px !important;
  text-decoration: underline !important;
  font-weight: bold;
  font-size: 14px;
}
.main-megamenu--container .main-megamenu--tabs :where(a[role="button"]):not(a.fl-tab-active, a.fl-button) {
  display: none;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs.fl-tabs-vertical {
  display: flex;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels {
  width: 300px !important;
  background: #FFFFFF;
  padding: 30px 0 30px 30px;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .fl-tabs-label {
  position: relative;
  font-weight: bold;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px 10px 0;
  font-size: 18px;
  color: rgba(69, 65, 66, 0.7);
  transition: all 200ms ease-in-out;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .fl-tabs-label + a {
  font-weight: bold;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .fl-tabs-label.fl-tab-active {
  border-color: #eeeeee;
  color: #000000;
  transition: all 200ms ease-in-out;
  margin-bottom: 20px;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .fl-tabs-label.fl-tab-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 17.3px;
  border-color: transparent transparent transparent #FFFFFF;
  background: transparent;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .fl-tabs-label.fl-tab-active::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #417640;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-labels .tab-link {
  display: block;
  padding-left: 0;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-panels {
  width: calc(100% - 300px);
  background: #f7f7f7;
  border: none;
}
.main-megamenu--container .main-megamenu--tabs .fl-tabs-panels .fl-tabs-panel-content {
  padding-top: 0;
}
@media screen and (max-width: 1250px) {
  .main-megamenu--container .main-megamenu--tabs .fl-tabs-panel-content {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-color: #898989 rgba(247, 247, 247, 0);
  }
}
/* ==========================================================================
	3.  Offcanvas Header
	========================================================================== */
.offcanvas-header--container .location-mobile--container {
  background: #f2f2f2 !important;
}
.offcanvas-header--container .cta--preferred-location-group {
  display: flex;
  align-items: center;
  margin-top: 5px;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding-left: 20px;
}
.offcanvas-header--container .cta--preferred-location-group .location-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 5px;
}
.offcanvas-header--container .cta--preferred-location-group .location-name a, .offcanvas-header--container .cta--preferred-location-group .location-number a {
  color: #417640;
  font-weight: 500;
  font-size: 16px;
}
.offcanvas-header--container .cta--preferred-location-group .location-name {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  flex: 1 1 auto;
}
.offcanvas-header--container .cta--preferred-location-group .location-name a {
  font-size: 18px;
  font-weight: bold;
}
.offcanvas-header--container .cta--preferred-location-group .location-number {
  white-space: nowrap;
}
.offcanvas-header--container .cta--preferred-location-group .location-number a {
  margin-right: 10px;
}
.offcanvas-header--container .cta--preferred-location-group .location-change {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  flex: 1 1 auto;
}
.offcanvas-header--container .cta--preferred-location-group .location-change a {
  font-size: 14px;
  text-decoration: underline;
}
.offcanvas-header--container nav ul.menu li.menu-item > .fl-has-submenu-container .fl-menu-toggle {
  margin: 0 !important;
  top: 0px;
  right: 0px;
  width: 30px !important;
  height: 30px;
  top: 0;
  right: 0;
  transform-origin: center;
}
.offcanvas-header--container nav ul.menu li.menu-item > .fl-has-submenu-container .fl-menu-toggle::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 7px solid #bebfc0;
  border-bottom: 0;
  transform-origin: center;
  transform: rotate(0);
}
.offcanvas-header--container nav ul.menu li.menu-item.fl-active > .fl-has-submenu-container > a {
  font-weight: bold;
}
.offcanvas-header--container nav ul.menu li.menu-item > a, .offcanvas-header--container nav ul.menu li.menu-item > .fl-has-submenu-container a {
  border-left: solid 3px transparent;
  transition: all 200ms ease-in-out;
}
.offcanvas-header--container nav ul.menu li.menu-item > a:hover, .offcanvas-header--container nav ul.menu li.menu-item > .fl-has-submenu-container a:hover {
  border-left: solid 3px #417640;
  font-weight: bold;
  transition: all 200ms ease-in-out;
}
.offcanvas-header--container nav ul.menu li.menu-item > a:hover, .offcanvas-header--container nav ul.menu li.menu-item > .fl-has-submenu-container > a:hover {
  padding-left: 10px;
}
.offcanvas-header--container nav ul.menu li.menu-item.fl-active.menu-item-has-children > a, .offcanvas-header--container nav ul.menu li.menu-item.fl-active.menu-item-has-children > .fl-has-submenu-container a {
  border-left: solid 3px #417640;
  transition: all 200ms ease-in-out;
}
.offcanvas-header--container nav ul.menu li.menu-item ul.sub-menu {
  margin-top: 5px;
  border-left: solid 2px #eeeeee;
  padding-left: 10px;
}
.offcanvas-header--container nav ul.menu li.menu-item ul.sub-menu li.menu-item > a, .offcanvas-header--container nav ul.menu li.menu-item ul.sub-menu li.menu-item > .fl-has-submenu-container a {
  border-left: none !important;
  transition: all 200ms ease-in-out;
}
.offcanvas-header--container nav ul.menu li.menu-item ul.sub-menu li.menu-item > a:hover, .offcanvas-header--container nav ul.menu li.menu-item ul.sub-menu li.menu-item > .fl-has-submenu-container a:hover {
  border-left: none !important;
  transition: all 200ms ease-in-out;
}
/* ==========================================================================
#
# /////////////////////////////// FOOTER ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Primary Footer

-------------------------------------------*/
/* ==========================================================================
	1. Primary Footer
	========================================================================== */
.footer-social--container .fl-icon-group {
  border-top: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  padding: 10px 0;
}
.footer-social--container .fl-icon-group .fl-icon:nth-child(2) i, .footer-social--container .fl-icon-group .fl-icon:nth-child(2) i::before {
  font-size: 22px;
  position: relative;
  top: 1px;
}
.footer-social--container .fl-icon-group .fl-icon:nth-child(4) i, .footer-social--container .fl-icon-group .fl-icon:nth-child(4) i::before {
  font-size: 24px;
}
.footer-links--container a[role="menuitem"] {
  text-decoration: underline;
}
/* ==========================================================================
#
# //////////////////////////////// BUTTONS ////////////////////////////////
#
========================================================================== */
/* ==========================================================================
	!  Button Variables
	========================================================================== */
/* ==========================================================================
	!  Button Mixins
	========================================================================== */
/* ==========================================================================
	4.  Buttons — Default (non-themed) styles
	========================================================================== */
.fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button, .fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button:visited {
  background: transparent;
  border-color: #417640;
  border-width: 1px;
  border-radius: 5px;
  padding: 14px 25px 16px 25px;
}
.fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button {
  text-align: center;
}
.fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button:active {
  border-color: #6eb06c;
}
.fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.fl-builder-content .fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #417640;
  text-transform: none;
  font-size: 16px;
  font-weight: 600;
}
.uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .uabb-btn:not(.uabb-btn-one):not(.uabb-btn-two) {
  background: transparent;
  border-color: #417640;
  line-height: 1;
  border-width: 1px;
  border-radius: 5px;
  padding: 14px 25px 16px 25px;
}
.uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .uabb-btn:not(.uabb-btn-one):not(.uabb-btn-two) * {
  color: #417640;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .uabb-btn:not(.uabb-btn-one):not(.uabb-btn-two):active, .uabb-module-content.uabb-button-wrap .uabb-btn:not(.uabb-btn-one):not(.uabb-btn-two):hover {
  background: transparent;
  border-color: #6eb06c;
  border-radius: 5px;
}
.uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .uabb-btn:not(.uabb-btn-one):not(.uabb-btn-two):focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.uabb-module-content .info-table-button a {
  background: transparent;
  border: solid 1px #417640;
  line-height: 1;
  border-radius: 5px;
  padding: 14px 25px 16px 25px;
  color: #417640;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
.uabb-module-content .info-table-button a:active, .uabb-module-content .info-table-button a:hover {
  background: transparent;
  border-color: #6eb06c;
  border-radius: 5px;
}
.uabb-module-content .info-table-button a:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
/* ==========================================================================
	4.  Buttons — Themed (color loop)
	========================================================================== */
.primary-button button, .primary-button .fl-button-wrap a.fl-button, .primary-button .fl-button-wrap a.fl-button:visited, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override), .uabb-module-content .primary-button .uabb-btn, .primary-button.filled button, .primary-button.filled .fl-button-wrap a.fl-button, .primary-button.filled .fl-button-wrap a.fl-button:visited, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override), .uabb-module-content .primary-button.filled .uabb-btn {
  background: #417640;
  border-color: #417640;
  border-radius: 5px;
  text-decoration: none;
}
.primary-button button *:not(i), .primary-button .fl-button-wrap a.fl-button *:not(i), .primary-button .fl-button-wrap a.fl-button:visited *:not(i), .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override) *:not(i), .uabb-module-content .primary-button .uabb-btn *:not(i), .primary-button.filled button *:not(i), .primary-button.filled .fl-button-wrap a.fl-button *:not(i), .primary-button.filled .fl-button-wrap a.fl-button:visited *:not(i), .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override) *:not(i), .uabb-module-content .primary-button.filled .uabb-btn *:not(i) {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.primary-button button *, .primary-button .fl-button-wrap a.fl-button *, .primary-button .fl-button-wrap a.fl-button:visited *, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override) *, .uabb-module-content .primary-button .uabb-btn *, .primary-button.filled button *, .primary-button.filled .fl-button-wrap a.fl-button *, .primary-button.filled .fl-button-wrap a.fl-button:visited *, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override) *, .uabb-module-content .primary-button.filled .uabb-btn * {
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
.primary-button button:active, .primary-button button:hover, .primary-button .fl-button-wrap a.fl-button:active, .primary-button .fl-button-wrap a.fl-button:hover, .primary-button .fl-button-wrap a.fl-button:visited:active, .primary-button .fl-button-wrap a.fl-button:visited:hover, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override):hover, .uabb-module-content .primary-button .uabb-btn:active, .uabb-module-content .primary-button .uabb-btn:hover, .primary-button.filled button:active, .primary-button.filled button:hover, .primary-button.filled .fl-button-wrap a.fl-button:active, .primary-button.filled .fl-button-wrap a.fl-button:hover, .primary-button.filled .fl-button-wrap a.fl-button:visited:active, .primary-button.filled .fl-button-wrap a.fl-button:visited:hover, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override):hover, .uabb-module-content .primary-button.filled .uabb-btn:active, .uabb-module-content .primary-button.filled .uabb-btn:hover {
  background: #539752;
  border-color: #417640;
  border-radius: 5px;
}
.primary-button button:focus, .primary-button .fl-button-wrap a.fl-button:focus, .primary-button .fl-button-wrap a.fl-button:visited:focus, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .primary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .primary-button.uabb-button:not(.override):focus, .uabb-module-content .primary-button .uabb-btn:focus, .primary-button.filled button:focus, .primary-button.filled .fl-button-wrap a.fl-button:focus, .primary-button.filled .fl-button-wrap a.fl-button:visited:focus, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .primary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .primary-button.filled.uabb-button:not(.override):focus, .uabb-module-content .primary-button.filled .uabb-btn:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.primary-button .uabb-module-content .info-table-button a, .primary-button.filled .uabb-module-content .info-table-button a {
  background: #417640;
  border-color: #417640;
  border-radius: 5px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.primary-button .uabb-module-content .info-table-button a:active, .primary-button .uabb-module-content .info-table-button a:hover, .primary-button.filled .uabb-module-content .info-table-button a:active, .primary-button.filled .uabb-module-content .info-table-button a:hover {
  background: #539752;
  border-color: #417640;
  border-radius: 5px;
}
.primary-button .uabb-module-content .info-table-button a:focus, .primary-button.filled .uabb-module-content .info-table-button a:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.primary-button .fl-button-wrap a.fl-button *, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.filled .fl-button-wrap a.fl-button *, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.primary-button .fl-button-wrap a.fl-button:active, .primary-button .fl-button-wrap a.fl-button:hover, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .primary-button.filled .fl-button-wrap a.fl-button:active, .primary-button.filled .fl-button-wrap a.fl-button:hover, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: #539752;
  border-color: #417640;
  border-radius: 5px;
}
.primary-button .fl-button-wrap a.fl-button:focus, .primary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .primary-button.filled .fl-button-wrap a.fl-button:focus, .primary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.primary-button.hollow button, .primary-button.hollow .fl-button-wrap a.fl-button, .primary-button.hollow .fl-button-wrap a.fl-button:visited, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override), .uabb-module-content .primary-button.hollow .uabb-btn {
  background: transparent;
  border-color: #417640;
  border-width: 1px;
  border-radius: 5px;
}
.primary-button.hollow button:focus, .primary-button.hollow button:active, .primary-button.hollow button:hover, .primary-button.hollow .fl-button-wrap a.fl-button:focus, .primary-button.hollow .fl-button-wrap a.fl-button:active, .primary-button.hollow .fl-button-wrap a.fl-button:hover, .primary-button.hollow .fl-button-wrap a.fl-button:visited:focus, .primary-button.hollow .fl-button-wrap a.fl-button:visited:active, .primary-button.hollow .fl-button-wrap a.fl-button:visited:hover, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):hover, .uabb-module-content .primary-button.hollow .uabb-btn:focus, .uabb-module-content .primary-button.hollow .uabb-btn:active, .uabb-module-content .primary-button.hollow .uabb-btn:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 5px;
}
.primary-button.hollow button:focus *, .primary-button.hollow button:active *, .primary-button.hollow button:hover *, .primary-button.hollow .fl-button-wrap a.fl-button:focus *, .primary-button.hollow .fl-button-wrap a.fl-button:active *, .primary-button.hollow .fl-button-wrap a.fl-button:hover *, .primary-button.hollow .fl-button-wrap a.fl-button:visited:focus *, .primary-button.hollow .fl-button-wrap a.fl-button:visited:active *, .primary-button.hollow .fl-button-wrap a.fl-button:visited:hover *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover *, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus *, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active *, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover *, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):focus *, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):active *, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override):hover *, .uabb-module-content .primary-button.hollow .uabb-btn:focus *, .uabb-module-content .primary-button.hollow .uabb-btn:active *, .uabb-module-content .primary-button.hollow .uabb-btn:hover * {
  color: #539752;
}
.primary-button.hollow button *, .primary-button.hollow .fl-button-wrap a.fl-button *, .primary-button.hollow .fl-button-wrap a.fl-button:visited *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.hollow.uabb-button:not(.override) *, .uabb-module-content .primary-button.hollow .uabb-btn * {
  color: #539752;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.primary-button.hollow .uabb-module-content .info-table-button a {
  background: transparent;
  border-color: #417640;
  border-radius: 5px;
  color: #539752;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.primary-button.hollow .uabb-module-content .info-table-button a:focus, .primary-button.hollow .uabb-module-content .info-table-button a:active, .primary-button.hollow .uabb-module-content .info-table-button a:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 5px;
  color: #539752;
}
.primary-button.hollow .fl-button-wrap a.fl-button *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #539752;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.primary-button.hollow .fl-button-wrap a.fl-button:focus, .primary-button.hollow .fl-button-wrap a.fl-button:active, .primary-button.hollow .fl-button-wrap a.fl-button:hover, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 5px;
}
.primary-button.hollow .fl-button-wrap a.fl-button:focus *, .primary-button.hollow .fl-button-wrap a.fl-button:active *, .primary-button.hollow .fl-button-wrap a.fl-button:hover *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .primary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover * {
  color: #539752;
}
.primary-button.large:not(.hollow) button, .primary-button.large:not(.hollow) .fl-button-wrap a.fl-button, .primary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited, .primary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.large:not(.hollow).uabb-button:not(.override), .uabb-module-content .primary-button.large:not(.hollow) .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.primary-button.large:not(.hollow) button *, .primary-button.large:not(.hollow) .fl-button-wrap a.fl-button *, .primary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited *, .primary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.large:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .primary-button.large:not(.hollow) .uabb-btn * {
  font-size: 17.6px;
}
.primary-button.large:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.primary-button.small:not(.hollow) button, .primary-button.small:not(.hollow) .fl-button-wrap a.fl-button, .primary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited, .primary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.small:not(.hollow).uabb-button:not(.override), .uabb-module-content .primary-button.small:not(.hollow) .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.primary-button.small:not(.hollow) button *, .primary-button.small:not(.hollow) .fl-button-wrap a.fl-button *, .primary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited *, .primary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.small:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .primary-button.small:not(.hollow) .uabb-btn * {
  font-size: 14.4px;
}
.primary-button.small:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.primary-button.tiny:not(.hollow) button, .primary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button, .primary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited, .primary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.tiny:not(.hollow).uabb-button:not(.override), .uabb-module-content .primary-button.tiny:not(.hollow) .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.primary-button.tiny:not(.hollow) button *, .primary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button *, .primary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited *, .primary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.tiny:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .primary-button.tiny:not(.hollow) .uabb-btn * {
  font-size: 12.8px;
}
.primary-button.tiny:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.primary-button.large.hollow button, .primary-button.large.hollow .fl-button-wrap a.fl-button, .primary-button.large.hollow .fl-button-wrap a.fl-button:visited, .primary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.large.hollow.uabb-button:not(.override), .uabb-module-content .primary-button.large.hollow .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.primary-button.large.hollow button *, .primary-button.large.hollow .fl-button-wrap a.fl-button *, .primary-button.large.hollow .fl-button-wrap a.fl-button:visited *, .primary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.large.hollow.uabb-button:not(.override) *, .uabb-module-content .primary-button.large.hollow .uabb-btn * {
  font-size: 17.6px;
}
.primary-button.large.hollow .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.primary-button.small.hollow button, .primary-button.small.hollow .fl-button-wrap a.fl-button, .primary-button.small.hollow .fl-button-wrap a.fl-button:visited, .primary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.small.hollow.uabb-button:not(.override), .uabb-module-content .primary-button.small.hollow .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.primary-button.small.hollow button *, .primary-button.small.hollow .fl-button-wrap a.fl-button *, .primary-button.small.hollow .fl-button-wrap a.fl-button:visited *, .primary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.small.hollow.uabb-button:not(.override) *, .uabb-module-content .primary-button.small.hollow .uabb-btn * {
  font-size: 14.4px;
}
.primary-button.small.hollow .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.primary-button.tiny.hollow button, .primary-button.tiny.hollow .fl-button-wrap a.fl-button, .primary-button.tiny.hollow .fl-button-wrap a.fl-button:visited, .primary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .primary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .primary-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .primary-button.tiny.hollow.uabb-button:not(.override), .uabb-module-content .primary-button.tiny.hollow .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.primary-button.tiny.hollow button *, .primary-button.tiny.hollow .fl-button-wrap a.fl-button *, .primary-button.tiny.hollow .fl-button-wrap a.fl-button:visited *, .primary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .primary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .primary-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .primary-button.tiny.hollow.uabb-button:not(.override) *, .uabb-module-content .primary-button.tiny.hollow .uabb-btn * {
  font-size: 12.8px;
}
.primary-button.tiny.hollow .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.secondary-button button, .secondary-button .fl-button-wrap a.fl-button, .secondary-button .fl-button-wrap a.fl-button:visited, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override), .uabb-module-content .secondary-button .uabb-btn, .secondary-button.filled button, .secondary-button.filled .fl-button-wrap a.fl-button, .secondary-button.filled .fl-button-wrap a.fl-button:visited, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override), .uabb-module-content .secondary-button.filled .uabb-btn {
  background: #ffd100;
  border-color: #ffd100;
  border-radius: 5px;
  text-decoration: none;
}
.secondary-button button *:not(i), .secondary-button .fl-button-wrap a.fl-button *:not(i), .secondary-button .fl-button-wrap a.fl-button:visited *:not(i), .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override) *:not(i), .uabb-module-content .secondary-button .uabb-btn *:not(i), .secondary-button.filled button *:not(i), .secondary-button.filled .fl-button-wrap a.fl-button *:not(i), .secondary-button.filled .fl-button-wrap a.fl-button:visited *:not(i), .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override) *:not(i), .uabb-module-content .secondary-button.filled .uabb-btn *:not(i) {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.secondary-button button *, .secondary-button .fl-button-wrap a.fl-button *, .secondary-button .fl-button-wrap a.fl-button:visited *, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override) *, .uabb-module-content .secondary-button .uabb-btn *, .secondary-button.filled button *, .secondary-button.filled .fl-button-wrap a.fl-button *, .secondary-button.filled .fl-button-wrap a.fl-button:visited *, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override) *, .uabb-module-content .secondary-button.filled .uabb-btn * {
  color: #333333;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
.secondary-button button:active, .secondary-button button:hover, .secondary-button .fl-button-wrap a.fl-button:active, .secondary-button .fl-button-wrap a.fl-button:hover, .secondary-button .fl-button-wrap a.fl-button:visited:active, .secondary-button .fl-button-wrap a.fl-button:visited:hover, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override):hover, .uabb-module-content .secondary-button .uabb-btn:active, .uabb-module-content .secondary-button .uabb-btn:hover, .secondary-button.filled button:active, .secondary-button.filled button:hover, .secondary-button.filled .fl-button-wrap a.fl-button:active, .secondary-button.filled .fl-button-wrap a.fl-button:hover, .secondary-button.filled .fl-button-wrap a.fl-button:visited:active, .secondary-button.filled .fl-button-wrap a.fl-button:visited:hover, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override):hover, .uabb-module-content .secondary-button.filled .uabb-btn:active, .uabb-module-content .secondary-button.filled .uabb-btn:hover {
  background: #ffda33;
  border-color: #ffd100;
  border-radius: 5px;
}
.secondary-button button:focus, .secondary-button .fl-button-wrap a.fl-button:focus, .secondary-button .fl-button-wrap a.fl-button:visited:focus, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .secondary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .secondary-button.uabb-button:not(.override):focus, .uabb-module-content .secondary-button .uabb-btn:focus, .secondary-button.filled button:focus, .secondary-button.filled .fl-button-wrap a.fl-button:focus, .secondary-button.filled .fl-button-wrap a.fl-button:visited:focus, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .secondary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .secondary-button.filled.uabb-button:not(.override):focus, .uabb-module-content .secondary-button.filled .uabb-btn:focus {
  outline: 2px solid #ffd100;
  outline-offset: 2px;
  border-radius: 3px;
}
.secondary-button .uabb-module-content .info-table-button a, .secondary-button.filled .uabb-module-content .info-table-button a {
  background: #ffd100;
  border-color: #ffd100;
  border-radius: 5px;
  color: #333333;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.secondary-button .uabb-module-content .info-table-button a:active, .secondary-button .uabb-module-content .info-table-button a:hover, .secondary-button.filled .uabb-module-content .info-table-button a:active, .secondary-button.filled .uabb-module-content .info-table-button a:hover {
  background: #ffda33;
  border-color: #ffd100;
  border-radius: 5px;
}
.secondary-button .uabb-module-content .info-table-button a:focus, .secondary-button.filled .uabb-module-content .info-table-button a:focus {
  outline: 2px solid #ffd100;
  outline-offset: 2px;
  border-radius: 3px;
}
.secondary-button .fl-button-wrap a.fl-button *, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.filled .fl-button-wrap a.fl-button *, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #333333;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.secondary-button .fl-button-wrap a.fl-button:active, .secondary-button .fl-button-wrap a.fl-button:hover, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .secondary-button.filled .fl-button-wrap a.fl-button:active, .secondary-button.filled .fl-button-wrap a.fl-button:hover, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: #ffda33;
  border-color: #ffd100;
  border-radius: 5px;
}
.secondary-button .fl-button-wrap a.fl-button:focus, .secondary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .secondary-button.filled .fl-button-wrap a.fl-button:focus, .secondary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus {
  outline: 2px solid #ffd100;
  outline-offset: 2px;
  border-radius: 3px;
}
.secondary-button.hollow button, .secondary-button.hollow .fl-button-wrap a.fl-button, .secondary-button.hollow .fl-button-wrap a.fl-button:visited, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override), .uabb-module-content .secondary-button.hollow .uabb-btn {
  background: transparent;
  border-color: #ffd100;
  border-width: 1px;
  border-radius: 5px;
}
.secondary-button.hollow button:focus, .secondary-button.hollow button:active, .secondary-button.hollow button:hover, .secondary-button.hollow .fl-button-wrap a.fl-button:focus, .secondary-button.hollow .fl-button-wrap a.fl-button:active, .secondary-button.hollow .fl-button-wrap a.fl-button:hover, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:focus, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:active, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:hover, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):hover, .uabb-module-content .secondary-button.hollow .uabb-btn:focus, .uabb-module-content .secondary-button.hollow .uabb-btn:active, .uabb-module-content .secondary-button.hollow .uabb-btn:hover {
  background: transparent;
  border-color: #ffda33;
  border-radius: 5px;
}
.secondary-button.hollow button:focus *, .secondary-button.hollow button:active *, .secondary-button.hollow button:hover *, .secondary-button.hollow .fl-button-wrap a.fl-button:focus *, .secondary-button.hollow .fl-button-wrap a.fl-button:active *, .secondary-button.hollow .fl-button-wrap a.fl-button:hover *, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:focus *, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:active *, .secondary-button.hollow .fl-button-wrap a.fl-button:visited:hover *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover *, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus *, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active *, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover *, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):focus *, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):active *, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override):hover *, .uabb-module-content .secondary-button.hollow .uabb-btn:focus *, .uabb-module-content .secondary-button.hollow .uabb-btn:active *, .uabb-module-content .secondary-button.hollow .uabb-btn:hover * {
  color: #454142;
}
.secondary-button.hollow button *, .secondary-button.hollow .fl-button-wrap a.fl-button *, .secondary-button.hollow .fl-button-wrap a.fl-button:visited *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.hollow.uabb-button:not(.override) *, .uabb-module-content .secondary-button.hollow .uabb-btn * {
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.secondary-button.hollow .uabb-module-content .info-table-button a {
  background: transparent;
  border-color: #ffd100;
  border-radius: 5px;
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.secondary-button.hollow .uabb-module-content .info-table-button a:focus, .secondary-button.hollow .uabb-module-content .info-table-button a:active, .secondary-button.hollow .uabb-module-content .info-table-button a:hover {
  background: transparent;
  border-color: #ffda33;
  border-radius: 5px;
  color: #454142;
}
.secondary-button.hollow .fl-button-wrap a.fl-button *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.secondary-button.hollow .fl-button-wrap a.fl-button:focus, .secondary-button.hollow .fl-button-wrap a.fl-button:active, .secondary-button.hollow .fl-button-wrap a.fl-button:hover, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: transparent;
  border-color: #ffda33;
  border-radius: 5px;
}
.secondary-button.hollow .fl-button-wrap a.fl-button:focus *, .secondary-button.hollow .fl-button-wrap a.fl-button:active *, .secondary-button.hollow .fl-button-wrap a.fl-button:hover *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .secondary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover * {
  color: #454142;
}
.secondary-button.large:not(.hollow) button, .secondary-button.large:not(.hollow) .fl-button-wrap a.fl-button, .secondary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited, .secondary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.large:not(.hollow).uabb-button:not(.override), .uabb-module-content .secondary-button.large:not(.hollow) .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.secondary-button.large:not(.hollow) button *, .secondary-button.large:not(.hollow) .fl-button-wrap a.fl-button *, .secondary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited *, .secondary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.large:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .secondary-button.large:not(.hollow) .uabb-btn * {
  font-size: 17.6px;
}
.secondary-button.large:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.secondary-button.small:not(.hollow) button, .secondary-button.small:not(.hollow) .fl-button-wrap a.fl-button, .secondary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited, .secondary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.small:not(.hollow).uabb-button:not(.override), .uabb-module-content .secondary-button.small:not(.hollow) .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.secondary-button.small:not(.hollow) button *, .secondary-button.small:not(.hollow) .fl-button-wrap a.fl-button *, .secondary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited *, .secondary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.small:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .secondary-button.small:not(.hollow) .uabb-btn * {
  font-size: 14.4px;
}
.secondary-button.small:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.secondary-button.tiny:not(.hollow) button, .secondary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button, .secondary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited, .secondary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.tiny:not(.hollow).uabb-button:not(.override), .uabb-module-content .secondary-button.tiny:not(.hollow) .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.secondary-button.tiny:not(.hollow) button *, .secondary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button *, .secondary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited *, .secondary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.tiny:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .secondary-button.tiny:not(.hollow) .uabb-btn * {
  font-size: 12.8px;
}
.secondary-button.tiny:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.secondary-button.large.hollow button, .secondary-button.large.hollow .fl-button-wrap a.fl-button, .secondary-button.large.hollow .fl-button-wrap a.fl-button:visited, .secondary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.large.hollow.uabb-button:not(.override), .uabb-module-content .secondary-button.large.hollow .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.secondary-button.large.hollow button *, .secondary-button.large.hollow .fl-button-wrap a.fl-button *, .secondary-button.large.hollow .fl-button-wrap a.fl-button:visited *, .secondary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.large.hollow.uabb-button:not(.override) *, .uabb-module-content .secondary-button.large.hollow .uabb-btn * {
  font-size: 17.6px;
}
.secondary-button.large.hollow .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.secondary-button.small.hollow button, .secondary-button.small.hollow .fl-button-wrap a.fl-button, .secondary-button.small.hollow .fl-button-wrap a.fl-button:visited, .secondary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.small.hollow.uabb-button:not(.override), .uabb-module-content .secondary-button.small.hollow .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.secondary-button.small.hollow button *, .secondary-button.small.hollow .fl-button-wrap a.fl-button *, .secondary-button.small.hollow .fl-button-wrap a.fl-button:visited *, .secondary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.small.hollow.uabb-button:not(.override) *, .uabb-module-content .secondary-button.small.hollow .uabb-btn * {
  font-size: 14.4px;
}
.secondary-button.small.hollow .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.secondary-button.tiny.hollow button, .secondary-button.tiny.hollow .fl-button-wrap a.fl-button, .secondary-button.tiny.hollow .fl-button-wrap a.fl-button:visited, .secondary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .secondary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .secondary-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .secondary-button.tiny.hollow.uabb-button:not(.override), .uabb-module-content .secondary-button.tiny.hollow .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.secondary-button.tiny.hollow button *, .secondary-button.tiny.hollow .fl-button-wrap a.fl-button *, .secondary-button.tiny.hollow .fl-button-wrap a.fl-button:visited *, .secondary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .secondary-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .secondary-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .secondary-button.tiny.hollow.uabb-button:not(.override) *, .uabb-module-content .secondary-button.tiny.hollow .uabb-btn * {
  font-size: 12.8px;
}
.secondary-button.tiny.hollow .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.tertiary-button button, .tertiary-button .fl-button-wrap a.fl-button, .tertiary-button .fl-button-wrap a.fl-button:visited, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override), .uabb-module-content .tertiary-button .uabb-btn, .tertiary-button.filled button, .tertiary-button.filled .fl-button-wrap a.fl-button, .tertiary-button.filled .fl-button-wrap a.fl-button:visited, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override), .uabb-module-content .tertiary-button.filled .uabb-btn {
  background: #222222;
  border-color: #222222;
  border-radius: 5px;
  text-decoration: none;
}
.tertiary-button button *:not(i), .tertiary-button .fl-button-wrap a.fl-button *:not(i), .tertiary-button .fl-button-wrap a.fl-button:visited *:not(i), .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override) *:not(i), .uabb-module-content .tertiary-button .uabb-btn *:not(i), .tertiary-button.filled button *:not(i), .tertiary-button.filled .fl-button-wrap a.fl-button *:not(i), .tertiary-button.filled .fl-button-wrap a.fl-button:visited *:not(i), .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *:not(i), .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *:not(i), .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *:not(i), .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override) *:not(i), .uabb-module-content .tertiary-button.filled .uabb-btn *:not(i) {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.tertiary-button button *, .tertiary-button .fl-button-wrap a.fl-button *, .tertiary-button .fl-button-wrap a.fl-button:visited *, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override) *, .uabb-module-content .tertiary-button .uabb-btn *, .tertiary-button.filled button *, .tertiary-button.filled .fl-button-wrap a.fl-button *, .tertiary-button.filled .fl-button-wrap a.fl-button:visited *, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override) *, .uabb-module-content .tertiary-button.filled .uabb-btn * {
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
.tertiary-button button:active, .tertiary-button button:hover, .tertiary-button .fl-button-wrap a.fl-button:active, .tertiary-button .fl-button-wrap a.fl-button:hover, .tertiary-button .fl-button-wrap a.fl-button:visited:active, .tertiary-button .fl-button-wrap a.fl-button:visited:hover, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override):hover, .uabb-module-content .tertiary-button .uabb-btn:active, .uabb-module-content .tertiary-button .uabb-btn:hover, .tertiary-button.filled button:active, .tertiary-button.filled button:hover, .tertiary-button.filled .fl-button-wrap a.fl-button:active, .tertiary-button.filled .fl-button-wrap a.fl-button:hover, .tertiary-button.filled .fl-button-wrap a.fl-button:visited:active, .tertiary-button.filled .fl-button-wrap a.fl-button:visited:hover, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override):hover, .uabb-module-content .tertiary-button.filled .uabb-btn:active, .uabb-module-content .tertiary-button.filled .uabb-btn:hover {
  background: #3c3c3c;
  border-color: #222222;
  border-radius: 5px;
}
.tertiary-button button:focus, .tertiary-button .fl-button-wrap a.fl-button:focus, .tertiary-button .fl-button-wrap a.fl-button:visited:focus, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .tertiary-button .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .tertiary-button.uabb-button:not(.override):focus, .uabb-module-content .tertiary-button .uabb-btn:focus, .tertiary-button.filled button:focus, .tertiary-button.filled .fl-button-wrap a.fl-button:focus, .tertiary-button.filled .fl-button-wrap a.fl-button:visited:focus, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .tertiary-button.filled .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .tertiary-button.filled.uabb-button:not(.override):focus, .uabb-module-content .tertiary-button.filled .uabb-btn:focus {
  outline: 2px solid #222222;
  outline-offset: 2px;
  border-radius: 3px;
}
.tertiary-button .uabb-module-content .info-table-button a, .tertiary-button.filled .uabb-module-content .info-table-button a {
  background: #222222;
  border-color: #222222;
  border-radius: 5px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.tertiary-button .uabb-module-content .info-table-button a:active, .tertiary-button .uabb-module-content .info-table-button a:hover, .tertiary-button.filled .uabb-module-content .info-table-button a:active, .tertiary-button.filled .uabb-module-content .info-table-button a:hover {
  background: #3c3c3c;
  border-color: #222222;
  border-radius: 5px;
}
.tertiary-button .uabb-module-content .info-table-button a:focus, .tertiary-button.filled .uabb-module-content .info-table-button a:focus {
  outline: 2px solid #222222;
  outline-offset: 2px;
  border-radius: 3px;
}
.tertiary-button .fl-button-wrap a.fl-button *, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.filled .fl-button-wrap a.fl-button *, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.tertiary-button .fl-button-wrap a.fl-button:active, .tertiary-button .fl-button-wrap a.fl-button:hover, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .tertiary-button.filled .fl-button-wrap a.fl-button:active, .tertiary-button.filled .fl-button-wrap a.fl-button:hover, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: #3c3c3c;
  border-color: #222222;
  border-radius: 5px;
}
.tertiary-button .fl-button-wrap a.fl-button:focus, .tertiary-button.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .tertiary-button.filled .fl-button-wrap a.fl-button:focus, .tertiary-button.filled.fl-button-wrap:not(.fl-button-override) a.fl-button:focus {
  outline: 2px solid #222222;
  outline-offset: 2px;
  border-radius: 3px;
}
.tertiary-button.hollow button, .tertiary-button.hollow .fl-button-wrap a.fl-button, .tertiary-button.hollow .fl-button-wrap a.fl-button:visited, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.uabb-button:not(.override), .uabb-module-content .tertiary-button.hollow .uabb-btn {
  background: transparent;
  border-color: #417640;
  text-decoration: none;
  border-radius: 0;
  border-width: 0px 0px 3px 0px;
  padding: 10px 1px 5px 1px;
  border-style: solid;
}
.tertiary-button.hollow button *, .tertiary-button.hollow .fl-button-wrap a.fl-button *, .tertiary-button.hollow .fl-button-wrap a.fl-button:visited *, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.uabb-button:not(.override) *, .uabb-module-content .tertiary-button.hollow .uabb-btn * {
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.tertiary-button.hollow button:focus, .tertiary-button.hollow button:active, .tertiary-button.hollow button:hover, .tertiary-button.hollow .fl-button-wrap a.fl-button:focus, .tertiary-button.hollow .fl-button-wrap a.fl-button:active, .tertiary-button.hollow .fl-button-wrap a.fl-button:hover, .tertiary-button.hollow .fl-button-wrap a.fl-button:visited:focus, .tertiary-button.hollow .fl-button-wrap a.fl-button:visited:active, .tertiary-button.hollow .fl-button-wrap a.fl-button:visited:hover, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .tertiary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .tertiary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .tertiary-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.uabb-button:not(.override):hover, .uabb-module-content .tertiary-button.hollow .uabb-btn:focus, .uabb-module-content .tertiary-button.hollow .uabb-btn:active, .uabb-module-content .tertiary-button.hollow .uabb-btn:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 0;
  outline: none;
}
.tertiary-button.hollow .uabb-module-content .info-table-button a {
  background: transparent;
  border-color: #417640;
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
  border-style: solid;
}
.tertiary-button.hollow .uabb-module-content .info-table-button a:focus, .tertiary-button.hollow .uabb-module-content .info-table-button a:active, .tertiary-button.hollow .uabb-module-content .info-table-button a:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 0;
  outline: none;
}
.tertiary-button.hollow .fl-button-wrap a.fl-button *, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #454142;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.tertiary-button.hollow .fl-button-wrap a.fl-button:focus, .tertiary-button.hollow .fl-button-wrap a.fl-button:active, .tertiary-button.hollow .fl-button-wrap a.fl-button:hover, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .tertiary-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: transparent;
  border-color: #539752;
  border-radius: 0;
  outline: none;
}
.tertiary-button.hollow.large button, .tertiary-button.hollow.large .fl-button-wrap a.fl-button, .tertiary-button.hollow.large .fl-button-wrap a.fl-button:visited, .tertiary-button.hollow.large.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.hollow.large.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.hollow.large .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.large.uabb-button:not(.override), .uabb-module-content .tertiary-button.hollow.large .uabb-btn {
  padding: 10px 1px 2px 1px;
}
.tertiary-button.hollow.large button *, .tertiary-button.hollow.large .fl-button-wrap a.fl-button *, .tertiary-button.hollow.large .fl-button-wrap a.fl-button:visited *, .tertiary-button.hollow.large.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.hollow.large.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.hollow.large .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.large.uabb-button:not(.override) *, .uabb-module-content .tertiary-button.hollow.large .uabb-btn * {
  font-size: 17.6px;
}
.tertiary-button.hollow.large .uabb-module-content .info-table-button a {
  padding: 10px 1px 2px 1px;
  font-size: 17.6px;
}
.tertiary-button.hollow.small button, .tertiary-button.hollow.small .fl-button-wrap a.fl-button, .tertiary-button.hollow.small .fl-button-wrap a.fl-button:visited, .tertiary-button.hollow.small.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.hollow.small.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.hollow.small .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.small.uabb-button:not(.override), .uabb-module-content .tertiary-button.hollow.small .uabb-btn {
  padding: 10px 1px 2px 1px;
}
.tertiary-button.hollow.small button *, .tertiary-button.hollow.small .fl-button-wrap a.fl-button *, .tertiary-button.hollow.small .fl-button-wrap a.fl-button:visited *, .tertiary-button.hollow.small.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.hollow.small.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.hollow.small .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.small.uabb-button:not(.override) *, .uabb-module-content .tertiary-button.hollow.small .uabb-btn * {
  font-size: 14.4px;
}
.tertiary-button.hollow.small .uabb-module-content .info-table-button a {
  padding: 10px 1px 2px 1px;
  font-size: 14.4px;
}
.tertiary-button.hollow.tiny button, .tertiary-button.hollow.tiny .fl-button-wrap a.fl-button, .tertiary-button.hollow.tiny .fl-button-wrap a.fl-button:visited, .tertiary-button.hollow.tiny.fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.hollow.tiny.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.hollow.tiny .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.tiny.uabb-button:not(.override), .uabb-module-content .tertiary-button.hollow.tiny .uabb-btn {
  padding: 10px 1px 2px 1px;
}
.tertiary-button.hollow.tiny button *, .tertiary-button.hollow.tiny .fl-button-wrap a.fl-button *, .tertiary-button.hollow.tiny .fl-button-wrap a.fl-button:visited *, .tertiary-button.hollow.tiny.fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.hollow.tiny.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.hollow.tiny .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.hollow.tiny.uabb-button:not(.override) *, .uabb-module-content .tertiary-button.hollow.tiny .uabb-btn * {
  font-size: 12.8px;
}
.tertiary-button.hollow.tiny .uabb-module-content .info-table-button a {
  padding: 10px 1px 2px 1px;
  font-size: 12.8px;
}
.tertiary-button.large:not(.hollow) button, .tertiary-button.large:not(.hollow) .fl-button-wrap a.fl-button, .tertiary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited, .tertiary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.large:not(.hollow).uabb-button:not(.override), .uabb-module-content .tertiary-button.large:not(.hollow) .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.tertiary-button.large:not(.hollow) button *, .tertiary-button.large:not(.hollow) .fl-button-wrap a.fl-button *, .tertiary-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited *, .tertiary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.large:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .tertiary-button.large:not(.hollow) .uabb-btn * {
  font-size: 17.6px;
}
.tertiary-button.large:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.tertiary-button.small:not(.hollow) button, .tertiary-button.small:not(.hollow) .fl-button-wrap a.fl-button, .tertiary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited, .tertiary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.small:not(.hollow).uabb-button:not(.override), .uabb-module-content .tertiary-button.small:not(.hollow) .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.tertiary-button.small:not(.hollow) button *, .tertiary-button.small:not(.hollow) .fl-button-wrap a.fl-button *, .tertiary-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited *, .tertiary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.small:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .tertiary-button.small:not(.hollow) .uabb-btn * {
  font-size: 14.4px;
}
.tertiary-button.small:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.tertiary-button.tiny:not(.hollow) button, .tertiary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button, .tertiary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited, .tertiary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .tertiary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .tertiary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .tertiary-button.tiny:not(.hollow).uabb-button:not(.override), .uabb-module-content .tertiary-button.tiny:not(.hollow) .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.tertiary-button.tiny:not(.hollow) button *, .tertiary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button *, .tertiary-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited *, .tertiary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .tertiary-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .tertiary-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .tertiary-button.tiny:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .tertiary-button.tiny:not(.hollow) .uabb-btn * {
  font-size: 12.8px;
}
.tertiary-button.tiny:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.white-button.hollow button, .white-button.hollow .fl-button-wrap a.fl-button, .white-button.hollow .fl-button-wrap a.fl-button:visited, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override), .uabb-module-content .white-button.hollow .uabb-btn {
  background: transparent;
  border-color: #FFFFFF;
  border-width: 1px;
  border-radius: 5px;
}
.white-button.hollow button:focus, .white-button.hollow button:active, .white-button.hollow button:hover, .white-button.hollow .fl-button-wrap a.fl-button:focus, .white-button.hollow .fl-button-wrap a.fl-button:active, .white-button.hollow .fl-button-wrap a.fl-button:hover, .white-button.hollow .fl-button-wrap a.fl-button:visited:focus, .white-button.hollow .fl-button-wrap a.fl-button:visited:active, .white-button.hollow .fl-button-wrap a.fl-button:visited:hover, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):focus, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):active, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):hover, .uabb-module-content .white-button.hollow .uabb-btn:focus, .uabb-module-content .white-button.hollow .uabb-btn:active, .uabb-module-content .white-button.hollow .uabb-btn:hover {
  background: transparent;
  border-color: #ededed;
  border-radius: 5px;
}
.white-button.hollow button:focus *, .white-button.hollow button:active *, .white-button.hollow button:hover *, .white-button.hollow .fl-button-wrap a.fl-button:focus *, .white-button.hollow .fl-button-wrap a.fl-button:active *, .white-button.hollow .fl-button-wrap a.fl-button:hover *, .white-button.hollow .fl-button-wrap a.fl-button:visited:focus *, .white-button.hollow .fl-button-wrap a.fl-button:visited:active *, .white-button.hollow .fl-button-wrap a.fl-button:visited:hover *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:focus *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:active *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited:hover *, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):focus *, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):active *, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override):hover *, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):focus *, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):active *, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override):hover *, .uabb-module-content .white-button.hollow .uabb-btn:focus *, .uabb-module-content .white-button.hollow .uabb-btn:active *, .uabb-module-content .white-button.hollow .uabb-btn:hover * {
  color: #ededed;
}
.white-button.hollow button *, .white-button.hollow .fl-button-wrap a.fl-button *, .white-button.hollow .fl-button-wrap a.fl-button:visited *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.hollow.uabb-button:not(.override) *, .uabb-module-content .white-button.hollow .uabb-btn * {
  color: #ededed;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.white-button.hollow .uabb-module-content .info-table-button a {
  background: transparent;
  border-color: #FFFFFF;
  border-radius: 5px;
  color: #ededed;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.white-button.hollow .uabb-module-content .info-table-button a:focus, .white-button.hollow .uabb-module-content .info-table-button a:active, .white-button.hollow .uabb-module-content .info-table-button a:hover {
  background: transparent;
  border-color: #ededed;
  border-radius: 5px;
  color: #ededed;
}
.white-button.hollow .fl-button-wrap a.fl-button *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button * {
  color: #ededed;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 16px;
}
.white-button.hollow .fl-button-wrap a.fl-button:focus, .white-button.hollow .fl-button-wrap a.fl-button:active, .white-button.hollow .fl-button-wrap a.fl-button:hover, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover {
  background: transparent;
  border-color: #ededed;
  border-radius: 5px;
}
.white-button.hollow .fl-button-wrap a.fl-button:focus *, .white-button.hollow .fl-button-wrap a.fl-button:active *, .white-button.hollow .fl-button-wrap a.fl-button:hover *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:focus *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:active *, .white-button.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:hover * {
  color: #ededed;
}
.white-button.large:not(.hollow) button, .white-button.large:not(.hollow) .fl-button-wrap a.fl-button, .white-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited, .white-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.large:not(.hollow).uabb-button:not(.override), .uabb-module-content .white-button.large:not(.hollow) .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.white-button.large:not(.hollow) button *, .white-button.large:not(.hollow) .fl-button-wrap a.fl-button *, .white-button.large:not(.hollow) .fl-button-wrap a.fl-button:visited *, .white-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.large:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.large:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.large:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .white-button.large:not(.hollow) .uabb-btn * {
  font-size: 17.6px;
}
.white-button.large:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.white-button.small:not(.hollow) button, .white-button.small:not(.hollow) .fl-button-wrap a.fl-button, .white-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited, .white-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.small:not(.hollow).uabb-button:not(.override), .uabb-module-content .white-button.small:not(.hollow) .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.white-button.small:not(.hollow) button *, .white-button.small:not(.hollow) .fl-button-wrap a.fl-button *, .white-button.small:not(.hollow) .fl-button-wrap a.fl-button:visited *, .white-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.small:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.small:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.small:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .white-button.small:not(.hollow) .uabb-btn * {
  font-size: 14.4px;
}
.white-button.small:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.white-button.tiny:not(.hollow) button, .white-button.tiny:not(.hollow) .fl-button-wrap a.fl-button, .white-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited, .white-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.tiny:not(.hollow).uabb-button:not(.override), .uabb-module-content .white-button.tiny:not(.hollow) .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.white-button.tiny:not(.hollow) button *, .white-button.tiny:not(.hollow) .fl-button-wrap a.fl-button *, .white-button.tiny:not(.hollow) .fl-button-wrap a.fl-button:visited *, .white-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.tiny:not(.hollow).fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.tiny:not(.hollow) .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.tiny:not(.hollow).uabb-button:not(.override) *, .uabb-module-content .white-button.tiny:not(.hollow) .uabb-btn * {
  font-size: 12.8px;
}
.white-button.tiny:not(.hollow) .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
.white-button.large.hollow button, .white-button.large.hollow .fl-button-wrap a.fl-button, .white-button.large.hollow .fl-button-wrap a.fl-button:visited, .white-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.large.hollow.uabb-button:not(.override), .uabb-module-content .white-button.large.hollow .uabb-btn {
  padding: 15.4px 27.5px 15.6px 27.5px;
}
.white-button.large.hollow button *, .white-button.large.hollow .fl-button-wrap a.fl-button *, .white-button.large.hollow .fl-button-wrap a.fl-button:visited *, .white-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.large.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.large.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.large.hollow.uabb-button:not(.override) *, .uabb-module-content .white-button.large.hollow .uabb-btn * {
  font-size: 17.6px;
}
.white-button.large.hollow .uabb-module-content .info-table-button a {
  padding: 15.4px 27.5px 17.6px 27.5px;
  font-size: 17.6px;
}
.white-button.small.hollow button, .white-button.small.hollow .fl-button-wrap a.fl-button, .white-button.small.hollow .fl-button-wrap a.fl-button:visited, .white-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.small.hollow.uabb-button:not(.override), .uabb-module-content .white-button.small.hollow .uabb-btn {
  padding: 12.6px 22.5px 12.4px 22.5px;
}
.white-button.small.hollow button *, .white-button.small.hollow .fl-button-wrap a.fl-button *, .white-button.small.hollow .fl-button-wrap a.fl-button:visited *, .white-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.small.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.small.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.small.hollow.uabb-button:not(.override) *, .uabb-module-content .white-button.small.hollow .uabb-btn * {
  font-size: 14.4px;
}
.white-button.small.hollow .uabb-module-content .info-table-button a {
  padding: 12.6px 22.5px 14.4px 22.5px;
  font-size: 14.4px;
}
.white-button.tiny.hollow button, .white-button.tiny.hollow .fl-button-wrap a.fl-button, .white-button.tiny.hollow .fl-button-wrap a.fl-button:visited, .white-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button, .white-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited, .white-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override), .uabb-module-content.uabb-button-wrap .white-button.tiny.hollow.uabb-button:not(.override), .uabb-module-content .white-button.tiny.hollow .uabb-btn {
  padding: 11.2px 20px 10.8px 20px;
}
.white-button.tiny.hollow button *, .white-button.tiny.hollow .fl-button-wrap a.fl-button *, .white-button.tiny.hollow .fl-button-wrap a.fl-button:visited *, .white-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button *, .white-button.tiny.hollow.fl-button-wrap:not(.fl-button-override) a.fl-button:visited *, .white-button.tiny.hollow .uabb-module-content.uabb-button-wrap a.uabb-button:not(.override) *, .uabb-module-content.uabb-button-wrap .white-button.tiny.hollow.uabb-button:not(.override) *, .uabb-module-content .white-button.tiny.hollow .uabb-btn * {
  font-size: 12.8px;
}
.white-button.tiny.hollow .uabb-module-content .info-table-button a {
  padding: 11.2px 20px 12.8px 20px;
  font-size: 12.8px;
}
/* ==========================================================================
	4.  Buttons Random Fix
	========================================================================== */
.uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-one, .uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-two, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-one, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-two {
  border-radius: 5px;
  line-height: 1;
}
.uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-one span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-two span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-horizontal a.uabb-btn.uabb-btn-two span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-one span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-two span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper.uabb-vertical a.uabb-btn.uabb-btn-two span.uabb-btn-two-text {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-one, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-two, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-one, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-two {
  border-radius: 5px;
  line-height: 1;
  border-style: solid;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-one span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-two span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow a.uabb-btn.uabb-btn-two span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-one span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-two span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow a.uabb-btn.uabb-btn-two span.uabb-btn-two-text {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.large a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.large a.uabb-btn.uabb-btn-two span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.large a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.large a.uabb-btn.uabb-btn-two span.uabb-btn-two-text {
  font-size: 17.6px;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.small a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.small a.uabb-btn.uabb-btn-two span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.small a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.small a.uabb-btn.uabb-btn-two span.uabb-btn-two-text {
  font-size: 14.4px;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.tiny a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.hollow.tiny a.uabb-btn.uabb-btn-two span.uabb-btn-two-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.tiny a.uabb-btn.uabb-btn-one span.uabb-btn-one-text, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.hollow.tiny a.uabb-btn.uabb-btn-two span.uabb-btn-two-text {
  font-size: 12.8px;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover {
  border-color: #417640;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover * {
  color: #ffffff;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:hover {
  border-color: #539752;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.primary-button.hollow a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.primary-button.hollow a.uabb-btn.uabb-btn-two:hover * {
  color: #ffffff;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover {
  border-color: #ffd100;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover * {
  color: #333333;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:hover {
  border-color: #ffda33;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.secondary-button.hollow a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.secondary-button.hollow a.uabb-btn.uabb-btn-two:hover * {
  color: #333333;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover {
  border-color: #222222;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.tertiary-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover * {
  color: #ffffff;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover {
  border-color: #FFFFFF;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button:not(.hollow) a.uabb-btn.uabb-btn-two:hover * {
  color: #FFFFFF;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:hover, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:focus, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:active, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:hover {
  border-color: #ededed;
}
.uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-one.white-button.hollow a.uabb-btn.uabb-btn-two:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-one:hover *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:focus *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:active *, .uabb-dual-button .uabb-dual-button-wrapper .uabb-dual-button-two.white-button.hollow a.uabb-btn.uabb-btn-two:hover * {
  color: #FFFFFF;
}
.frm_form_fields button.frm_button_submit {
  background: #417640;
  border-color: #4e8d4d;
  color: #FFFFFF;
  line-height: 1;
  text-transform: none;
  border-width: 1px;
  border-radius: 5px;
  padding: 14px 25px 16px 25px;
}
.frm_form_fields button.frm_button_submit:focus, .frm_form_fields button.frm_button_submit:active, .frm_form_fields button.frm_button_submit:hover {
  background: #4e8d4d;
  border-color: #417640;
}
.fl-menu-responsive-toggle-mobile button.fl-menu-mobile-toggle {
  background: transparent;
  border-color: #ffd100;
  border-width: 1px;
  border-radius: 5px;
  padding: 3px 10px 2px 10px;
  border-style: solid;
}
.fl-menu-responsive-toggle-mobile button.fl-menu-mobile-toggle * {
  font-size: 0.9rem;
  color: #ffd100;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 600;
}
.fl-menu-responsive-toggle-mobile button.fl-menu-mobile-toggle:focus, .fl-menu-responsive-toggle-mobile button.fl-menu-mobile-toggle:active, .fl-menu-responsive-toggle-mobile button.fl-menu-mobile-toggle:hover {
  background: transparent;
  border-color: #ffd100;
  border-radius: 5px;
}
.ninja_table_pro .nt_btn {
  background: #ffd100;
  border-color: #ffd724;
  color: #FFFFFF;
  line-height: 1;
  text-transform: none;
  border-width: 1px;
  border-radius: 5px;
  padding: 14px 25px 16px 25px;
}
.ninja_table_pro .nt_btn:focus, .ninja_table_pro .nt_btn:active, .ninja_table_pro .nt_btn:hover {
  background: #ffd724;
  border-color: #ffd100;
}
.fullwidth .fl-button {
  width: 100%;
}
.white-button * {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
/* ==========================================================================
	!  REACT APP Button Variables
	========================================================================== */
.primary-button--app, .secondary-button--app, .tertiary-button--app {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
:root {
  --button-padding-top: 14px;
  --button-padding-right: 25px;
  --button-padding-bottom: 16px;
  --button-padding-left: 25px;
  --button-padding: 14px 25px 16px 25px;
  --button-border-radius: 5px;
  --button-border-width: 1px;
  --button-line-height: 1;
  --button-letter-spacing: 0px;
  --button-font-size: 16px;
  --button-font-weight: 600;
  --button-text-transform: none;
  --button-primary-text-color: #ffffff;
  --button-secondary-text-color: #333333;
  --button-tertiary-text-color: #ffffff;
  --button-primary-background-color: #417640;
  --button-secondary-background-color: #ffd100;
  --button-tertiary-background-color: #222222;
  --button-primary-hover-color: #4e8d4d;
  --button-secondary-hover-color: #ffd724;
  --button-tertiary-hover-color: #343434;
  --button-white-hover-color: #ededed;
  --button-size-large: 1.1;
  --button-size-small: 0.9;
  --button-size-tiny: 0.8;
}
/* ==========================================================================
#
# ////////////////////////////// FORMS /////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Global Form Variables
		2. Form Element (Mixin)
		3. Checkboxes
		4. Labels
		5. Help Text
		6. Input Group
		7. Fieldset
		8. Select
		9. Form Error
		10. Formidable Form Styles
		#. REACT APP Form Variables

-------------------------------------------*/
#formidableFormIframe {
  min-height: 500px;
}
/* ==========================================================================
	1.  Global Form Variables
	========================================================================== */
/* ==========================================================================
	2.  Form Element
	========================================================================== */
input[type=email], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 3.3rem;
  padding: 0.5rem;
  border: 1px solid #eeeeee;
  margin: 0 0 1rem;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 1rem;
  color: #000000;
  background-color: #FAFAFA;
  box-shadow: none;
  border-radius: 15px;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=reset]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, textarea:focus {
  border: 2px solid #ffd100;
  background-color: #FFFFFF;
  outline: none;
  box-shadow: 0 4px 24px rgba(255, 209, 0, 0.2);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input::placeholder, textarea::placeholder {
  color: #757575;
}
input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
  background-color: #F6F6F6;
  cursor: not-allowed;
}
[type="submit"], [type="button"] {
  border-radius: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="search"] {
  box-sizing: border-box;
}
/* ==========================================================================
	3.  Checkboxes
	========================================================================== */
[type="file"], [type="checkbox"], [type="radio"] {
  margin: 0 0 1rem;
}
[type="checkbox"] + label, [type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
[type="checkbox"] + label[for], [type="radio"] + label[for] {
  cursor: pointer;
}
label > [type="checkbox"], label > [type="radio"] {
  margin-right: 0.5rem;
}
[type="file"] {
  width: 100%;
}
/* ==========================================================================
	4.  Labels
	========================================================================== */
label {
  display: block;
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #454142;
}
/* ==========================================================================
	5.  Help Text
	========================================================================== */
.help-text {
  margin-top: -0.5rem;
  font-size: 0.7777777778rem;
  font-style: normal;
  color: #000000;
}
/* ==========================================================================
	6.  Input Group
	========================================================================== */
.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem;
}
.input-group > :first-child {
  border-radius: 15px 0 0 15px;
}
.input-group > :last-child > * {
  border-radius: 0 15px 15px 0;
}
.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}
.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #F6F6F6;
  color: #000000;
  border: 1px solid #DDDDDD;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}
.input-group-field {
  border-radius: 0;
  height: 2.5rem;
}
.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%;
}
.input-group-button a, .input-group-button input, .input-group-button button {
  margin: 0;
}
.input-group .input-group-button {
  display: table-cell;
}
/* ==========================================================================
	7.  Fieldset
	========================================================================== */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
legend {
  margin-bottom: 0.5rem;
  max-width: 100%;
}
.fieldset {
  border: 1px solid #DDDDDD;
  padding: 1.1111111111rem;
  margin: 1rem 0;
}
.fieldset legend {
  background: #FFFFFF;
  padding: 0 0.1666666667rem;
  margin: 0;
  margin-left: -0.1666666667rem;
}
/* ==========================================================================
	8.  Select
	========================================================================== */
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #eeeeee !important;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #000000;
  background-color: #FAFAFA;
  border-radius: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  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%28117, 117, 117%29'></polygon></svg>") !important;
  background-size: 9px 6px;
  background-position: calc(100% - 16px) center !important;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}
@media screen and (min-width:0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:disabled {
  background-color: #F6F6F6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:focus {
  border: 2px solid #ffd100 !important;
  outline: none;
  box-shadow: 0 4px 24px rgba(255, 209, 0, 0.2);
}
.dark-form label {
  color: #FFFFFF !important;
}
/* ==========================================================================
	9.  Form Error
	========================================================================== */
.frm_error {
  margin-top: -24px;
  font-size: 10px;
  font-style: italic;
  color: white;
  background: #ff2c5d;
  border-radius: 3px;
  padding: 2px;
}
.frm_error_style {
  color: #ff2c5d;
  font-weight: bold;
  font-style: italic;
}
.frm_message {
  color: #658f64;
  font-weight: bold;
  font-style: italic;
}
/* ==========================================================================
	10.  Formidable Form Styles
	========================================================================== */
.html-formidable-form .frm_combo_inputs_container, .html-formidable-form .frm_grid_container, .html-formidable-form .frm_form_fields .frm_section_heading, .html-formidable-form .frm_form_fields .frm_fields_container {
  grid-gap: 30px 20px;
}
@media screen and (min-width: 40em) {
  .html-formidable-form .frm_combo_inputs_container, .html-formidable-form .frm_grid_container, .html-formidable-form .frm_form_fields .frm_section_heading, .html-formidable-form .frm_form_fields .frm_fields_container {
    grid-gap: 30px 40px;
  }
}
@media screen and (min-width: 64em) {
  .html-formidable-form .frm_combo_inputs_container, .html-formidable-form .frm_grid_container, .html-formidable-form .frm_form_fields .frm_section_heading, .html-formidable-form .frm_form_fields .frm_fields_container {
    grid-gap: 30px 40px;
  }
}
.html-formidable-form .frm_primary_label {
  align-items: baseline;
  margin-bottom: 5px !important;
  color: #454142;
}
.html-formidable-form .frm_primary_label .frm_required {
  color: #ff2c5d !important;
}
.html-formidable-form input, .html-formidable-form textarea {
  line-height: 1.2;
  padding: 1rem !important;
  margin-bottom: 0;
  border-radius: 15px;
}
.html-formidable-form input[aria-invalid="true"], .html-formidable-form textarea[aria-invalid="true"] {
  border-color: #ff2c5d;
  border-radius: 15px 15px 0 0;
}
.html-formidable-form input[aria-invalid="true"]:focus, .html-formidable-form textarea[aria-invalid="true"]:focus {
  border-color: #ef0038;
}
.html-formidable-form select {
  margin-bottom: 0;
}
.html-formidable-form select[aria-invalid="true"] {
  border-color: #ff2c5d !important;
  border-radius: 15px 15px 0 0;
}
.html-formidable-form select[aria-invalid="true"]:focus {
  border-color: #ef0038;
}
.html-formidable-form input {
  height: auto;
}
.html-formidable-form .frm_submit {
  margin: 4px;
}
.html-formidable-form .frm_button_submit {
  line-height: 1 !important;
  letter-spacing: 0px;
  font-weight: 600;
  padding: 14px 25px 16px 25px !important;
  background: #ffd100;
  color: #333333;
  margin: 0 auto 1px !important;
}
.html-formidable-form .frm_button_submit:hover, .html-formidable-form .frm_button_submit:active, .html-formidable-form .frm_button_submit:focus {
  background: !important;
}
.html-formidable-form .frm_button_submit:active {
  position: relative;
  top: 1px;
}
.html-formidable-form .frm_button_submit:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
  border-radius: 3px;
}
.html-formidable-form .frm_error_style {
  margin-bottom: 40px;
  font-style: normal;
}
.html-formidable-form .frm_error {
  font-size: 14px;
  line-height: 1.2;
  font-style: normal;
  padding: 4px 8px;
  margin-top: 0;
  border-radius: 0 0 15px 15px;
}
.html-formidable-form select {
  background-position: calc(100% - 16px) center !important;
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone {
  width: 100%;
  max-width: 100%;
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-message, .html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-preview {
  border-radius: 15px;
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone svg {
  display: block;
  height: 50px;
  margin: 0 auto 20px;
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-preview .dz-progress, .html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-preview .dz-upload {
  background: #658f64;
  background: linear-gradient(to bottom, #90b18f, #658f64);
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-preview .dz-filename {
  font-size: 16px;
  font-weight: bold;
}
.html-formidable-form .frm_form_field:not(.frm_compact) .frm_dropzone .dz-preview .dz-image img {
  border-radius: 8px !important;
}
.html-formidable-form input[aria-invalid="true"] + .frm_dropzone .dz-message {
  border-radius: 15px 15px 0 0 !important;
}
/* Universal loading state for Formidable submit buttons */
.frm-global-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
  /* Spinner */
}
.frm-global-loading::after {
  content: "";
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: frm-global-spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  right: 0.85em;
  transform: translateY(-50%);
}
/* Extra padding so the spinner doesn't overlap text */
.frm-global-loading, .frm-global-loading[type="submit"] {
  padding-right: 2.25em !important;
}
@keyframes frm-global-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* ==========================================================================
	9.  Loan Calculator
	========================================================================== */
.loan-calculator--wrapper .frm_form_fields > fieldset {
  border: none;
  margin-top: 0;
}
.loan-calculator--wrapper .frm_primary_label {
  margin-bottom: 10px;
}
.loan-calculator--wrapper .loan-calculator--equipment-price .frm_input_group:not(.frm_hidden) {
  font-size: 1.5em;
}
.loan-calculator--wrapper .loan-calculator--equipment-price input {
  font-size: 1.5em;
  height: 3.82rem;
  font-weight: bold;
  color: #454142;
}
.loan-calculator--wrapper .sales-tax-input .frm_input_group:not(.frm_hidden) input {
  border-radius: 15px 0 0 15px;
}
.loan-calculator--wrapper .frm_input_group:not(.frm_hidden) {
  display: flex;
  margin-bottom: 30px;
}
.loan-calculator--wrapper .frm_input_group:not(.frm_hidden) .frm_inline_box {
  flex: 0 0 auto;
  min-width: 50px;
  border: solid 1px #eeeeee;
  text-align: center;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  background: #FAFAFA;
  font-weight: bold;
}
.loan-calculator--wrapper .frm_input_group:not(.frm_hidden) .frm_inline_box:first-child {
  border-radius: 15px 0 0 15px;
}
.loan-calculator--wrapper .frm_input_group:not(.frm_hidden) .frm_inline_box:last-child {
  border-radius: 0 15px 15px 0;
}
.loan-calculator--wrapper .frm_input_group:not(.frm_hidden) input {
  margin-bottom: 0;
  border-radius: 0;
  background-color: #FFFFFF;
}
.loan-calculator--wrapper .frm_range_container {
  margin-bottom: 30px;
  /* Base reset */
  /* Track */
  /* Thumb (the circle dot) */
}
.loan-calculator--wrapper .frm_range_container .frm-text-left .frm_range_value {
  font-size: 24px;
  color: #454142;
  padding-right: 2px;
}
.loan-calculator--wrapper .frm_range_container input {
  border-radius: 100px;
}
.loan-calculator--wrapper .frm_range_container .frm_description {
  display: flex;
  justify-content: space-between;
}
.loan-calculator--wrapper .frm_range_container .frm_description .frm_range_min, .loan-calculator--wrapper .frm_range_container .frm_description .frm_range_max {
  font-size: 12px;
}
.loan-calculator--wrapper .frm_range_container .frm_description .frm_range_unit {
  font-weight: normal;
  padding-left: 2px;
}
.loan-calculator--wrapper .frm_range_container input[type=range] {
  -webkit-appearance: none;
  /* Removes default Chrome/Safari styles */
  appearance: none;
  width: 100%;
  background: transparent;
  /* Otherwise white background in Firefox */
  margin: 10px 0;
  outline: none;
  border: 0;
  box-shadow: none !important;
  /* kill any inherited shadow */
  -webkit-tap-highlight-color: transparent;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-webkit-slider-runnable-track {
  height: 10px;
  background: #dddddd;
  border-radius: 3px;
  box-shadow: none !important;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-moz-range-track {
  height: 10px;
  background: #dddddd;
  border-radius: 3px;
  box-shadow: none !important;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-ms-track {
  height: 10px;
  background: #dddddd;
  border-radius: 3px;
  border-color: transparent;
  color: transparent;
  box-shadow: none !important;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #417640;
  /* change dot color */
  border: none;
  box-shadow: none;
  /* removes drop shadow */
  margin-top: -4px;
  /* aligns thumb with track */
  cursor: pointer;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #757575;
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.loan-calculator--wrapper .frm_range_container input[type=range]::-ms-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #757575;
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.loan-calculator--wrapper .calculation--container {
  background: #f7f7f7;
  border-radius: 15px;
}
.loan-calculator--wrapper .calculation--container h3 {
  font-size: 20px;
  color: #454142;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #eeeeee !important;
}
.loan-calculator--wrapper .calculation--container .margin-bottom-small {
  display: none;
}
.loan-calculator--wrapper .calculation--container .loan-calculator--equipment-price, .loan-calculator--wrapper .calculation--container .loan-calculator--down-payment, .loan-calculator--wrapper .calculation--container .loan-calculator--loan-amount {
  margin-top: 10px;
}
.loan-calculator--wrapper .calculation--container .frm_total {
  border-bottom: dashed 1px #eeeeee;
}
.loan-calculator--wrapper .calculation--container .number-output {
  color: #454142;
}
.loan-calculator--wrapper .calculation--container .frm_inline_total {
  color: #454142;
}
.loan-calculator--wrapper .calculation--container .loan-calculator--disclaimer {
  color: #454142;
  font-weight: normal;
  margin-top: 30px;
  line-height: 1.3;
  font-size: 14px;
}
/* ==========================================================================
	10.  Forms
	========================================================================== */
form.marketingForm .wrap-section table.outer {
  display: block;
  border: none;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
}
form.marketingForm .wrap-section table.outer > tbody {
  display: block;
  border: none;
  width: 100% !important;
  max-width: 100% !important;
}
form.marketingForm .wrap-section table.outer > tbody > tr, form.marketingForm .wrap-section table.outer > tbody > tr > th {
  display: block;
  border: none;
  padding: 0;
}
form.marketingForm .wrap-section table.outer > tbody > th.columnContainer {
  border: none;
  width: 100% !important;
}
form.marketingForm .wrap-section table.outer table.containerWrapper {
  border: none;
  margin: 0;
}
form.marketingForm .wrap-section table.outer table.containerWrapper th.columnContainer {
  border: none;
  padding: 0;
}
form.marketingForm .wrap-section table.outer table.containerWrapper th.inner {
  border: none;
  padding: 0;
}
form.marketingForm .wrap-section table.outer table.containerWrapper th.inner * {
  text-align: left;
}
form.marketingForm .wrap-section table.outer table.containerWrapper th.inner label {
  margin-bottom: 5px;
}
form.marketingForm .wrap-section table.outer table {
  border: none !important;
  margin: 0;
}
form.marketingForm .wrap-section table.outer h1 {
  display: none;
}
form.marketingForm .wrap-section table.outer input, form.marketingForm .wrap-section table.outer select {
  margin-bottom: 40px;
}
form.marketingForm .wrap-section table.outer .phoneCountryCode .phoneCountryCodeLabel {
  display: none;
}
form.marketingForm .wrap-section table.outer .submitButtonWrapper button.submitButton {
  background: #417640;
}
/* ==========================================================================
	#.  REACT APP Form Variables
	========================================================================== */
:root {
  --input-form-spacing: 1rem;
  --input-color: #000000;
  --input-placeholder-color: #dddddd;
  --input-font-family: inherit;
  --input-font-size: 1rem;
  --input-background: #FAFAFA;
  --input-background-focus: #FFFFFF;
  --input-background-disabled: #F6F6F6;
  --input-border: 1px solid #eeeeee;
  --input-button-radius: 15px;
  --input-border-focus: 2px solid #ffd100;
  --input-shadow: none;
  --input-shadow-focus: 0 4px 24px rgba(255, 209, 0, 0.2);
  --input-cursor-disabled: not-allowed;
  --input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  --input-number-spinners: true;
  --input-radius: 15px;
  --form-label-color: #454142;
  --form-label-font-size: 16px;
  --form-label-font-weight: 700;
  --form-label-line-height: 1.2;
  --helptext-color: #000000;
  --helptext-font-size: 0.7777777778rem;
  --helptext-font-style: normal;
  --input-prefix-color: #000000;
  --input-prefix-background: #F6F6F6;
  --input-prefix-border: 1px solid #DDDDDD;
  --input-prefix-padding: 1rem;
  --fieldset-border: 1px solid #DDDDDD;
  --fieldset-padding: 1.1111111111rem;
  --fieldset-margin: 1rem 0;
  --legend-padding: 0 0.1666666667rem;
  --select-background: #FAFAFA;
  --select-triangle-color: #757575;
  --select-radius: 15px;
}
/* ==========================================================================
#
# /////////////////////////////// GENERAL ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		#. REACT APP Global Variables
		1. General Styles
		2. Z-Index
		3. Max Width. 
		4. Margin Auto
		5. No Float
		6. Justify
		7. No Background
		8. Hide for X

-------------------------------------------*/
/* ==========================================================================
	#  REACT APP Global Variables
	========================================================================== */
:root {
  --serif: Georgia, serif;
  --sans-serif: Inter Tight, Arial, sans-serif;
  --sans-serif-condensed: Inter Tight, Helvetica, Arial, sans-serif;
  --body-font-family: Inter Tight, Arial, sans-serif;
  --body-font-color: #454142;
  --primary-color: #417640;
  --secondary-color: #ffd100;
  --tertiary-color: #222222;
  --success-color: #658f64;
  --warning-color: #fde231;
  --alert-color: #ff2c5d;
  --info-color: #417640;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --gray-color: #dddddd;
  --light-gray-color: #f7f7f7;
  --medium-gray-color: #eeeeee;
  --dark-gray-color: #757575;
  --breakpoint-mobile: 639px;
  --breakpoint-tablet: 1023px;
}
/* ==========================================================================
	1.  General Styles
	========================================================================== */
.underline {
  text-decoration: underline;
}
.underline-hover:hover, .underline-hover:focus {
  text-decoration: underline;
}
.text-wrap-balance {
  text-wrap: balance;
}
.display-none {
  display: none !important;
}
.sans-serif {
  font-family: "Inter Tight", Arial, sans-serif !important;
}
.sans-serif-condensed {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif !important;
}
.body-font-color {
  color: #454142 !important;
}
@media screen and (max-width: 475px) {
  .image-small-block {
    float: none;
    display: block;
    margin-left: 0;
  }
}
.paragraph-no-margin p {
  margin-bottom: 0 !important;
}
.paragraph-last-no-margin p:last-of-type {
  margin-bottom: 0 !important;
}
.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.flex-1-1-auto {
  flex: 1 1 auto !important;
}
.flex-0-1-auto {
  flex: 0 1 auto !important;
}
.flex-1-0-auto {
  flex: 1 0 auto !important;
}
.truncate-text-2-lines p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* limits the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.truncate-text {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
body.fl-builder-edit.fl-theme-builder-singular header, body.fl-builder-edit.fl-theme-builder-archive header, body.fl-builder-edit.fl-theme-builder-part.single-fl-theme-layout:not(.fl-theme-builder-header) header {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  text-transform: none;
}
.two-columns-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  margin: 0;
}
.two-columns-list li {
  position: relative;
  padding-left: 10px;
}
.two-columns-list li::before {
  content: "-";
  position: absolute;
  left: 0;
}
/* ==========================================================================
	2.  Z-Index
	========================================================================== */
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-10 {
  z-index: 10;
}
.z-index-100 {
  z-index: 100;
}
.relative {
  position: relative;
}
/* ==========================================================================
	3.  Max Width
	========================================================================== */
@media screen and (min-width: 64em) {
  .max-width-300--largeup {
    max-width: 300px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-400--largeup {
    max-width: 400px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-500--largeup {
    max-width: 500px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-600--largeup {
    max-width: 600px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-700--largeup {
    max-width: 700px !important;
    float: none !important;
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 40em) {
  .max-width-300--mediumup {
    max-width: 300px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-400--mediumup {
    max-width: 400px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-500--mediumup {
    max-width: 500px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-600--mediumup {
    max-width: 600px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-700--mediumup {
    max-width: 700px !important;
    float: none !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .max-width-300--mediumdown {
    max-width: 300px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-400--mediumdown {
    max-width: 400px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-500--mediumdown {
    max-width: 500px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-600--mediumdown {
    max-width: 600px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-700--mediumdown {
    max-width: 700px !important;
    float: none !important;
    margin: 0 auto !important;
  }
}
.max-width-300--smallup {
  max-width: 300px !important;
  float: none !important;
  margin: 0 auto !important;
}
.max-width-400--smallup {
  max-width: 400px !important;
  float: none !important;
  margin: 0 auto !important;
}
.max-width-500--smallup {
  max-width: 500px !important;
  float: none !important;
  margin: 0 auto !important;
}
.max-width-600--smallup {
  max-width: 600px !important;
  float: none !important;
  margin: 0 auto !important;
}
.max-width-700--smallup {
  max-width: 700px !important;
  float: none !important;
  margin: 0 auto !important;
}
@media screen and (max-width: 39.9375em) {
  .max-width-300--smallonly {
    max-width: 300px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-400--smallonly {
    max-width: 400px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-500--smallonly {
    max-width: 500px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-600--smallonly {
    max-width: 600px !important;
    float: none !important;
    margin: 0 auto !important;
  }
  .max-width-700--smallonly {
    max-width: 700px !important;
    float: none !important;
    margin: 0 auto !important;
  }
}
/* ==========================================================================
	4.  Margin Auto
	========================================================================== */
@media screen and (min-width: 64em) {
  .margin-auto--largeup {
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .margin-auto--mediumonly {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .margin-auto--mediumdown {
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 40em) {
  .margin-auto--mediumup {
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .margin-auto--smallonly {
    margin: 0 auto !important;
  }
}
/* ==========================================================================
	5.  No Float
	========================================================================== */
@media screen and (min-width: 64em) {
  .no-float--largeup {
    float: none !important;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .no-float--mediumonly {
    float: none !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .no-float--mediumdown {
    float: none !important;
  }
}
@media screen and (min-width: 40em) {
  .no-float--mediumup {
    float: none !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .no-float--smallonly {
    float: none !important;
  }
}
/* ==========================================================================
	6.  Justify
	========================================================================== */
@media screen and (min-width: 64em) {
  .justify-left--largeup .uabb-dual-button {
    justify-content: start !important;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .justify-left--mediumonly .uabb-dual-button {
    justify-content: start !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .justify-left--mediumdown .uabb-dual-button {
    justify-content: start !important;
  }
}
@media screen and (min-width: 40em) {
  .justify-left--mediumup .uabb-dual-button {
    justify-content: start !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .justify-left--smallonly .uabb-dual-button {
    justify-content: start !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .justify-center--smallonly, .justify-center--smallonly .uabb-dual-button {
    justify-content: center !important;
  }
}
/* ==========================================================================
	7.  No Background
	========================================================================== */
@media screen and (max-width: 63.9375em) {
  .no-background--mediumdown > .fl-row-content-wrap {
    background: transparent !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .no-background--smallonly > .fl-row-content-wrap {
    background: transparent !important;
  }
}
/* ==========================================================================
	8.  Hide For X
	========================================================================== */
@media screen and (max-width: 39.9375em) {
  .hide-for-small {
    display: none;
  }
}
@media screen and (min-width: 40em) {
  .show-for-small {
    display: none;
  }
}
/* ==========================================================================
#
# /////////////////////////////// MODULES ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Header Accents
        2. CTA Section -- Container
        3. Breadcrumbs
        4. Manufacturers Row
        5. Subnavigation Bar
        6. Advanced Color Tabs

-------------------------------------------*/
/* ==========================================================================
	1.  Header Accents - Pills
	========================================================================== */
.pill {
  position: relative;
  display: flex;
  margin-bottom: 10px;
}
.pill > :first-child {
  display: inline-block;
  border-radius: 15px;
  padding: 5px 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.pill-primary-default-normal > :first-child, .pill-primary > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-default-normal.pill-tail, .pill-tail.pill-primary {
  padding-right: 100px;
}
.pill-primary-default-normal.pill-tail::after, .pill-tail.pill-primary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-normal.pill-center, .pill-center.pill-primary {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-default-normal.pill-center::before, .pill-center.pill-primary::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-normal.pill-center::after, .pill-center.pill-primary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-default-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-default-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-default-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-default-bold.pill-tail {
  padding-right: 100px;
}
.pill-primary-default-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-default-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-default-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-default-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-default-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-default-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-normal > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-small-normal.pill-tail {
  padding-right: 100px;
}
.pill-primary-small-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-small-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-small-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-small-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-small-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-small-bold.pill-tail {
  padding-right: 100px;
}
.pill-primary-small-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-small-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-small-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-small-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-small-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-small-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-normal > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-tiny-normal.pill-tail {
  padding-right: 100px;
}
.pill-primary-tiny-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-tiny-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-tiny-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-tiny-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-tiny-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-primary-tiny-bold.pill-tail {
  padding-right: 100px;
}
.pill-primary-tiny-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-tiny-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold-italic > :first-child {
  background-color: #ffd100;
  color: #454142;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-primary-tiny-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-primary-tiny-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-primary-tiny-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-primary-tiny-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #ffd100;
}
.pill-secondary-default-normal > :first-child, .pill-secondary > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-default-normal.pill-tail, .pill-tail.pill-secondary {
  padding-right: 100px;
}
.pill-secondary-default-normal.pill-tail::after, .pill-tail.pill-secondary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-normal.pill-center, .pill-center.pill-secondary {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-default-normal.pill-center::before, .pill-center.pill-secondary::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-normal.pill-center::after, .pill-center.pill-secondary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-default-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-default-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-default-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-default-bold.pill-tail {
  padding-right: 100px;
}
.pill-secondary-default-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-default-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-default-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-default-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-default-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-default-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-normal > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-small-normal.pill-tail {
  padding-right: 100px;
}
.pill-secondary-small-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-small-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-small-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-small-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-small-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-small-bold.pill-tail {
  padding-right: 100px;
}
.pill-secondary-small-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-small-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-small-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-small-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-small-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-small-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-normal > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-tiny-normal.pill-tail {
  padding-right: 100px;
}
.pill-secondary-tiny-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-tiny-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-tiny-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-tiny-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-tiny-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-secondary-tiny-bold.pill-tail {
  padding-right: 100px;
}
.pill-secondary-tiny-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-tiny-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold-italic > :first-child {
  background-color: #417640;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-secondary-tiny-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-secondary-tiny-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-secondary-tiny-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-secondary-tiny-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #417640;
}
.pill-tertiary-default-normal > :first-child, .pill-tertiary > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-default-normal.pill-tail, .pill-tail.pill-tertiary {
  padding-right: 100px;
}
.pill-tertiary-default-normal.pill-tail::after, .pill-tail.pill-tertiary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-normal.pill-center, .pill-center.pill-tertiary {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-default-normal.pill-center::before, .pill-center.pill-tertiary::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-normal.pill-center::after, .pill-center.pill-tertiary::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-default-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-default-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-default-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-default-bold.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-default-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-default-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-default-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-default-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-default-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-default-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-normal > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-small-normal.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-small-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-small-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-small-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-small-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-small-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-small-bold.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-small-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-small-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-small-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-small-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-small-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-small-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-normal > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-tiny-normal.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-tiny-normal.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-normal.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-tiny-normal.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-normal.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-tiny-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-tiny-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-tiny-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  white-space: nowrap;
}
.pill-tertiary-tiny-bold.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-tiny-bold.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-tiny-bold.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold-italic > :first-child {
  background-color: #dddddd;
  color: #454142;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
.pill-tertiary-tiny-bold-italic.pill-tail {
  padding-right: 100px;
}
.pill-tertiary-tiny-bold-italic.pill-tail::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold-italic.pill-center {
  justify-content: center;
  text-align: center;
  padding-right: 0;
}
.pill-tertiary-tiny-bold-italic.pill-center::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  right: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.pill-tertiary-tiny-bold-italic.pill-center::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 12px;
  left: 10px;
  width: 85px;
  height: 2px;
  background-color: #dddddd;
}
.subpage-hero--container .breadcrumbs {
  color: #FFFFFF !important;
}
.row--light-gray-underlay {
  background-color: #FAFAFA;
  position: absolute;
  right: 0;
  top: 10px;
  width: 80%;
  height: 98%;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 63.9375em) {
  .row--light-gray-underlay {
    right: inherit;
    left: 0;
    border-radius: 0 15px 15px 0;
    width: 98%;
  }
}
/* ==========================================================================
	2.  Heros
	========================================================================== */
.hero-background--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  opacity: 50%;
}
.hero-background--image.sub {
  background-position: center center;
}
.hero-background--top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 6%, rgba(115, 115, 115, 0) 100%);
}
.hero-background--base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222222;
  z-index: -1;
}
/* ==========================================================================
	3.  Breadcrumbs
	========================================================================== */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++
		This is located on almost all subpages
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.breadcrumbs {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.breadcrumbs * {
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: bold;
}
.breadcrumbs.no-hero * {
  color: #417640 !important;
  font-weight: normal;
}
/* ==========================================================================
	1.  CTA - Topbar (Multple variations) -- SAVE ROW
	========================================================================== */
.cta--topbar .cta--perferred-location-container {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.cta--topbar .cta--perferred-location-container .cta--preferred-location-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cta--topbar .cta--perferred-location-container .cta--preferred-location-group * {
  line-height: inherit;
}
.cta--topbar .cta--perferred-location-container .location-icon {
  position: relative;
  top: 2px;
  padding-right: 5px;
}
.cta--topbar .cta--perferred-location-container .location-icon svg {
  width: 20px;
  height: 20px;
}
.cta--topbar .cta--perferred-location-container .location-name {
  padding-right: 5px;
  color: #FFFFFF;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cta--topbar .cta--perferred-location-container .location-name a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
}
.cta--topbar .cta--perferred-location-container .cta--closest-location-phone a {
  white-space: nowrap;
}
@media screen and (max-width: 39.9375em) {
  .cta--topbar .cta--perferred-location-container {
    padding-right: 10px;
    padding-bottom: 10px;
  }
  .cta--topbar .cta--perferred-location-container * {
    text-align: center;
  }
  .cta--topbar .cta--perferred-location-container .cta--preferred-location-group {
    justify-content: center;
    margin: 0 auto;
  }
}
.cta--topbar:not(.part) {
  position: sticky;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 39.9375em) {
  .cta--topbar:not(.part) {
    position: relative;
  }
  .cta--topbar:not(.part) .cta--button-contact .fl-button {
    display: block !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .cta--topbar:not(.part) .cta--button-contact.fullwidth-on-medium .fl-button {
    display: block !important;
    width: 100% !important;
  }
}
/* ==========================================================================
	4.  Manufacturers Row
	========================================================================== */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++
		This is located on almost all subpages. It is the
		manufacturer logos before the footer.
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.manufacturers-row .fl-row-content-wrap .fl-row-content .fl-col-group {
  display: flex;
}
.manufacturers-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manufacturers-row .fl-row-content-wrap .fl-row-content .fl-col-group .fl-col img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  width: auto;
  text-align: center;
}
/* ==========================================================================
	5.  Subnavigation Bar
	========================================================================== */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++
		This is located on the parts and services pages
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.subnav--bar > div {
  background: #f7f7f7;
  border: 0.0625rem solid #ededed;
  padding: 0.5rem 0 !important;
}
.subnav .menu a {
  border: 0.125rem solid transparent;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  padding: 0.5rem 0.75rem;
  margin-right: 0.5rem;
}
.subnav .menu a:hover, .subnav .menu a:focus {
  text-decoration: underline;
}
.subnav .menu .current-menu-item a {
  border-color: #ededed;
  font-weight: 700;
  color: #454142;
  cursor: pointer;
}
.subnav .menu .current-menu-item a:hover, .subnav .menu .current-menu-item a:focus {
  text-decoration: none;
}
/* ==========================================================================
	6.  Advanced Color Tabs
	========================================================================== */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++
		This is located on the about us page.
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.advanced-colored-tabs .uabb-tabs-nav > ul {
  background: #f9f9f9;
  border-style: solid;
  border-color: #ededed;
  border-width: 0.0625rem 0;
}
.advanced-colored-tabs .uabb-tabs-nav > ul > li {
  margin: 0 !important;
}
.advanced-colored-tabs .uabb-tab-link {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem !important;
  background: #f9f9f9;
}
.advanced-colored-tabs .uabb-tab-link::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.5rem 0rem 0.5rem;
  border-color: transparent;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  left: calc(50% - (0.5rem / 2));
  transition: border-color 0.15s linear;
}
.advanced-colored-tabs .uabb-tab-current .uabb-tab-link {
  background: #417640 !important;
  overflow: visible;
}
.advanced-colored-tabs .uabb-tab-current .uabb-tab-link::after {
  border-color: #417640 transparent transparent transparent;
}
.advanced-colored-tabs .uabb-tab-acc-title {
  background: #f9f9f9 !important;
}
.advanced-colored-tabs .uabb-tab-acc-title .uabb-tab-title {
  font-size: 1rem;
  font-weight: 700;
}
.advanced-colored-tabs .uabb-content-current .uabb-tab-acc-title {
  background: #417640 !important;
}
.advanced-colored-tabs .ua-icon {
  display: block;
}
.advanced-colored-tabs .uabb-content-wrap {
  border-bottom: 0.0625rem solid #ededed;
  background: #f7f7f7;
}
@media screen and (min-width: 40em) {
  .advanced-colored-tabs .fl-col-group > .fl-col:first-of-type .fl-module-content {
    margin: 1.25rem 1.25rem 1.25rem 0;
  }
  .advanced-colored-tabs .fl-col-group > .fl-col:last-of-type .fl-module-content {
    margin: 1.25rem 0 1.25rem 1.25rem;
  }
}
/* ==========================================================================
!  Print
	Basic print styles fix page break issues, convert text and background colors to print-friendly

	Hint: to force printers to show background color and use the exact text color, use this CSS property:
	
		-webkit-print-color-adjust: exact; 
		color-adjust: exact; 

	(Note: doesn't work in Firefox if option to "Print Backgrounds" isn't checked in print dialog )
========================================================================== */
.show-for-print {
  display: none !important;
}
html.fl-builder-edit .show-for-print {
  display: block !important;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    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;
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre, blockquote {
    border: 1px solid #DDDDDD;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .adp-cer-item-overview {
    display: none !important;
  }
  .adp-cer-archive-container {
    border-bottom: none !important;
  }
  .adp-cer-equipment-compare-grid-wrapper {
    padding: 0 !important;
  }
  .adp-cer-equipment-compare-grid {
    padding: 0 !important;
    display: grid !important;
    justify-content: center;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  .adp-cer-equipment-compare-grid article.adp-cer-item {
    transform: scale(1);
    display: block;
    width: 100% !important;
    padding: 20px;
    vertical-align: top;
    border: none !important;
  }
  .adp-cer-equipment-compare-grid article.adp-cer-item:hover, .adp-cer-equipment-compare-grid article.adp-cer-item:focus, .adp-cer-equipment-compare-grid article.adp-cer-item:active {
    transform: scale(1);
  }
}
/* ==========================================================================
#
# //////////////////////////////// ADP REACT ////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. App Buttons 

-------------------------------------------*/
/* ==========================================================================
	4.  App Buttons 
	========================================================================== */
.primary-button--app:focus {
  outline: 2px solid #417640;
  outline-offset: 2px;
  border-radius: 3px;
}
.secondary-button--app:focus {
  outline: 2px solid #ffd100;
  outline-offset: 2px;
  border-radius: 3px;
}
.tertiary-button--app:focus {
  outline: 2px solid #222222;
  outline-offset: 2px;
  border-radius: 3px;
}
/* !  Pages — Page-, template-, or group-specific styles. 
	 ------------------------------------------------------------------------------------------------------*/
/* ==========================================================================
#
# /////////////////////////////// HOME ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. General

-------------------------------------------*/
/* ==========================================================================
	1.  General
	========================================================================== */
.mainpage-hero--container .fl-col-group.fl-node-s7ytk3dnh1w8 {
  max-width: 1600px;
  margin: 0 auto;
}
.hero-search--container {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
  padding: 20px;
}
.hero-search--container .search-input--container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-search--container .search-input--group {
  display: flex;
  flex-direction: row;
  border-bottom: solid 3px #ffd100;
  align-items: center;
}
.hero-search--container .search-input--group .title {
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  flex: 1 0 auto;
  margin-right: 10px;
}
.hero-search--container .search-input--group input {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #FFFFFF;
  border-radius: 0;
  flex: 1 1 auto;
  margin-bottom: 0;
  height: 50px;
}
.hero-search--container .search-input--group input::placeholder {
  color: #dddddd;
}
.hero-search--container .search-input--group input:focus, .hero-search--container .search-input--group input:hover {
  outline: none;
  box-shadow: none;
}
.hero-search--container .search-input--group button {
  background: transparent !important;
  border: none;
  flex: 1 0 auto;
  padding: 0 5px;
}
@media screen and (max-width: 39.9375em) {
  .hero-search--container .search-input--group .title {
    font-size: 18px;
  }
  .hero-search--container .search-input--group input {
    font-size: 16px;
  }
  .hero-search--container .search-input--group svg {
    width: 18px;
  }
}
/* ==========================================================================
#
# /////////////////////////////// Blog ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Archive
        2. Sidebar
        3. Singular

-------------------------------------------*/
/* ==========================================================================
	1.  Blog Archive
	========================================================================== */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        This is located on the Blog archive page. It is the overarching class that
        covers contains all of the blogs.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.blog--post-list {
  /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
           This is for the the "Featured Post" used on archive page. We are using JS 
           within the BB Page Layout to hide it on subsequent pages. 
        +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
}
.blog--post-list .fl-post-feed-post {
  border: none;
  background: none;
}
.blog--post-list .blog-post--item-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
@media screen and (max-width: 39.9375em) {
  .blog--post-list .blog-post--item-wrapper {
    flex-direction: column-reverse;
  }
}
.blog--post-list .blog-post--item-wrapper .blog-post--item-image {
  display: block;
  flex: 1 1 25%;
}
.blog--post-list .blog-post--item-wrapper .blog-post--item-image img {
  border-radius: 3px;
}
@media screen and (min-width: 40em) {
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image {
    object-fit: cover;
    width: 250px;
    height: 175px;
  }
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image img.desktop {
    display: block;
    margin-top: 30px;
  }
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image img.mobile {
    display: none;
  }
}
@media screen and (max-width: 39.9375em) {
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image {
    display: block;
    margin: 0 auto 10px;
  }
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image img.desktop {
    display: none;
  }
  .blog--post-list .blog-post--item-wrapper .blog-post--item-image img.mobile {
    display: block;
  }
}
.blog--post-list .blog-post--item-wrapper .blog-post--content {
  flex: 1 1 75%;
  padding-right: 20px;
}
@media screen and (max-width: 39.9375em) {
  .blog--post-list .blog-post--item-wrapper .blog-post--content {
    padding: 0;
  }
}
.blog--post-list .blog-post--item-wrapper .blog-post--content p {
  margin-bottom: 10px;
}
.blog--post-list .blog-post--item-wrapper .blog-post--content .blog-post--item-time {
  display: inline-block;
  background: #222222;
  color: #454142;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 500;
  font-size: 12px;
  padding: 0.2em 0.3em 0.15em;
  margin-bottom: 5px;
}
.blog--post-list .blog-post--item-wrapper .blog-post--item-title {
  margin-bottom: 10px;
  text-transform: none;
}
.blog--post-list.featured-post .fl-post-feed-post {
  border-bottom: solid 1px #f7f7f7;
  padding-bottom: 30px;
}
.blog--post-list.featured-post .blog-post--item-wrapper {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
@media screen and (max-width: 39.9375em) {
  .blog--post-list.featured-post .blog-post--item-wrapper {
    flex-direction: column;
  }
}
.blog--post-list.featured-post .blog-post--item-wrapper .blog-post--item-image {
  flex: 1 1 40%;
  margin-top: 0;
}
.blog--post-list.featured-post .blog-post--item-wrapper .blog-post--item-image img {
  object-fit: cover;
  width: 500px;
  height: 300px;
}
.blog--post-list.featured-post .blog-post--item-wrapper .blog-post--content {
  flex: 1 1 60%;
  padding-right: 20px;
  padding-left: 0;
}
.blog--post-list.featured-post .blog-post--item-wrapper .blog-post--content .blog-post--item-time {
  font-size: 15px;
}
@media screen and (max-width: 39.9375em) {
  .blog--post-list.featured-post .blog-post--item-wrapper .blog-post--content {
    padding-right: 0;
  }
}
.blog--post-list.featured-post .blog-post--item-wrapper .blog-post--item-title {
  font-size: 45px;
}
.blog--post-list .fl-builder-pagination {
  padding: 0.625rem 0;
}
@media screen and (min-width: 40em) {
  .blog--post-list .fl-builder-pagination {
    padding: 1.25rem 0;
  }
}
@media screen and (min-width: 64em) {
  .blog--post-list .fl-builder-pagination {
    padding: 2.5rem 0;
  }
}
.blog--post-list .fl-builder-pagination ul.page-numbers {
  text-align: left;
}
.blog--post-list .fl-builder-pagination a.page-numbers {
  color: #454142;
  background: #fff !important;
  border: none;
  border-bottom: solid 3px transparent;
  border-radius: 0;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.blog--post-list .fl-builder-pagination a.page-numbers:hover, .blog--post-list .fl-builder-pagination a.page-numbers:focus {
  background: transparent !important;
  border-color: #333333;
}
.blog--post-list .fl-builder-pagination span.page-numbers.current {
  background: transparent !important;
  border: none;
  border-bottom: solid 3px #417640;
  font-weight: bold;
}
.blog--post-list .fl-builder-pagination span.page-numbers.dots {
  border: none;
  padding: 5px 0px;
}
/* ==========================================================================
	2. Blog Sidebar
	========================================================================== */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        This is located on the Blog archive page. It is the sidebar on the right 
        and contains a search, categories, archive, and featured post.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.blog--filters {
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 63.9375em) {
  .blog--filters {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 1.25rem !important;
  }
}
.blog--filters .widgettitle {
  font-size: 24px;
  margin-bottom: 0.5rem;
  color: #454142;
}
.blog--filter-subcontainer.last {
  margin-bottom: 1rem;
  margin-top: -0.0625rem;
}
.blog--filter-subcontainer .widget {
  padding-top: 1rem;
}
.blog--filter-subcontainer .widget_categories ul > li {
  display: block;
  border-bottom: solid #f7f7f7 1px;
}
.blog--filter-subcontainer .widget_categories ul > li a {
  display: block;
  position: relative;
  padding: 5px 0 3px;
  color: #417640;
  font-size: 16px;
}
.blog--filter-subcontainer .widget_categories ul > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #ffd100;
  transition: width 300ms ease-in-out;
}
.blog--filter-subcontainer .widget_categories ul > li a:hover, .blog--filter-subcontainer .widget_categories ul > li a:focus {
  color: #539752;
  transition: width 300ms ease-in-out;
}
.blog--filter-subcontainer .widget_categories ul > li a:hover::after, .blog--filter-subcontainer .widget_categories ul > li a:focus::after {
  width: 100%;
  transition: width 300ms ease-in-out;
}
.blog--filter-subcontainer .widget_categories ul > li a[aria-current="page"] {
  font-weight: bold;
  color: #417640;
}
.blog--filter-subcontainer .widget_categories ul > li a[aria-current="page"]::after {
  width: 100%;
  background-color: #417640;
}
.blog--featured-content .fl-post-feed-post {
  border: none;
  background: none;
}
.blog--featured-content .blog-post--item-wrapper {
  display: block;
  margin-bottom: 10px;
}
.blog--featured-content .blog-post--item-wrapper .blog-post--item-title {
  font-size: 16px;
  text-transform: none;
  font-weight: normal;
}
.blog--featured-content .blog-post--item-wrapper .blog-post--item-title a {
  color: #417640;
  text-decoration: none;
}
.blog--yearly-archives ul {
  list-style: none;
  margin: 0;
}
.blog--yearly-archives ul > li {
  display: block;
  border-bottom: solid #f7f7f7 1px;
}
.blog--yearly-archives ul > li a {
  display: block;
  position: relative;
  padding: 5px 0 3px;
  color: #417640;
  font-size: 16px;
}
.blog--yearly-archives ul > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #ffd100;
  transition: width 300ms ease-in-out;
}
.blog--yearly-archives ul > li a:hover, .blog--yearly-archives ul > li a:focus {
  color: #539752;
  transition: width 300ms ease-in-out;
}
.blog--yearly-archives ul > li a:hover::after, .blog--yearly-archives ul > li a:focus::after {
  width: 100%;
  transition: width 300ms ease-in-out;
}
.blog--yearly-archives ul > li a span.count {
  vertical-align: middle;
  font-size: 0.7em;
  color: #757575 !important;
}
.blog--yearly-archives ul > li.current-year a {
  font-weight: bold;
  color: #417640;
}
.blog--yearly-archives ul > li.current-year a span.count {
  color: #757575 !important;
}
.blog--yearly-archives ul > li.current-year a::after {
  width: 100%;
  background-color: #417640;
}
/* ==========================================================================
	3.  Blog Singular
	========================================================================== */
.blog-post-content--container h1, .blog-post-content--container h2, .blog-post-content--container h3, .blog-post-content--container h4, .blog-post-content--container h5, .blog-post-content--container h6 {
  margin: 15px 0 10px;
  text-transform: none !important;
}
.blog-post-content--container h1 {
  font-size: 35px !important;
}
.blog-post-content--container h2 {
  font-size: 28px !important;
}
.blog-post-content--container h3 {
  font-size: 24px !important;
}
.blog-post-content--container h4 {
  font-size: 20px !important;
}
.blog-post-content--container h5 {
  font-size: 18px !important;
}
.blog-post-content--container h6 {
  font-size: 16px !important;
}
.blog-post-content--container button {
  background: #417640 !important;
}
.blog-singular--top-container .hero--breadcrumbs {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-singular--top-container .hero--breadcrumbs * {
  font-size: 14px;
  text-transform: uppercase;
  color: #757575;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        This is located within the blog post. It is the overarching class that
        covers category pills at the bottom of each post.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.blog-post--meta .fl-post-info-terms {
  display: block;
  margin-left: -0.5rem;
}
.blog-post--meta .fl-post-info-terms a {
  display: inline-block;
  background: #417640;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem 0.25rem 0;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
}
.blog-post--meta .fl-post-info-terms a:hover, .blog-post--meta .fl-post-info-terms a:focus {
  opacity: 0.8;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        This is located at the base of the blog post. It shows the the previous 
        and next posts.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.blog-post--navigation .navigation {
  margin: 0 !important;
  padding: 1.25 0 !important;
  border-style: solid;
  border-color: #ededed;
  border-width: 0.0625rem 0;
}
.blog-post--navigation .navigation a {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #454142;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}
.blog-post--navigation .navigation a strong {
  display: block;
  position: relative;
  margin-top: 0.25rem;
  font-family: "Inter Tight", Arial, sans-serif;
  text-transform: none;
  color: #417640;
  font-weight: normal;
  font-size: 16px;
}
.blog-post--navigation .navigation .nav-previous {
  flex: 1 1 50%;
  max-width: 100%;
}
.blog-post--navigation .navigation .nav-previous a {
  text-align: left;
}
.blog-post--navigation .navigation .nav-next {
  flex: 1 1 50%;
  max-width: 100%;
  text-align: left;
}
@media screen and (min-width: 40em) {
  .blog-post--navigation .navigation .nav-next {
    text-align: right;
  }
  .blog-post--navigation .navigation .nav-next a {
    text-align: right;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        This is located at the base of the blog post. It shows the the previous 
        and next posts.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.blog-related--container .fl-post-grid-post {
  border-radius: 3px;
  border: none;
}
.blog-related--container .blog-post--item-column-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-radius: 3px;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--item-image {
  display: block;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--item-image img {
  object-fit: cover;
  width: 100%;
  height: 175px;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--content {
  padding: 20px 0;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--content .blog-post--item-time {
  display: inline-block;
  background: #222222;
  color: #454142;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 500;
  font-size: 12px;
  padding: 0.2em 0.3em 0.15em;
  margin-bottom: 5px;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--content p {
  margin-bottom: 10px;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--content .blog-post--item-link button.fl-button {
  padding-bottom: 0 !important;
  line-height: 1.3;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--item-title {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: none;
}
.blog-related--container .blog-post--item-column-wrapper .blog-post--item-title a {
  color: #000000;
}
/* ==========================================================================
#
# /////////////////////////////// LOCATIONS ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Locaiton Map (Fixes)
        2. Change Preferred Location Modal
		3. Archive Map
        4. Nearby Location Switch (State Locations) 
        5. Singular Location

-------------------------------------------*/
/* ==========================================================================
	1.  Location Map (Fixes)
	========================================================================== */
/* Location Map Pin Popups --------------------------------------------- */
.location-map--container .gm-style-iw-d, .location-map--container .gm-style-iw {
  max-height: 225px !important;
}
.location-map--container .gm-style-iw-chr {
  position: absolute;
  font-size: 11px;
  right: 0;
  top: 0;
}
.location-map--container .gm-style-iw-chr button {
  width: 40px !important;
  height: 40px !important;
}
.location-map--container .marker-popup {
  padding: 15px 20px 0 0;
}
.location-map--container .marker-popup .marker-popup--location-name {
  margin-bottom: 10px !important;
}
.location-map--container .marker-popup .marker-popup--phone {
  margin-bottom: 10px;
}
.location-map--container .marker-popup .marker-popup--store-details, .location-map--container .marker-popup .marker-popup--store-directions {
  text-transform: none;
}
.location-map--container .marker-popup .marker-popup--store-details:hover, .location-map--container .marker-popup .marker-popup--store-directions:hover {
  color: #454142;
}
.location-map--container .marker-container img {
  height: 100%;
  width: 100%;
  max-width: 30px;
}
/* Location Without Filters (On HP and most Subpages) --------------------------------------------- */
#locations-without-filters-map section.locations-without-filters-app {
  overflow: hidden;
  border-radius: 15px;
  border: solid 1px #f7f7f7;
}
#locations-without-filters-map section.locations-without-filters-app .location-map--aside-container {
  position: relative;
  margin-top: 0;
}
#locations-without-filters-map section.locations-without-filters-app .location-map--aside-container .location-list--container {
  height: 367px;
}
#locations-without-filters-map section.locations-without-filters-app .location-map--container {
  margin-left: 0;
}
/* Location State Map (On State Posts ONLY) --------------------------------------------- */
#state-location-map section.state-location-app {
  overflow: hidden;
  border-radius: 15px;
  border: solid 1px #f7f7f7;
}
#state-location-map section.state-location-app .location-map--location-list {
  direction: ltr;
  border-radius: 0;
}
#state-location-map section.state-location-app .location-map--aside-container {
  position: relative;
  margin-top: 0;
  margin-right: 0;
  flex: 1 1 30%;
}
#state-location-map section.state-location-app .location-map--aside-container .location-map--panel {
  padding-bottom: 0;
}
#state-location-map section.state-location-app .location-map--aside-container .preferred-location--container {
  display: block;
}
#state-location-map section.state-location-app .location-map--aside-container .preferred-location--container .preferred-location--title {
  gap: 10px;
}
#state-location-map section.state-location-app .location-map--aside-container .preferred-location--container .preferred-location--content {
  margin: 0;
  padding: 20px 30px;
  background: transparent;
  border-radius: 0;
  border-bottom: none;
}
#state-location-map section.state-location-app .location-map--aside-container .preferred-location--container .preferred-store span {
  background-color: #ffd100 !important;
  border-radius: 15px;
  padding: 2px 5px;
  white-space: nowrap;
}
#state-location-map section.state-location-app .location-map--aside-container .preferred-location--container .preferred-store a {
  color: #417640 !important;
}
@media screen and (max-width: 39.9375em) {
  #state-location-map section.state-location-app .location-map--aside-container .preferred-location--container .location-aside {
    padding-left: 0;
  }
}
#state-location-map section.state-location-app .location-map--aside-container .location-map--location-list-wrapper::before {
  content: "State Locations";
  display: block;
  background: #f7f7f7;
  padding: 5px 20px;
  font-size: 20px;
  font-weight: bold;
}
#state-location-map section.state-location-app .location-map--aside-container .location-list--container {
  display: block;
  height: 367px;
}
#state-location-map section.state-location-app .location-map--container {
  margin-left: 0;
  flex: 1 1 60%;
}
/* Location With Filters (On Location Archive) --------------------------------------------- */
#locations-map section.locations-app {
  overflow: hidden;
  border-radius: 15px;
  border: solid 1px #f7f7f7;
}
#locations-map section.locations-app .location-map--aside-container {
  position: relative;
  margin-top: 0;
}
#locations-map section.locations-app .location-map--aside-container .location-map--location-list::before {
  content: "Locations";
  display: block;
  background: #f7f7f7;
  padding: 5px 20px;
  font-size: 20px;
  font-weight: bold;
}
#locations-map section.locations-app .location-map--aside-container .location-list--container {
  height: 435px;
}
#locations-map section.locations-app .location-map--container {
  margin-left: 0;
}
#locations-map section.locations-app .location-map--container #map {
  height: 100%;
}
@media screen and (min-width: 64em) {
  #locations-map section.locations-app .location-map--container #map {
    min-height: 650px;
  }
}
@media screen and (max-width: 63.9375em) {
  #locations-map section.locations-app .location-map--container #map {
    height: 300px;
  }
}
/* Single Location (On Location Detail) --------------------------------------------- */
#single-location-map .single-location-app {
  overflow: hidden;
  border-radius: 15px;
  background: #FAFAFA;
  padding: 10px;
}
#single-location-map #map {
  height: 200px;
  border-radius: 8px;
}
/* ==========================================================================
	2.  Change Preferred Location Modal (NEW)
	========================================================================== */
.preferred-location-modal-overlay .uabb-modal-close {
  top: 5px;
  right: 5px;
}
.preferred-location--list:first-child {
  border-top: solid 1px #f7f7f7;
}
.preferred-location--list .preferred-location--item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid #f7f7f7;
}
.preferred-location--list .preferred-location--item .fl-button {
  cursor: pointer;
}
.preferred-location--list .preferred-location--item .preferred-location--content {
  padding-right: 20px;
}
@media screen and (max-width: 39.9375em) {
  .preferred-location--list .preferred-location--item {
    flex-direction: column;
    align-items: flex-start;
  }
  .preferred-location--list .preferred-location--item .preferred-location--content {
    padding-right: 0;
  }
}
.preferred-location--list .preferred-location--item.preferred-or-closest-location {
  background-color: #f7f7f7;
}
.preferred-location--list .preferred-location--item.preferred-or-closest-location .preferred-location--button {
  display: none;
}
.preferred-location--list .preferred-location--item.preferred-or-closest-location .selected-location-indicator {
  display: inline-block;
  font-size: 14px;
  font-style: italic;
  padding: 0 5px;
  background: #417640;
  line-height: 1.3;
  color: #FFFFFF;
}
.preferred-location--list .preferred-location--title {
  margin-bottom: 0;
  font-size: 18px;
}
.preferred-location--list .preferred-location--title a {
  color: #000000;
}
.preferred-location--list .preferred-location--lt {
  display: block;
  font-size: 14px;
  font-style: italic;
}
.preferred-location--list .preferred-location--address {
  margin-bottom: 0;
  font-style: normal;
}
/* ==========================================================================
	3. Map General Styles
	========================================================================== */
section.location-map--wrapper aside.location-map--aside-container .location-map--filters {
  background: #FFFFFF;
  box-shadow: none;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--filters::before {
  content: "Filter Locations";
  font-size: 30px;
  font-weight: bold;
  padding: 20px;
  display: block;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--filters .search-group {
  padding: 0 20px 20px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--filters .search-group .search-group--input {
  border-radius: 15px 0 0 15px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--filters .search-group .search-group--button {
  border-radius: 0 15px 15px 0 !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--filters .search-group .search-group--button:focus {
  outline: none !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--search-container {
  margin-bottom: 0;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--search-container .custom-select {
  background: #FAFAFA !important;
  color: #7a7274 !important;
  border: none !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--search-container .custom-select--popup .custom-select--listbox {
  color: #7a7274 !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--search-container .search-group--button.primary-button--app {
  background: #417640 !important;
  border-color: #417640 !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--search-container .search-group--button.primary-button--app svg path {
  fill: #FFFFFF !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout {
  background: #FFFFFF !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout .preferred-location--container .preferred-location--title {
  background: #FFFFFF;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout .preferred-location--container .preferred-location--title .heading-post-title {
  text-transform: none !important;
  letter-spacing: 0;
  font-weight: bold;
  background-color: #417640;
  color: #FFFFFF;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 15px;
  padding: 5px 10px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout .preferred-location--container .preferred-location--address {
  font-style: normal;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout .preferred-location--container .preferred-location--phone {
  font-weight: bold;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--preferred-location-callout .preferred-location--container .preferred-location--links * {
  font-size: 16px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list {
  background: #FFFFFF;
  box-shadow: none;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-map--section-title {
  background: #f7f7f7;
  border-bottom: none !important;
  font-size: 18px;
  color: #222222;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item {
  border-bottom-color: #f7f7f7 !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-details {
  position: relative;
  padding-left: 20px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-details::before {
  content: "";
  position: absolute;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/location-pin-green.svg');
  width: 20px;
  height: 20px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 4px;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-aside .preferred-store span {
  background-color: #ffd100 !important;
  border-radius: 15px;
  padding: 2px 5px;
  white-space: nowrap;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-aside .preferred-store a {
  color: #417640 !important;
}
section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item:nth-child(odd) {
  background: #FAFAFA;
}
@media screen and (max-width: 475px) {
  section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item {
    flex-direction: column;
  }
  section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item > * {
    flex: 1 1 auto;
  }
  section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-aside {
    flex-direction: column;
    justify-content: left;
  }
  section.location-map--wrapper aside.location-map--aside-container .location-map--location-list .location-list--item .location-phone a::before {
    content: none;
  }
}
section.location-map--wrapper.map-without-filters-app .location-map--location-list .location-map--section-title {
  background: #417640 !important;
  color: #FFFFFF;
}
section.location-map--wrapper.map-without-filters-app .location-map--location-list .primary-button--app {
  background: linear-gradient(180deg, #387c2b 30%, #3c852e 113.11%) !important;
  border-color: #387c2b !important;
  font-size: 12px !important;
}
/* ==========================================================================
	4. Nearby Location Switch (State Locations)
	========================================================================== */
.nearby-locations-switch {
  margin-top: 5px;
  /* The switch - the box around the slider */
  /* The slider */
  /* Rounded sliders */
}
.nearby-locations-switch .switch-label {
  font-size: 16px;
  font-weight: bold;
}
.nearby-locations-switch .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}
.nearby-locations-switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.nearby-locations-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.nearby-locations-switch .slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.nearby-locations-switch input:checked + .slider {
  background-color: #417640;
}
.nearby-locations-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.nearby-locations-switch input:focus + .slider {
  box-shadow: 0 0 1px #417640;
}
.nearby-locations-switch .slider.round {
  border-radius: 34px;
}
.nearby-locations-switch .slider.round:before {
  border-radius: 25px;
}
.nearby-locations-modal .confirm {
  background-color: #417640;
}
/* ==========================================================================
	5.  Singular Location
	========================================================================== */
.location-contact-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-contact-list-item .phone-number {
  font-size: 18px;
  font-weight: bold;
}
.location-contact-list-item .phone-number.large {
  font-size: 25px;
}
.location-contact-list-item .phone-number a {
  color: #454142;
}
.location-container--info {
  background: #FAFAFA;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 20px;
}
.location-container--info .location-address {
  flex: 1 1 auto;
}
.location-container--info .location-address address {
  font-style: normal;
  margin-bottom: 0;
}
.location-container--info .location-address .get-directions-link {
  font-size: 16x;
}
.location-container--info .location-hours {
  flex: 1 1 auto;
}
.location-container--info .location-hours ul {
  margin: 0;
  list-style: none;
}
.location-container--info .location-hours strong {
  margin-right: 5px;
}
@media screen and (max-width: 39.9375em) {
  .location-container--info {
    flex-direction: column;
  }
}
.location-photo--container {
  background: #FAFAFA;
  border-radius: 15px;
  padding: 10px;
}
.location-photo--container .location-background-photo {
  background-repeat: no-repeat;
  height: 200px;
  width: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
.location-contact--item-container {
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: solid 1px #eeeeee;
  display: flex;
}
.location-contact--item-container .contact-title-name {
  flex: 1 1 auto;
}
.location-contact--item-container .contact-title-name h5 {
  font-size: 22px;
  color: #454142;
}
.location-contact--item-container .contact-email {
  flex: 0 1 auto;
}
/* ==========================================================================
#
# /////////////////////////////// PAGES ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Search Results
		2. Parts JD Search
		3. Parts Dropbox Google Map
		4. Inpsections
		5. Tractor Packages
		6. Site Search

-------------------------------------------*/
/* ==========================================================================
	1.  Search Results
	========================================================================== */
.search--app-container .adp--search-results .adp--search-result-group {
  border-top: solid 1px #f7f7f7;
  padding: 20px 0;
}
.search--app-container .adp--search-results .adp--search-result-group:first-child {
  border-top: 0;
}
.search--app-container .adp--search-results .adp--search-result-group .adp--search-result-title {
  text-transform: none;
  margin-bottom: 5px;
}
.search--app-container .adp--search-results .adp--search-result-group .adp--search-result-title a {
  color: #454142;
}
.search--app-container .adp--search-results .adp--search-result-group .adp--search-result-description {
  margin-bottom: 10px;
}
.search--app-container .pagination {
  margin: 30px 0;
}
.search--app-container .pagination button {
  background: transparent;
  padding: 5px 8px;
  margin: 0 2px;
  line-height: 1.1;
}
.search--app-container .pagination button.current {
  background: #f7f7f7;
  border-radius: 3px;
}
/* ==========================================================================
	2.  Parts JD Search
	========================================================================== */
.john-deere-parts-search {
  padding: 20px;
  background: #417640;
  display: flex;
  border-radius: 15px;
}
.john-deere-parts-search .john-deere-parts-search--button {
  flex: 0 0 auto;
}
.john-deere-parts-search .john-deere-parts-search--button a {
  height: 59.39px;
  display: flex;
  align-items: center;
  border-radius: 0 15px 15px 0 !important;
}
.john-deere-parts-search .john-deere-parts-search--input {
  flex: 1 1 auto;
  margin-bottom: 0;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 39.9375em) {
  .john-deere-parts-search {
    flex-direction: column;
    gap: 20px;
  }
  .john-deere-parts-search .john-deere-parts-search--button {
    flex: 1 1 auto;
  }
  .john-deere-parts-search .john-deere-parts-search--button a {
    border-radius: 15px !important;
    display: block;
    line-height: 1.5;
  }
  .john-deere-parts-search .john-deere-parts-search--input {
    flex: 1 1 auto;
    border-radius: 15px;
  }
}
/* ==========================================================================
	3.  Parts Dropbox Google Map
	========================================================================== */
.parts-dropbox-google-map iframe {
  border-radius: 15px;
}
/* ==========================================================================
	4.  Inpsections
	========================================================================== */
.heritage-table--container {
  border: none;
}
.heritage-table--container thead tr:first-child {
  text-align: left;
}
.heritage-table--container thead th:last-child {
  border-right: none;
}
.heritage-table--container thead th {
  color: #417640;
}
@media screen and (max-width: 39.9375em) {
  .heritage-table--container thead {
    display: none;
  }
}
.heritage-table--container tbody tr:nth-child(odd) {
  background: #FAFAFA;
}
.heritage-table--container tbody th {
  text-align: left;
}
.heritage-table--container tbody th span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 40em) {
  .heritage-table--container tbody tr:last-child td, .heritage-table--container tbody tr:last-child th {
    border-bottom: none;
  }
  .heritage-table--container tbody td:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 39.9375em) {
  .heritage-table--container tbody tr {
    display: flex;
    flex-direction: column;
  }
  .heritage-table--container tbody td, .heritage-table--container tbody th {
    display: block;
    flex: 1 1 auto;
  }
  .heritage-table--container tbody td::before, .heritage-table--container tbody th::before {
    content: attr(data-title);
    display: block;
    font-size: 12px;
    color: #417640;
    text-decoration: none;
    font-weight: bold;
  }
}
.heritage-table--container .highlight {
  background: rgba(255, 209, 0, 0.15);
}
.heritage-table--container .crossout {
  text-decoration: line-through;
  color: #ff2c5d;
}
/* ==========================================================================
	5.  Tractor Packages
	========================================================================== */
/* Archive ----------------------------------------------  */
.tractor-package--list-item {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-top: solid 1px #FAFAFA;
}
.tractor-package--item-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tractor-package--item-container .tractor-package--image {
  display: block;
  height: 250px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.tractor-package--item-container .tractor-package--content {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.tractor-package--item-container .tractor-package--content .title {
  margin-bottom: 10px;
}
.tractor-package--item-container .tractor-package--content .title a {
  font-size: 30px;
  color: #454142;
}
.tractor-package--item-container .tractor-package--content .package-details {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.tractor-package--item-container .tractor-package--content .package-details .included {
  flex: 1 1 auto;
}
.tractor-package--item-container .tractor-package--content .package-details .included::before {
  content: "Included:";
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #454142;
  margin-bottom: 5px;
}
.tractor-package--item-container .tractor-package--content .package-details .included ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tractor-package--item-container .tractor-package--content .package-details .included li {
  display: inline-block;
  background: #f7f7f7;
  font-size: 14px;
  border-radius: 15px;
  padding: 4px 10px;
}
.tractor-package--item-container .tractor-package--content .package-details .monthly-cost {
  flex: 0 1 auto;
  font-size: 22px;
}
.tractor-package--item-container .tractor-package--content .package-details .monthly-cost span {
  font-size: 18px;
}
.tractor-package--item-container .cta-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
}
.tractor-package--item-container .cta-group .financing, .tractor-package--item-container .cta-group .contact {
  flex: 1 1 auto;
}
.tractor-package--item-container .cta-group .financing .fl-button, .tractor-package--item-container .cta-group .contact .fl-button {
  width: 100%;
}
.tractor-package--carousel .tractor-package--carousel-item {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 10px;
  border-top: solid 1px #FAFAFA;
}
/* Singular Template ------------------------------------------------ */
.tractor-package-pricing--container .price {
  font-size: 30px;
}
@media screen and (max-width: 63.9375em) {
  .tractor-package-pricing--container .price {
    font-size: 24px;
  }
}
.tractor-package-pricing--container .monthly-payment span {
  font-weight: bold;
}
.tractor-package-pricing--container .heritagegard-pricing {
  margin: 10px 0;
  padding: 20px 0;
  border-top: solid 1px #f7f7f7;
  border-bottom: solid 1px #f7f7f7;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
.tractor-package-pricing--container .heritagegard-pricing .text {
  flex: 1 1 auto;
}
.tractor-package-pricing--container .heritagegard-pricing .image {
  flex: 0 1 auto;
  max-width: 150px;
}
@media screen and (min-width: 75em) {
  .tractor-package-pricing--container .heritagegard-pricing .image {
    max-width: 200px;
  }
}
.tractor-package-pricing--container .heritagegard-pricing .price {
  font-size: 18px;
  font-weight: bold;
  color: #417640;
}
.tractor-package-pricing--container .heritagegard-pricing .pretext {
  display: block;
  font-size: 16px;
  font-style: italic;
  color: #417640;
}
.tractor-package-pricing--container .heritagegard-pricing .posttext {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .tractor-package-pricing--container .heritagegard-pricing {
    flex-direction: column;
  }
}
@media screen and (max-width: 39.9375em) {
  .tractor-package-pricing--container .heritagegard-pricing {
    flex-direction: column;
  }
}
.tractor-package--includes h5 {
  font-size: 24px;
  color: #454142;
  margin-bottom: 20px;
}
.tractor-package--includes ul {
  margin-left: 22px;
  margin-bottom: 0;
}
.tractor-package--includes .list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 39.9375em) {
  .tractor-package--includes .list-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ==========================================================================
	6. Site Search
	========================================================================== */
.heritage-search-input-container {
  background: #222222;
  padding: 20px;
  margin: 0 10px 50px;
}
.heritage-search-results-container {
  max-width: 1400px;
  margin: 0 auto 100px;
  padding: 20px;
}
.heritage-search-app .heritage-search-input {
  height: 75px;
  font-size: 24px;
  margin-bottom: 50px;
  max-width: 1400px;
  margin: 0 auto;
}
.heritage-search-app .heritage-search-section-title {
  font-size: 40px;
}
.heritage-search-app .heritage-search-section-title .count {
  font-size: 18px;
  color: #454142;
  background: #ffd100;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: normal;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 63.9375em) {
  .heritage-search-app .heritage-search-section-title {
    font-size: 24px;
  }
  .heritage-search-app .heritage-search-section-title .count {
    font-size: 14px;
  }
}
.heritage-search-app .heritage-search-section-used, .heritage-search-app .heritage-search-section-new, .heritage-search-app .heritage-search-section-siteContent {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #f7f7f7;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results, .heritage-search-app .heritage-search-section-new .heritage-search-section-results, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 75em) {
  .heritage-search-app .heritage-search-section-used .heritage-search-section-results, .heritage-search-app .heritage-search-section-new .heritage-search-section-results, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .heritage-search-app .heritage-search-section-used .heritage-search-section-results, .heritage-search-app .heritage-search-section-new .heritage-search-section-results, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .heritage-search-app .heritage-search-section-used .heritage-search-section-results, .heritage-search-app .heritage-search-section-new .heritage-search-section-results, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-top: solid 1px #FAFAFA;
  overflow: hidden;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-link, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-link, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper {
  border-bottom: solid 5px #417640;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper img, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper img, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-image-wrapper img {
  object-fit: cover;
  height: 175px;
  width: 100%;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-content, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-content, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-content {
  padding: 20px;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title {
  font-size: 40px;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-content.no-image .heritage-search-item-title {
    font-size: 35px;
  }
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-title, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-title, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-title {
  font-size: 24px;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-meta, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-meta, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: solid 1px #f7f7f7;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-meta span, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-meta span, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-meta span {
  color: #454142;
  background: #f7f7f7;
  border-radius: 15px;
  font-size: 14px;
  padding: 2px 5px;
  display: inline-block;
  flex: 0 1 auto;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-specs, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-specs, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-specs {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  border-top: solid 1px #f7f7f7;
  padding-top: 10px;
  margin-top: 10px;
  align-items: center;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-specs *, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-specs *, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-specs * {
  color: #454142;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-price, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-price, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-price {
  font-weight: 700;
  font-size: 22px;
  flex: 1 1 auto;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours {
  display: flex;
  gap: 20px;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .year::before, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .year::before, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .year::before {
  content: "Year";
  display: block;
  color: #454142;
  font-weight: bold;
  font-size: 14px;
}
.heritage-search-app .heritage-search-section-used .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .hours::before, .heritage-search-app .heritage-search-section-new .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .hours::before, .heritage-search-app .heritage-search-section-siteContent .heritage-search-section-results .heritage-search-item .heritage-search-item-year-hours .hours::before {
  content: "Hours";
  display: block;
  color: #454142;
  font-weight: bold;
  font-size: 14px;
}
.heritage-search-app .heritage-search-pagination button.heritage-search-page-btn {
  font-size: 14px;
  height: 32px;
  min-width: 32px;
  color: #454142;
  border-radius: 0;
  font-weight: normal;
  border: none;
  border-bottom: solid 2px transparent;
  display: inline-block;
  padding: 1px 2px 1px;
  margin: 0 5px;
  transition: all 500ms ease-in-out;
}
.heritage-search-app .heritage-search-pagination button.heritage-search-page-btn:not(.active):hover {
  border-color: #417640;
  background: transparent;
  transition: all 500ms ease-in-out;
}
.heritage-search-app .heritage-search-pagination button.heritage-search-page-btn:not(.active):active, .heritage-search-app .heritage-search-pagination button.heritage-search-page-btn:not(.active):focus {
  background: transparent;
}
.heritage-search-app .heritage-search-pagination button.heritage-search-page-btn.active {
  padding: 1px 10px 1px;
  background: #417640;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 50px;
  border-bottom: solid 2px #417640;
  white-space: nowrap;
}
.heritage-search-app .heritage-search-pagination button.heritage-search-page-btn.active::before {
  content: "Page: ";
}
/* ==========================================================================
	7. Specials Archive
	========================================================================== */
.specials-items--wrappers {
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.specials-item--container h3 {
  margin-bottom: 10px;
}
.specials-item--container h3 .pill span {
  font-weight: 700;
}
.specials-item--container h3 > a {
  color: #454142;
  font-size: 35px;
}
.specials-item--container .specials-description p {
  margin-bottom: 10px;
}
/* No Payment No Interest -- Quick Fix */
.fl-node-a3kfnezbl8g6, .fl-node-lforvk08txsq {
  margin-left: 0;
  margin-right: 0;
}
/* ==========================================================================
#
# //////////////////////////// EQUIPMENT  ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Slider for Inventory, Catalog & Rentals 
		2. Content Tabs for Inventory, Catalog & Rentals 
		3. Detail Pages - General Components
		4. Detail Print Styles for Inventory, Catalog & Rentals 
		5. Equipment Content Tabs for Catalog
		6. Spec Filters for Catalog
		7. Image Dialog Button for Inventory, Catalog, & Rentals
		8. Related Equipment Slider for Inventory, & Catalog
		9. Pagination
		10. Compare Popup
		11. Compare Container

-------------------------------------------*/
/* ==========================================================================
	1.  Slider for Inventory, Catalog & Rentals 
	========================================================================== */
@media screen and (min-width: 40em) {
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-image img {
    object-fit: contain;
    width: 100%;
    height: 450px;
  }
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-thumbnail {
  padding: 5px;
  width: 300px;
  height: 100px;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-image-dialog-button {
  border: none !important;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main {
  border-bottom: solid 1px #f7f7f7;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-arrow::before {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-prev::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-left.svg');
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-next::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-right.svg');
}
@media screen and (max-width: 39.9375em) {
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-arrow {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    width: 30px;
    height: 35px;
    z-index: 1;
  }
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-prev {
    left: 0;
  }
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--main .slick-next {
    right: 0;
  }
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb {
  /* FIX ==================================  */
  /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
				This fixes the issue when there are less thumbnails than asked to show
				through the JS init. There is a method that is used to determine the count and
				then appends the classes and count to the track.
				+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .equipment-item-thumbnail {
  cursor: pointer;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .equipment-item-thumbnail img {
  border-radius: 8px;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .equipment-item-thumbnail.slick-current img {
  border: solid 1px #ffd100;
}
@media screen and (min-width: 576px) {
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-6, .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-5 {
    left: 0 !important;
    transform: none !important;
  }
}
@media screen and (min-width: 576px) {
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-4 {
    left: 0 !important;
    transform: none !important;
  }
}
@media screen and (max-width: 575px) and (min-width: 401px) {
  .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-4 {
    left: 0 !important;
    transform: none !important;
  }
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-3, .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-2, .equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-track.to-few.slide-count-1 {
  left: 0 !important;
  transform: none !important;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-arrow::before {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-size: contain;
  opacity: 0.5;
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-prev::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-left.svg');
}
.equipment-item-slider--wrapper .equipment-item-slider .equipment-item-slider--thumb .slick-next::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-right.svg');
}
.equipment-item-slider--wrapper .equipment-item-no-slider {
  margin: 0 auto;
  display: table;
}
/* ==========================================================================
	2.  Content Tabs for Inventory, Catalog & Rentals 
	========================================================================== */
.equipment-content-tabs .single-tab-title {
  margin-bottom: 20px;
}
.equipment-content-tabs ul.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  margin-bottom: 20px;
  list-style: none;
}
.equipment-content-tabs ul.nav-tabs.hide-nav {
  display: none;
}
.equipment-content-tabs ul.nav-tabs li.nav-item a.nav-link {
  cursor: pointer;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #7a7274;
  font-weight: 600;
  display: inline-block;
  padding: 9px 18px;
  border: solid 1px #dddddd;
  border-radius: 50px;
  transition: all 300ms ease-in-out;
}
.equipment-content-tabs ul.nav-tabs li.nav-item a.nav-link:hover {
  border-color: #ffd100;
  color: #454142;
  transition: all 300ms ease-in-out;
}
.equipment-content-tabs ul.nav-tabs li.nav-item a.nav-link.active {
  border-color: #ffd100;
  color: #454142;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .equipment-content-tabs ul.nav-tabs {
    justify-content: center;
  }
}
.equipment-content-tabs div.tab-content {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 15px;
}
@media screen and (max-width: 39.9375em) {
  .equipment-content-tabs div.tab-content {
    padding: 10px;
  }
}
.equipment-content-tabs div.tab-content .tab-pane {
  max-width: 1500px;
  margin: 0 auto;
  display: none;
}
.equipment-content-tabs div.tab-content .tab-pane.show {
  display: block;
}
.equipment-content-tabs div.tab-content .tab-pane table {
  border: none;
}
.equipment-content-tabs div.tab-content .tab-pane table thead tr {
  background: #dedede !important;
}
.equipment-content-tabs div.tab-content .tab-pane table thead th {
  border-bottom: solid 2px #f7f7f7 !important;
}
.equipment-content-tabs div.tab-content .tab-pane table thead + tbody tr:nth-child(odd) {
  background: transparent;
}
.equipment-content-tabs div.tab-content .tab-pane table thead + tbody tr:nth-child(even) {
  background: #efefef;
}
.equipment-content-tabs div.tab-content .tab-pane table thead + tbody td {
  border-right: solid 2px #f7f7f7 !important;
}
.equipment-content-tabs div.tab-content .tab-pane table thead + tbody:last-child {
  border-right: none;
}
.equipment-content-tabs div.tab-content .tab-pane table tr {
  border: none;
}
.equipment-content-tabs div.tab-content .tab-pane table tr:nth-child(odd) {
  background: #efefef;
}
.equipment-content-tabs div.tab-content .tab-pane table tr td, .equipment-content-tabs div.tab-content .tab-pane table tr th {
  border: none;
  padding: 20px;
}
.equipment-content-tabs div.tab-content .tab-pane table tr th {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: left;
  border-right: solid 2px #f7f7f7;
}
@media screen and (max-width: 39.9375em) {
  .equipment-content-tabs div.tab-content .tab-pane table tr {
    display: flex;
    flex-direction: column;
  }
  .equipment-content-tabs div.tab-content .tab-pane table tr td, .equipment-content-tabs div.tab-content .tab-pane table tr th {
    display: block;
    flex: 1 1 auto;
    border: none;
  }
}
@media screen and (max-width: 39.9375em) {
  .equipment-content-tabs div.tab-content .tab-pane table colgroup {
    display: none;
  }
  .equipment-content-tabs div.tab-content .tab-pane table caption {
    color: #417640;
    font-size: 20px;
  }
}
.equipment-content-tabs div.tab-content .tab-pane .equipment-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.equipment-content-tabs div.tab-content .tab-pane .equipment-features ul li {
  padding: 20px;
}
.equipment-content-tabs div.tab-content .tab-pane .equipment-features ul li:nth-child(odd) {
  background: #efefef;
}
.header-print-only--closest-location .header-print-only--label {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.header-print-only--closest-location .header-print-only--location-name, .header-print-only--closest-location .header-print-only--location-number {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
}
/* ==========================================================================
	3.  Detail Pages - General Components
	========================================================================== */
.catalog-pricing--container .price {
  font-size: 30px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
		This includes the the print and email links on the inventory
		detail pages
	+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.inventory-item-title {
  color: #454142;
}
.inventory-item-title small {
  display: block;
  font-size: 24px;
}
.catalog-item-title {
  color: #454142;
}
.equipment-page-control a {
  display: inline-block;
  margin-right: 20px;
}
.equipment-page-control svg {
  position: relative;
  top: 3px;
  width: 15px;
  height: 15px;
}
.equipment-page-control span {
  text-decoration: underline;
  font-size: 14px;
}
.equipment-price {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  padding: 10px 0 0;
}
.equipment-price .no-price {
  font-style: italic;
  padding: 10px 0 0;
}
.equipment-location-phone {
  padding-left: 20px;
}
.equipment-location-phone a {
  font-weight: bold;
}
.equipment-location-label {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.equipment-location--container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (1023px <= width <= 1275px) {
  .equipment-location--container {
    grid-template-columns: repeat(1, 1fr);
  }
  .equipment-location--container address br {
    display: none;
  }
}
@media screen and (width <= 475px) {
  .equipment-location--container {
    grid-template-columns: repeat(1, 1fr);
  }
  .equipment-location--container address br {
    display: none;
  }
}
.equipment-location--container .equipment-location-info {
  padding: 0 20px;
}
.equipment-location--container .equipment-location-info .equipment-location-title a {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
}
.equipment-location--container .equipment-location-info .equipment-location-address address {
  font-style: normal;
  margin-bottom: 0;
}
.equipment-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.equipment-quick-stats > [class^="equipment"] {
  display: table;
}
.equipment-quick-stats > [class^="equipment"]:nth-child(4n+1), .equipment-quick-stats > [class^="equipment"]:nth-child(4n+2) {
  background: #FAFAFA;
}
.equipment-quick-stats > [class^="equipment"] strong, .equipment-quick-stats > [class^="equipment"] span {
  display: table-cell;
  padding: 10px;
  font-size: 16px;
  vertical-align: middle;
}
.equipment-quick-stats > [class^="equipment"] strong {
  width: 100px;
}
.equipment-quick-stats > [class^="equipment"] span {
  line-height: 1.1;
}
@media screen and (max-width: 475px) {
  .equipment-quick-stats {
    grid-template-columns: repeat(1, 1fr);
  }
  .equipment-quick-stats > [class^="equipment"]:nth-child(odd) {
    background: #efefef;
  }
  .equipment-quick-stats > [class^="equipment"]:nth-child(even) {
    background: transparent;
  }
}
.equipment-description.top {
  font-size: 14px;
}
.equipment-description.top h1, .equipment-description.top h2, .equipment-description.top h3 {
  font-size: 22px !important;
  margin-bottom: 10px;
}
.equipment-description.top h4, .equipment-description.top h5, .equipment-description.top h6 {
  font-size: 20px !important;
  margin-bottom: 10px;
}
.equipment-description.top ul {
  margin: 0 20px 20px;
  padding: 0;
}
.equipment-description.top ul li {
  padding: 2px 0;
}
.equipment-post-description h3.section-title {
  color: #454142;
  font-size: 24px;
  margin-bottom: 20px;
}
.equipment-post-description h1, .equipment-post-description h2, .equipment-post-description h3:not(.section-title) {
  font-size: 22px !important;
  margin-bottom: 10px;
}
.equipment-post-description h4, .equipment-post-description h5, .equipment-post-description h6 {
  font-size: 20px !important;
  margin-bottom: 10px;
}
.equipment-post-description ul {
  margin: 0 20px 20px;
  padding: 0;
}
.equipment-post-description ul li {
  padding: 2px 0;
}
.equipment-post-description table {
  border: none;
}
.equipment-post-description table thead tr {
  background: #dedede !important;
}
.equipment-post-description table thead th {
  border-bottom: solid 2px #f7f7f7 !important;
}
.equipment-post-description table thead + tbody tr:nth-child(odd) {
  background: transparent;
}
.equipment-post-description table thead + tbody tr:nth-child(even) {
  background: #efefef;
}
.equipment-post-description table thead + tbody td {
  border-right: solid 2px #f7f7f7 !important;
}
.equipment-post-description table thead + tbody:last-child {
  border-right: none;
}
.equipment-post-description table tr {
  border: none;
}
.equipment-post-description table tr:nth-child(odd) {
  background: #efefef;
}
.equipment-post-description table tr td, .equipment-post-description table tr th {
  border: none;
  padding: 10px;
  font-size: 16px;
}
.equipment-post-description table tr th {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: left;
  border-right: solid 2px #f7f7f7;
}
.equipment-features--container h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #454142;
}
.equipment-features--container ul {
  margin: 0 20px;
  padding: 0;
}
.equipment-features--container ul li {
  padding: 2px 0;
}
.equipment-specs--container h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #454142;
}
.equipment-specs--container table {
  border: none;
}
.equipment-specs--container table tr {
  border: none;
}
.equipment-specs--container table tr:nth-child(odd) {
  background: #efefef;
}
.equipment-specs--container table tr td, .equipment-specs--container table tr th {
  border: none;
  padding: 10px;
  font-size: 16px;
}
.equipment-specs--container table tr th {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: left;
  border-right: solid 2px #f7f7f7;
}
.equipment-description--container h3.section-title {
  color: #454142;
}
.equipment-description--container h1, .equipment-description--container h2, .equipment-description--container h3 {
  font-size: 36px !important;
  margin-bottom: 10px;
}
.equipment-description--container h4, .equipment-description--container h5, .equipment-description--container h6 {
  font-size: 32px !important;
  margin-bottom: 10px;
}
.equipment-description--container ul {
  margin: 0 20px 20px;
  padding: 0;
}
.equipment-description--container ul li {
  padding: 2px 0;
}
.equipment-links--container a {
  font-weight: bold;
  display: block;
  text-align: right;
  font-size: 16px;
}
@media screen and (max-width: 39.9375em) {
  .equipment-links--container a {
    text-align: left;
  }
}
.equipment-info--container h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.equipment-info--container table {
  border: none;
}
.equipment-info--container table tr {
  border: none;
}
.equipment-info--container table tr:nth-child(odd) {
  background: #f2f2f2;
}
.equipment-info--container table tr td, .equipment-info--container table tr th {
  border: none;
  padding: 10px;
  font-size: 16px;
}
.equipment-info--container table tr th {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: left;
  border-right: solid 2px #f7f7f7;
}
.equipment-pricing--container h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.equipment-pricing--container ul {
  margin: 0 0 20px;
  padding: 20px;
  list-style: none;
  border-top: solid 1px #f7f7f7;
  border-bottom: solid 1px #f7f7f7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 39.9375em) {
  .equipment-pricing--container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.equipment-pricing--container ul li {
  padding: 2px 0;
}
.equipment-pricing--container ul strong::before {
  content: "$";
}
/* ==========================================================================
	4. Detail Print Styles for Inventory, Catalog & Rentals 
	========================================================================== */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
		These print styles are unique since the themer itself displays the print styles.
	++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.equipment-location-info.print-view .equipment-location-phone, .equipment-location-info.print-view .equipment-location-address, .equipment-location-info.print-view .equipment-location-title {
  padding-left: 0;
}
.equipment-quick-stats.print-view {
  grid-template-columns: repeat(1, 1fr);
}
.equipment-quick-stats.print-view > [class^="equipment"] {
  background: transparent !important;
  border-bottom: solid 1px #eeeeee;
}
.equipment-quick-stats.print-view > [class^="equipment"]:last-child {
  border-bottom: none;
}
.equipment-specifications.print-view th {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: left;
}
.equipment-price .no-price {
  padding-left: 0 !important;
}
.equipment-gallery-images.print-view {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
.equipment-features.print-view ul {
  margin-left: 15px;
}
@media print {
  header.site-header {
    display: none;
  }
  .print--break {
    page-break-after: always;
  }
  .print--avoid-break {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .equipment-quick-stats {
    display: block;
  }
}
/* ==========================================================================
	5. Equipment Content Tabs for Catalog
	========================================================================== */
.equipment-content-tabs {
  /* Header/title styling */
  /* Standard image wrapper */
  /* Clear floats after image + text blocks */
  /* Captions */
  /* Paragraphs and content spacing */
}
.equipment-content-tabs .featured-content-title-group {
  font-size: 20px;
  border-bottom: solid 2px #efefef;
  margin: 20px 0;
  padding-bottom: 10px;
}
.equipment-content-tabs button.accordion-header {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-size: 18px;
  border: none;
  font-weight: bold;
  text-transform: none;
  text-align: left;
  background: #417640;
  width: 100%;
  border-radius: 0;
  padding: 20px 50px 20px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.equipment-content-tabs button.accordion-header::after {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-right-yellow.svg');
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 20px;
  top: 35%;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.equipment-content-tabs button.accordion-header.active {
  background: #539752;
  transition: background 0.3s ease-in-out;
}
.equipment-content-tabs button.accordion-header.active::after {
  transform: rotate(400deg);
  transition: transform 0.3s ease-in-out;
}
.equipment-content-tabs .seccion-images {
  margin: 1rem 0;
}
.equipment-content-tabs .seccion-images img {
  max-width: 300px;
  height: auto;
  margin: 0 1rem 1rem 0;
  border-radius: 4px;
  /* Responsive tweak */
}
@media (max-width: 768px) {
  .equipment-content-tabs .seccion-images img {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
  }
}
.equipment-content-tabs .seccion-images::after {
  content: "";
  display: table;
  clear: both;
}
.equipment-content-tabs .caption {
  font-size: 0.875rem;
  color: #555;
  display: block;
  margin-top: 0.25rem;
  font-style: italic;
}
.equipment-content-tabs .accordion-item {
  margin-bottom: 2px;
  line-height: 1.6;
}
.equipment-content-tabs .accordion-item p, .equipment-content-tabs .accordion-item ul, .equipment-content-tabs .accordion-item h5 {
  margin-bottom: 1rem;
}
.equipment-content-tabs .accordion-item ul {
  padding-left: 1.25rem;
  list-style-type: disc;
  margin-left: 30px;
}
.equipment-content-tabs .accordion-item ul ul {
  margin-top: 10px;
  margin-left: 10px;
  list-style: circle;
}
.equipment-content-tabs .accordion-item ul ul li * {
  font-size: 0.9rem;
}
.equipment-content-tabs .accordion-item h5 {
  margin-top: 2rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 39.9375em) {
  .equipment-content-tabs .accordion-item ul {
    padding-left: 0rem;
    margin-left: 24px;
  }
}
.equipment-content-tabs .accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 10px 30px 30px;
  background: #eae9e9;
}
/* ==========================================================================
	6. Spec Filters for Catalog
	========================================================================== */
.tab-filters {
  border-bottom: solid 2px #DDDDDD;
  margin-bottom: 30px;
  padding-bottom: 20px;
  display: flex;
  justify-content: left;
  gap: 0 20px;
}
.tab-filters .tab-filter-text {
  font-size: 14px;
  line-height: 1.2;
}
.tab-filters .tab-filter-text strong {
  display: block;
  font-size: 18px;
}
.tab-filters select {
  margin-bottom: 0;
}
@media screen and (max-width: 39.9375em) {
  .tab-filters {
    padding-top: 20px;
    flex-direction: column;
    justify-content: center;
  }
  .tab-filters .tab-filter-text {
    margin-bottom: 5px;
  }
  .tab-filters select {
    width: 100% !important;
  }
}
/* ==========================================================================
	7. Image Dialog Button for Inventory, Catalog, & Rentals
	========================================================================== */
.equipment-image-dialog-button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: transparent !important;
}
.equipment-image-dialog-button::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  z-index: 2;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' width='24' height='24' stroke-width='2'%3E%3Cpath d='M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0'%3E%3C/path%3E%3Cpath d='M7 10l6 0'%3E%3C/path%3E%3Cpath d='M10 7l0 6'%3E%3C/path%3E%3Cpath d='M21 21l-6 -6'%3E%3C/path%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity ease 200ms;
}
@media print {
  .equipment-image-dialog-button::after {
    display: none;
  }
}
.equipment-image-dialog-button:hover::after, .equipment-image-dialog-button:active::after, .equipment-image-dialog-button:focus::after {
  opacity: 1;
}
.equipment-image-dialog-button:focus::after {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 3px;
}
@media print {
  .equipment-image-dialog-button {
    justify-content: flex-start;
  }
  .equipment-image-dialog-button img {
    margin: 0 !important;
  }
}
/* ==========================================================================
	8.  Equipment Carousel -- SAVE ROW (INUSE)
	========================================================================== */
.equipment-item-carousel .bx-controls .bx-pager {
  text-align: right !important;
}
.equipment-item-carousel .bx-controls button.bx-pager-link {
  width: 15px !important;
  height: 10px !important;
  background: #ffd100 !important;
  opacity: 0.5;
  border-radius: 2px !important;
}
.equipment-item-carousel .bx-controls button.bx-pager-link.active {
  width: 80px !important;
  opacity: 1;
}
.equipment-item-carousel .fl-post-carousel-post {
  background: transparent !important;
}
.equipment-item--container {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 10px;
  border-top: solid 1px #fafafa;
}
.equipment-item--container .equipment-image--container {
  display: flex;
  height: 260px;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: end;
  padding: 0 10px;
}
.equipment-item--container .equipment-image--container .background-image {
  position: absolute;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  border-radius: 15px 15px 0 0;
}
.equipment-item--container .equipment-content--container {
  position: relative;
}
.equipment-item--container .equipment-content--container .year {
  position: absolute;
  top: 0;
  width: 100%;
}
.equipment-item--container .equipment-content--container .year span {
  position: relative;
  z-index: 2;
  font-size: 18px;
  text-align: left;
  padding: 2px 10px;
  font-weight: normal;
  display: inline-block;
  top: -14px;
  border-radius: 50px;
  left: 30px;
  font-style: italic;
  background: #417640;
  color: #FFFFFF;
}
.equipment-item--container .equipment-content--container .year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #417640;
  width: 100%;
  height: 5px;
}
.equipment-item--container .equipment-content--container .title {
  position: relative;
  z-index: 2;
  font-size: 30px;
  text-align: left;
  padding: 30px 30px 10px 30px;
  font-weight: normal;
}
.equipment-item--container .equipment-content--container .price-location {
  display: flex;
  margin-bottom: 5px;
  overflow: hidden;
  align-items: baseline;
  padding: 0 30px;
}
.equipment-item--container .equipment-content--container .price-location .price {
  flex: 1 0 auto;
  font-weight: 700;
  padding: 10px 0;
  font-size: 24px;
  overflow: hidden;
  max-width: fit-content;
}
.equipment-item--container .equipment-content--container .price-location .no-price {
  font-size: 16px;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}
.equipment-item--container .equipment-content--container .price-location .location {
  flex: 1 1 auto;
  padding: 10px 0 0 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.equipment-item--container .equipment-content--container .price-location .location .name {
  font-weight: normal;
  text-align: right;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.equipment-item--container .equipment-content--container .price-location .location .name .icon {
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/location-pin-yellow.svg');
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
}
.equipment-item--container .equipment-content--container .price-location .location .name > a {
  text-decoration: underline;
  font-weight: normal;
  display: inline-block;
  padding-left: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.equipment-item--container .equipment-content--container .hours-type {
  display: flex;
  margin-bottom: 20px;
  padding: 0 30px;
}
.equipment-item--container .equipment-content--container .hours-type .hours-eng {
  flex: 1 1 auto;
  padding: 10px 10px 10px 0;
  margin-right: 10px;
  border-right: solid 1px #dddddd;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.equipment-item--container .equipment-content--container .hours-type .hours-eng::before {
  content: "OPT";
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.equipment-item--container .equipment-content--container .hours-type .hours-sep {
  flex: 1 1 auto;
  padding: 10px 10px 10px 0;
  margin-right: 10px;
  border-right: solid 1px #dddddd;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
}
.equipment-item--container .equipment-content--container .hours-type .hours-sep::before {
  content: "SEP";
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.equipment-item--container .equipment-content--container .hours-type .type {
  flex: 1 1 auto;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.equipment-item--container .equipment-content--container .hours-type .type::before {
  content: "Type";
  display: block;
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.equipment-item--container .equipment-content--container .hours-type .type span {
  padding: 2px 10px;
  background: #f7f7f7;
  border-radius: 50px;
  display: inline-block;
}
.equipment-item--container .equipment-content--container .fl-button-wrap {
  padding: 10px 30px 30px;
}
/* ==========================================================================
	9.  Pagination
	========================================================================== */
nav[aria-label="pagination navigation"] {
  margin-top: 20px;
}
nav[aria-label="pagination navigation"] ul.MuiPagination-ul {
  margin: 0;
  list-style: none;
  display: flex;
}
nav[aria-label="pagination navigation"] li {
  font-family: "Inter Tight", Helvetica, Arial, sans-serif;
  font-weight: bold;
  transition: all 500ms ease-in-out;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root {
  display: inline-block;
  padding: 1px 2px 1px;
  color: #7a7274;
  border-radius: 0;
  font-size: 14px;
  font-weight: normal;
  border-bottom: solid 2px transparent;
  cursor: pointer;
  transition: all 500ms ease-in-out;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root:hover, nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root:focus {
  background: transparent !important;
  border-bottom: solid 2px #417640;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.Mui-selected {
  padding: 1px 10px 1px;
  background: #417640;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 50px;
  border-bottom: solid 2px #417640;
  white-space: nowrap;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.Mui-selected::before {
  content: "Page: ";
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.Mui-selected:hover, nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.Mui-selected:focus {
  background: #417640 !important;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.Mui-disabled {
  display: none;
}
nav[aria-label="pagination navigation"] li button.MuiPaginationItem-root.MuiPaginationItem-previousNext {
  font-size: 18px;
  color: #7d7d7d;
  line-height: 2;
}
/* ==========================================================================
	10.  Compare Popup
	========================================================================== */
.adp--compare-popup-button-container .adp--compare-popup-button {
  line-height: 1;
  text-align: center;
  padding: 10px;
  text-transform: none;
  line-height: 1.3;
}
.adp--compare-popup-button-container .adp--compare-popup-button::after {
  right: -5px;
  top: -5px;
}
.adp--compare-popup-container {
  border-radius: 15px;
}
.adp--compare-popup-container .adp--compare-title {
  display: block;
  line-height: 1.1;
  font-weight: bold;
}
.adp--compare-popup-container .adp--compare-title + div {
  line-height: 0.8;
}
.adp--compare-popup-container .adp--compare-remove {
  font-size: 12px;
}
.adp--compare-popup-container .adp--compare-item {
  border-color: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
}
.adp--compare-popup-container .adp--compare-item img {
  height: auto;
}
.adp--compare-popup-container button.secondary-button--app {
  border-color: #ffd100 !important;
}
.adp--compare-close {
  text-indent: -999999px;
  padding: 10px 15px;
}
.adp--compare-close::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/x-darkgray.svg');
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}
/* ==========================================================================
	11.  Compare Container
	========================================================================== */
.adp--compare-container .secondary-button--app {
  border-color: #ffd100 !important;
}
.adp--compare-container .adp--compare-back-button {
  position: relative;
  top: -30px;
}
.adp--compare-container .adp--compare-back-button .secondary-button--app {
  display: inline-block;
  background: transparent !important;
  color: black !important;
  font-size: 14px !important;
  padding: 10px 1px 2px 1px !important;
  border-color: #222222 !important;
  border-radius: 0 !important;
  border-width: 0px 0px 3px 0px !important;
}
.adp--compare-container .adp--compare-back-button .secondary-button--app span::before {
  content: "⬅";
  padding-right: 5px;
  font-size: 9px;
  position: relative;
  top: -2px;
}
.adp--compare-container .adp--compare-display-dropdown > div label {
  display: flex;
  gap: 5px;
  height: 35px;
  align-items: anchor-center;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  padding: 5px 20px 5px 10px;
  font-weight: bold;
  color: #000000;
  text-transform: none;
  cursor: pointer;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--compare-container .adp--compare-display-dropdown > div label::before {
  content: "";
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: solid 2px #eeeeee;
  background: #f7f7f7;
  border-radius: 3px;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--compare-container .adp--compare-display-dropdown > div input {
  display: none;
}
.adp--compare-container .adp--compare-display-dropdown > div input:checked + label {
  color: #000000;
}
.adp--compare-container .adp--compare-display-dropdown > div input:checked + label::before {
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/checkmark-black.svg');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 1px 2px;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--compare-container .adp--compare-grid {
  gap: 0;
  margin-top: 20px;
  padding: 0;
}
.adp--compare-container .adp--compare-item-container {
  background: #FFFFFF;
  overflow: hidden;
}
.adp--compare-container .adp--compare-item-container:first-child {
  border-radius: 15px 0 0 15px;
}
.adp--compare-container .adp--compare-item-container:last-child {
  border-radius: 0 15px 15px 0;
}
.adp--compare-container .adp--compare-item-container:only-child {
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-background-image {
  background-size: cover !important;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-title a {
  display: block;
  font-size: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #417640;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-price {
  font-size: 24px;
  display: inline-block;
  padding: 5px 0px;
  font-weight: bold;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-link-container {
  text-align: left;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-link-container .primary-button--app {
  display: inline-block;
  background: transparent !important;
  color: #454142 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 10px 1px 3px 1px !important;
  border-color: #417640 !important;
  border-radius: 0 !important;
  border-width: 0px 0px 3px 0px !important;
}
.adp--compare-container .adp--compare-item-container .adp--compare-item-remove {
  font-size: 14px;
  text-decoration: underline;
}
.adp--compare-container .adp--compare-item-container .adp--compare-specifications-title {
  background: #eeeeee;
  font-weight: bold;
}
.adp--compare-container .adp--compare-item-container .adp--compare-specifications .adp--compare-specifications-item:nth-child(odd) {
  background: #FAFAFA;
}
.adp--compare-container .adp--compare-item-container .adp--compare-specifications-item * {
  font-size: 16px;
}
.adp--compare-container.adp--catalog-compare-container .adp--compare-item-meta {
  display: none;
}
.adp--sidebar-filters .primary-button--app {
  width: 100%;
}
/* ==========================================================================
#
# ////////////////////////////// INVENTORY ////////////////////////////////
# ///////////////////////////// & ON SITE INVENTORY ///////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Inventory Card Styles
        2. Inventory Filter Bar
		3. Filter Modal
		4. Compare
		5. Inventory
		
-------------------------------------------*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	These styles have been duplicated on the ON SITE INVENTORY - Archive & Singular 
	Themers. So If you make changes know that it will most likely effect the ON SITE INVENTORY
	as well.

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ==========================================================================
	1.  Inventory Card Styles
	========================================================================== */
.adp--inventory-archive, .adp--new-on-lot-inventory-archive-container {
  max-width: 1500px !important;
  margin: 0 auto;
  gap: 30px;
  padding: 10px 30px;
  /* ==========================================================================
	2.  Filter Bar
	========================================================================== */
}
.adp--inventory-archive .flex-container, .adp--new-on-lot-inventory-archive-container .flex-container {
  max-width: 1500px !important;
  margin: 0 auto;
}
.adp--inventory-archive .adp--grid-section, .adp--new-on-lot-inventory-archive-container .adp--grid-section {
  padding: 0 !important;
}
.adp--inventory-archive .adp--item-container, .adp--new-on-lot-inventory-archive-container .adp--item-container {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-top: solid 1px #fafafa;
  /* Item Content -- This includes price, location, hours and type. -------------------------------------------------- */
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper {
  /* Item Image Wrapper -- This includes the background image, title (year, make, model), and compare input. -------------------------------------------------- */
  display: block;
  position: relative;
  border-bottom: none;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--item-background-image, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--item-background-image {
  display: block;
  position: relative;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-position: center;
  border-bottom: solid 5px #417640;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--item-title, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--item-title {
  position: relative;
  z-index: 2;
  font-weight: normal;
  font-size: 28px;
  text-align: left;
  padding: 0 20px 0;
  color: #454142;
  background: #FFFFFF;
  width: 100%;
  padding-top: 20px;
  line-height: 1.2;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--item-title .adp--item-field-undefined, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--item-title .adp--item-field-undefined {
  position: absolute;
  background: #417640;
  font-size: 16px;
  border-radius: 15px;
  color: #FFFFFF !important;
  padding: 4px 10px;
  top: -14px;
  left: 20px;
  font-style: italic;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--item-title .adp--item-field-manufacturer, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--item-title .adp--item-field-manufacturer {
  font-weight: 800;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container {
  position: absolute;
  z-index: 3;
  left: 5px;
  top: 10px;
  padding: 0 5px;
  background: transparent;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label {
  display: flex;
  gap: 5px;
  align-items: center;
  background: #f7f7f7;
  border-radius: 18px;
  line-height: 1.2;
  color: #454142;
  font-weight: normal;
  font-size: 14px;
  margin: 0;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label::before, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label::before {
  content: "";
  width: 15px;
  height: 15px;
  border: solid 1px #ccc;
  background: #FFFFFF;
  border-radius: 3px;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label.adp--checked, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label.adp--checked {
  background: #417640;
  color: #FFFFFF;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label.adp--checked::before, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container .adp--compare-label.adp--checked::before {
  background-color: #417640;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/checkmark-white.svg');
  background-repeat: no-repeat;
  background-position: 0 2px;
  border-color: #417640;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container input, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-image-wrapper .adp--compare-checkbox-container input {
  display: none;
}
.adp--inventory-archive .adp--item-container .adp--item-content, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content {
  padding: 0 20px 20px;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location {
  display: flex;
  overflow: hidden;
  align-items: center;
  padding-top: 10px;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .adp--item-price, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .adp--item-price {
  flex: 1 0 auto;
  font-weight: 700;
  font-size: 22px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 0;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .no-price, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .no-price {
  font-size: 16px;
  font-style: italic;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  margin-bottom: 0;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location {
  flex: 1 1 auto;
  padding: 0 0 0 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name {
  color: #417640;
  font-weight: normal;
  text-align: right;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name .icon, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name .icon {
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/location-pin-yellow.svg');
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  background-size: contain;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name > a, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-price-location .adp--item-location .adp--item-location-name > a {
  color: #454142;
  display: inline-block;
  padding-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type {
  display: flex;
  margin-bottom: 20px;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours {
  flex: 1 1 auto;
  padding: 10px 10px 10px 0;
  margin-right: 10px;
  border-right: solid 1px #dddddd;
  font-weight: normal;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours::before, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours::before {
  content: "SEP";
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #454142;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-separator-hours {
  display: none;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-operator-hours, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-operator-hours {
  flex: 1 1 auto;
  padding: 10px 10px 10px 0;
  margin-right: 10px;
  border-right: solid 1px #dddddd;
  font-weight: normal;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-operator-hours::before, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-operator-hours::before {
  content: "Hours";
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #454142;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-type, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-type {
  flex: 1 1 auto;
  padding: 10px 10px 10px 0;
  font-weight: normal;
  color: #454142;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-type::before, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-hours-type .adp--item-type::before {
  content: "Type";
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #454142;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-link, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-link {
  text-align: left;
  margin-bottom: 10px;
}
.adp--inventory-archive .adp--item-container .adp--item-content .adp--item-link a, .adp--new-on-lot-inventory-archive-container .adp--item-container .adp--item-content .adp--item-link a {
  display: inline-block;
  background: transparent !important;
  color: #454142 !important;
  font-weight: 600;
  font-size: 16px !important;
  padding: 10px 1px 2px 1px !important;
  border-radius: 0 !important;
  border-width: 0px 0px 3px 0px !important;
}
.adp--inventory-archive .adp--item-container.featured .adp--item-image-wrapper, .adp--new-on-lot-inventory-archive-container .adp--item-container.featured .adp--item-image-wrapper {
  position: relative;
}
.adp--inventory-archive .adp--item-container.featured .adp--item-image-wrapper::after, .adp--new-on-lot-inventory-archive-container .adp--item-container.featured .adp--item-image-wrapper::after {
  content: attr(data-featured-text);
  position: absolute;
  top: 25px;
  right: -26px;
  background: #417640;
  width: 120px;
  height: 20px;
  transform: rotate(45deg);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container {
  padding: 0;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container::before, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container::before {
  background: #f7f7f7 !important;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button svg path, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button svg path {
  fill: #FFFFFF;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title {
  padding: 10px 20px 10px;
  line-height: 16px;
  position: relative;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title::before, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title::before {
  content: "Equipment";
  background: #ffd100;
  font-size: 0.3em;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  color: #454142;
  border-radius: 15px;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
  outline: solid 5px #FFFFFF;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title::after, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 28px;
  left: 20px;
  width: 65%;
  height: 2px;
  background-color: #ffd100;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title span, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container h3.adp--sidebar-title span {
  display: block;
  line-height: 1.2;
  color: #454142;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container h4, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container h4 {
  font-size: 24px;
  margin: 10px 0 20px;
  color: #454142;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container {
  position: relative;
  padding: 0 20px;
  margin-bottom: 30px;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-icon, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-icon {
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/magnifying-glass.svg');
  height: 20px;
  width: 20px;
  position: absolute;
  top: -5px;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input {
  background: transparent;
  padding: 0 50px 0 0;
  border: none;
  border-bottom: solid 2px #ffd100;
  height: auto;
  border-radius: 0 !important;
  transition: all 300ms ease-in-out;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:hover, .adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:active, .adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:focus, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:hover, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:active, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-input:focus {
  box-shadow: none;
  transform: scale(1.05);
  transition: all 300ms ease-in-out;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--filter-container, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--filter-container {
  padding: 0 20px 20px;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-wrapper input, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--search-container .adp--search-wrapper input {
  border-radius: 0 !important;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--filters, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--filters {
  min-height: 67px;
}
@media screen and (max-width: 565px) {
  .adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--filters, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--filters {
    display: none;
  }
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--clear-filters, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--clear-filters {
  padding: 20px;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--clear-filters button, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--clear-filters button {
  display: inline-block;
  background: transparent !important;
  color: #454142 !important;
  font-weight: 600;
  font-size: 16px !important;
  padding: 10px 1px 2px 1px !important;
  border-radius: 0 !important;
  border-width: 0px 0px 3px 0px !important;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button {
  border-radius: 0 3px 3px 0 !important;
  border-color: var(--secondary-color) !important;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button[disabled], .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button[disabled] {
  display: none;
  background: #dddddd !important;
  border-color: #dddddd !important;
  cursor: not-allowed;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button[disabled] svg path, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button[disabled] svg path {
  fill: white;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button svg path, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--hidden-filters button.adp--filter-modal-button svg path {
  fill: #FFFFFF;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-button, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-button {
  padding: 0;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: normal;
  color: #938c8e;
  text-transform: none;
  line-height: 1.1;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-button.is-active, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-button.is-active {
  color: #417640;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-clear-button, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-clear-button {
  color: #c5c4c4;
}
.adp--inventory-archive .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-clear-button:hover, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--sidebar-container .adp--dropdown-box-clear-button:hover {
  color: #417640;
}
.adp--inventory-archive .adp--sidebar-section .adp--dropdown-box, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--dropdown-box {
  border-radius: 3px;
  padding: 20px;
}
.adp--inventory-archive .adp--sidebar-section .adp--dropdown-box::before, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--dropdown-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 13px 7.5px;
  border-color: transparent transparent #ffffff transparent;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox label, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox label {
  font-size: 18px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  line-height: 1.2;
  margin: 0;
  padding: 5px;
  text-transform: none;
  font-weight: normal;
  color: #454142;
  cursor: pointer;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox label::before, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox label::before {
  content: "";
  position: relative;
  top: 2px;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: solid 2px #eeeeee;
  background: #f7f7f7;
  border-radius: 3px;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox label.adp--checked, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox label.adp--checked {
  color: #454142;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox label.adp--checked::before, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox label.adp--checked::before {
  background-color: #417640;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/checkmark-white.svg');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 1px 2px;
  border-color: #417640;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox input, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox input {
  display: none;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox-container .adp--toggle-filter, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox-container .adp--toggle-filter {
  position: relative;
  display: inline-block;
  color: #454142 !important;
  font-weight: 600;
  font-size: 16px !important;
  margin-top: 10px;
}
.adp--inventory-archive .adp--sidebar-section .adp--filter-checkbox-container .adp--toggle-filter::after, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--filter-checkbox-container .adp--toggle-filter::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #417640;
  bottom: 0;
  left: -1px;
}
.adp--inventory-archive .adp--sidebar-section .adp--searchable-dropdown-container, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--searchable-dropdown-container {
  position: relative;
}
.adp--inventory-archive .adp--sidebar-section .adp--searchable-dropdown-container .dropdown-options, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--searchable-dropdown-container .dropdown-options {
  overflow: hidden;
  border: solid 1px #eeeeee;
  scrollbar-color: #eeeeee #f7f7f7;
  overflow: hidden;
  max-height: 200px;
  position: absolute;
  background: #FAFAFA;
  width: 100%;
  z-index: 2;
  overflow-y: scroll;
  top: 42px;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.adp--inventory-archive .adp--sidebar-section .adp--searchable-dropdown-container .dropdown-options > div, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--searchable-dropdown-container .dropdown-options > div {
  color: #454142;
  font-size: 16px;
}
.adp--inventory-archive .adp--sidebar-section .adp--searchable-dropdown-container .input-with-tags .tag, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--searchable-dropdown-container .input-with-tags .tag {
  background: #417640;
  font-size: 16px;
  border: none;
  font-style: italic;
  color: #FFFFFF;
  border-radius: 15px;
  padding: 5px 10px;
  display: inline-block;
}
.adp--inventory-archive .adp--sidebar-section .adp--twotext-inputs-container input, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--twotext-inputs-container input {
  margin-bottom: 0;
  border-radius: 15px 0 0 15px;
}
.adp--inventory-archive .adp--sidebar-section .adp--twotext-inputs-container input + input, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--twotext-inputs-container input + input {
  border-radius: 0;
}
.adp--inventory-archive .adp--sidebar-section .adp--twotext-inputs-container button, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--twotext-inputs-container button {
  padding: 11px 10px 9px 10px;
  background-color: #417640;
  color: #417640;
  font-size: 0px;
  border-radius: 0 15px 15px 0;
}
.adp--inventory-archive .adp--sidebar-section .adp--twotext-inputs-container button::after, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--twotext-inputs-container button::after {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/arrow-right-white.svg');
  background-size: 90%;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
}
.adp--inventory-archive .adp--sidebar-section .adp--top-bar-container, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--top-bar-container {
  display: flex;
  justify-content: right;
}
.adp--inventory-archive .adp--sidebar-section .adp--top-bar-container select, .adp--new-on-lot-inventory-archive-container .adp--sidebar-section .adp--top-bar-container select {
  max-width: 200px;
}
/* ==========================================================================
	3.  Filter Modal
	========================================================================== */
.adp--filter-modal {
  z-index: 10000000000;
}
.adp--filter-modal .adp--filter-modal-content {
  margin: 20px;
}
.adp--filter-modal header.adp--filter-modal-header {
  position: relative;
  padding: 10px 30px;
  text-align: center;
  border-color: #f7f7f7;
}
.adp--filter-modal header.adp--filter-modal-header h4.adp--filter-modal-title {
  font-size: 24px;
}
.adp--filter-modal header.adp--filter-modal-header .adp--close-modal {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  background: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/x-darkgray.svg');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0;
}
.adp--filter-modal header.adp--filter-modal-header .adp--close-modal span {
  display: none;
}
.adp--filter-modal .adp--filter-container {
  border-bottom: solid 1px #f7f7f7;
  margin-bottom: 10px;
  padding: 20px 0;
  padding: 20px;
}
.adp--filter-modal .adp--filter-container:last-child {
  border-bottom: none;
}
.adp--filter-modal .adp--filter-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.adp--filter-modal .adp--searchable-dropdown-container .dropdown-options {
  overflow-y: auto;
  height: 150px;
  padding: 10px 0px;
  border-radius: 3px;
  background-color: white;
}
.adp--filter-modal .adp--searchable-dropdown-container .input-with-tags input {
  margin-bottom: 0;
}
.adp--filter-modal .adp--searchable-dropdown-container .input-with-tags .tag-group {
  border-bottom: none;
  margin-bottom: 0;
  padding: 10px 0;
}
.adp--filter-modal footer.adp--filter-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.adp--filter-modal footer.adp--filter-modal-footer .adp--close-modal {
  display: inline-block;
  background: transparent;
  color: #454142 !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 1px 2px 1px !important;
  border-radius: 0 !important;
  border-color: #417640;
  border-width: 0px 0px 3px 0px !important;
  font-size: 13px !important;
  line-height: 1;
}
.adp--filter-modal footer.adp--filter-modal-footer .adp--close-modal::before {
  content: "Save & ";
}
.adp--filter-modal footer.adp--filter-modal-footer .adp--reset-filters {
  background: transparent;
  color: #417640;
  text-transform: none;
  font-weight: normal;
  padding: 0;
  text-decoration: underline;
  font-size: 14px;
}
/* ==========================================================================
	4.  Compare
	========================================================================== */
.adp--inventory-compare-container {
  max-width: 1410px;
  margin: 30px auto;
}
/* ==========================================================================
	5.  Inventory 
	========================================================================== */
.equipment-content-tabs .equipment-description-title-group, .equipment-content-tabs .equipment-specs-title-group, .equipment-content-tabs .equipment-features-title-group {
  font-size: 20px;
  border-bottom: solid 1px #f7f7f7;
  margin: 20px 0;
  padding-bottom: 10px;
}
.fl-row.fl-node-o1q5a82tiws0 {
  display: none;
}
@media print {
  .fl-row.fl-node-o1q5a82tiws0 {
    display: block !important;
  }
}
/* ==========================================================================
#
# ////////////////////////////// CATALOG ////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Catalog Card Styles
        2. Catalog Sidebar Bar


-------------------------------------------*/
/* ==========================================================================
	1. Catalog Cards (Archive & Category Pages )
	========================================================================== */
.adp--archive-container.adp--catalog-archive-container {
  padding: 10px 30px;
}
@media screen and (max-width: 1250px) {
  .adp--archive-container.adp--catalog-archive-container .adp--grid-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .adp--archive-container.adp--catalog-archive-container .adp--grid-section {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container {
  background: transparent;
  border: none;
  /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                We might have to revisit this section once we get an 
                actual promo entered.
            ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-image-wrapper {
  border-color: #f7f7f7;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-background-image {
  background-size: cover;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-content {
  display: block;
  padding: 10px 0;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-title {
  flex: 0 0 auto;
  font-size: 24px;
  text-align: left;
  margin-bottom: 10px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-title .adp--item-title-name {
  color: #417640;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-title .adp--item-title-count {
  font-size: 16px;
  font-weight: normal;
  color: #454142;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategory-control-link {
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  color: #454142;
  display: inline-block;
  position: relative;
  margin-bottom: 3px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategory-control-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: #ffd100;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategory-control-link::after {
  content: "[+]";
  font-family: "Inter Tight", Arial, sans-serif;
  font-weight: normal;
  padding-left: 2px;
  font-size: 14px;
  position: relative;
  top: -2px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  overflow-y: visible;
  border-radius: 3px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
  background: rgba(51, 51, 51, 0.98);
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories * {
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories.adp--is-visible * {
  visibility: visible;
  opacity: 1;
  transition: all 500ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories::after {
  content: "";
  position: absolute;
  bottom: -19px;
  right: 30px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(51, 51, 51, 0.98) transparent transparent transparent;
  transform: rotate(0deg);
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategory-close-link::after {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/x-gray.svg');
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  left: -13px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategory-close-link strong {
  display: none;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategories-title {
  text-align: left;
  display: flex;
  flex-direction: column-reverse;
  padding: 0 50px 5px 0;
  color: #FFFFFF;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategories-title .adp--item-subcategory-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategories-title span:not(.adp--item-subcategory-title) {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: normal;
  font-style: italic;
  display: flex;
  align-self: baseline;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategory-list {
  margin: 0;
  text-align: left;
  height: 175px;
  overflow-y: auto;
  scrollbar-color: #898989 rgba(0, 0, 0, 0.01);
  padding: 0;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container .adp--item-subcategories .adp--item-subcategory-list li {
  display: block;
  padding: 2px;
  font-size: 16px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--item-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--item-title {
  margin-bottom: 0;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--catalog-item-content {
  flex: 1 1 auto;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container {
  flex: 0 0 125px;
  background: transparent;
  padding: 0;
  justify-content: flex-end;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container .adp--compare-label {
  display: flex;
  gap: 5px;
  align-items: center;
  background: white;
  line-height: 1.2;
  font-size: 14px;
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  text-transform: none;
  color: #5c5c5c;
  cursor: pointer;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container .adp--compare-label::before {
  content: "";
  width: 15px;
  height: 15px;
  border: solid 1px #dddddd;
  background: #FAFAFA;
  border-radius: 3px;
  text-transform: none;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container .adp--compare-label.adp--checked {
  background: #417640;
  color: #FFFFFF;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container .adp--compare-label.adp--checked::before {
  background-color: #417640;
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/checkmark-yellow2.svg');
  background-repeat: no-repeat;
  background-position: 0 2px;
  border-color: #417640;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--compare-checkbox-container input {
  display: none;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--item-link {
  text-align: left;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--catalog-single-item .adp--item-link a {
  display: inline-block;
  color: #000000;
  letter-spacing: 0.6px;
  font-weight: 500 !important;
  font-size: 16px !important;
  border-style: solid;
  padding: 10px 1px 3px 1px;
  border-color: #ffd100;
  border-radius: 0;
  border-width: 0px 0px 3px 0px;
  line-height: 1;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container {
  position: relative;
  margin-top: 10px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #ffffff 40%, #EBEBEB 100%);
  border-radius: 3px;
  padding: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  min-height: 250px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container .adp--promo-wrapper .adp--promo-background-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-size: contain;
  max-width: 400px;
  background-repeat: no-repeat;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container .adp--promo-wrapper .adp--promo-content {
  position: relative;
  z-index: 3;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container .adp--promo-wrapper .adp--promo-title {
  font-size: 30px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container .adp--promo-wrapper .adp--promo-copy {
  margin-bottom: 20px;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--promo-container .adp--promo-wrapper .adp--promo-button .primary-button--app {
  display: inline-block;
  background: transparent !important;
  color: #454142 !important;
  font-size: 12px !important;
  padding: 10px 1px 2px 1px !important;
  border-color: #417640 !important;
  border-radius: 0 !important;
  border-width: 0px 0px 3px 0px !important;
}
.adp--archive-container.adp--catalog-archive-container .adp--item-container.adp--category-sidebar-copy {
  margin-top: 20px;
  font-size: 16px;
}
/* ==========================================================================
	2. Catalog Sidebar (Archive & Category Pages )
	========================================================================== */
.adp--archive-container.adp--catalog-archive-container .adp--catalog-archive {
  gap: 20px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container {
  padding: 0;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container h3.adp--sidebar-title {
  padding: 10px 20px 10px;
  line-height: 16px;
  position: relative;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container h3.adp--sidebar-title::before {
  content: "Equipment";
  background: #ffd100;
  font-size: 0.3em;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  color: #454142;
  border-radius: 15px;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
  outline: solid 5px #FFFFFF;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container h3.adp--sidebar-title::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 28px;
  left: 20px;
  width: 65%;
  height: 2px;
  background-color: #ffd100;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container h3.adp--sidebar-title span {
  display: block;
  line-height: 1.2;
  color: #454142;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container h4 {
  font-size: 24px;
  margin: 10px 0 20px;
  color: #454142;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container {
  position: relative;
  padding: 0 20px;
  margin-bottom: 30px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container .adp--search-icon {
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/magnifying-glass.svg');
  height: 20px;
  width: 20px;
  position: absolute;
  top: -5px;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container .adp--search-input {
  background: transparent;
  padding: 0 50px 0 0;
  border: none;
  border-bottom: solid 2px #ffd100;
  height: auto;
  border-radius: 0 !important;
  transition: all 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container .adp--search-input:hover, .adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container .adp--search-input:active, .adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--search-container .adp--search-input:focus {
  box-shadow: none;
  transform: scale(1.05);
  transition: all 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--filter-container {
  padding: 0 20px 20px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container {
  padding: 0 20px 20px;
  font-size: 24px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item {
  padding-bottom: 10px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-label {
  font-size: 18px;
  padding-right: 30px;
  color: #000000;
  display: block;
  line-height: 1.2;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-label + .adp--subcategories .adp--category-label {
  font-size: 16px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-label + .adp--subcategories .adp--category-label + .adp--subcategories .adp--category-label {
  font-size: 15px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories {
  position: relative;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories a.adp--category-label.is-active {
  font-weight: bold;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories button.adp--toggle-category {
  position: absolute;
  padding: 0;
  background: transparent;
  right: 0;
  top: 0;
  border: none;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories button.adp--toggle-category::before {
  content: "";
  background-image: url('https://heritagetractor.com/wp-content/themes/astra-child/lib/img/x-darkgray.svg');
  width: 20px;
  height: 20px;
  display: block;
  transform: rotate(45deg);
  opacity: 0.5;
  transition: all 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories button.adp--toggle-category span {
  display: none;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--category-item.has-subcategories button.adp--toggle-category.is-active::before {
  transform: rotate(90deg);
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--subcategories {
  font-size: 0.95em;
  padding: 10px 0 10px 20px;
  border-left: solid 2px #e1e1e1;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--subcategories .adp--category-item {
  padding-bottom: 5px !important;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--subcategories .adp--category-item button.adp--toggle-category {
  right: 0;
  top: 2px;
  width: 20px;
  height: 20px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--subcategories .adp--category-item button.adp--toggle-category::before {
  background: transparent;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #757575;
  transform: rotate(0deg);
  right: 40%;
  position: absolute;
  top: 30%;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--categories-container .adp--subcategories .adp--subcategories {
  padding: 5px 0 5px 20px;
  border-left: dotted 1px #e1e1e1;
  margin-bottom: 5px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--filter-dropdown-container select {
  height: 55px;
  padding: 0.5em;
  border-radius: 8px;
}
.adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--filter-dropdown-container select:hover, .adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--filter-dropdown-container select:active, .adp--archive-container.adp--catalog-archive-container .adp--sidebar-container .adp--filter-dropdown-container select:focus {
  box-shadow: none;
  outline: none;
}
.seo--content-container img {
  border-radius: 15px;
}
/* ==========================================================================
#
# //////////////////////////// MANUFACTURERS ////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
	Table of Contents:

	1. Manufacturer Archive
	2. Brands


-------------------------------------------*/
/* ==========================================================================
	1.  Manufacturer Archive
	========================================================================== */
.manufacturer--list .fl-post-grid-post {
  border: solid 1px #f7f7f7;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.manufacturer--list .manufacturer--item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.manufacturer--list .manufacturer--item-container .manufacturer--title a {
  color: #454142;
}
.manufacturer--list .manufacturer--item-container .manufacturer--image img {
  max-width: 100%;
  width: 175px;
  object-fit: contain;
  width: auto;
  text-align: center;
}
.manufacturer--list .manufacturer--item-container .manufacturer--content {
  text-align: center;
  padding: 1rem;
}
/* ==========================================================================
	6.  Brands
	========================================================================== */
.brands--grid img {
  width: 100% !important;
  height: auto;
  min-width: 0;
}
.card-image-title-text--image-size {
  margin: 0 auto;
}
.card-image-title-text--image-size img {
  height: 175px;
  object-fit: contain;
  margin-bottom: 10px;
}
/* ==========================================================================
#
# ////////////////////////////// Dynamics Forms ///////////////////////////////////
#
========================================================================== */
/*-------------------------------------------
		Table of Contents:

		1. Dynamics Forms

-------------------------------------------*/
/* ==========================================================================
	1.  Dynamics 365 Marketing – Loading State
	========================================================================== */
/* Universal loading state for Dynamics submit buttons */
.dyn-global-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
  /* Spinner */
}
.dyn-global-loading::after {
  content: "";
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: dyn-global-spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  right: 0.85em;
  transform: translateY(-50%);
}
/* Extra padding so the spinner doesn't overlap the button text */
.dyn-global-loading, .dyn-global-loading[type="submit"] {
  padding-right: 2.25em !important;
}
@keyframes dyn-global-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.dyn-feedback-message {
  padding: 20px;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2F71dfcbbbb6.nxcli.io%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Fastra-child%2Flib%2Futil%2F_mixins.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fscreen.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fextras%2F_menu-hamburger.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fextras%2F_accordions.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fextras%2F_dialogs.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Futil%2F_breakpoint.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fextras%2F_slick.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2Fhelpers%2F_color-helpers.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2Fhelpers%2F_layout-helpers.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2F_global.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2Fhelpers%2F_typography-helpers.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_header.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_footer.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_buttons.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_forms.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_general.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_modules.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_print.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Flayout%2F_adp-react.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_home.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_blog.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_locations.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_pages.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_equipment.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_inventory.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_catalog.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_manufacturers.scss%22%2C%22wp-content%2Fthemes%2Fastra-child%2Flib%2Fpages%2F_dynamics-forms.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAoLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACpLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACwBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BADxGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEWA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAF5BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG8BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAC2HC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAAAA%3BAAAA%3BAAAA%3BAGiDA%3BAAAA%3BAAAA%3BAAAA%3BAHjDA%3BAAAA%3BAAAA%3BAGwDA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAH%2FDD%3BAAAA%3BAAAA%3BAGuEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHvEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGoFA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BACgEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAAAA%3BAAAA%3BAG4GA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH5HD%3BAKEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BALjGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMuCE%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAjBD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BANxDH%3BAAAA%3BAAAA%3BAM%2BEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAN%2FEF%3BAAAA%3BAAAA%3BAMyFC%3BAAAA%3BAAAA%3BAFsEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOsBC%3BAAAA%3BAAAA%3BAAAA%3BAPtBD%3BAAAA%3BAAAA%3BAO6BC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC4IC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BARxLF%3BAAAA%3BAAAA%3BAO4DC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAPhED%3BAAAA%3BAAAA%3BAOyEC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAPzFD%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAOqHA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAACE%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAACE%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAACE%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAACE%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAPv0BD%3BAAAA%3BAAAA%3BAOm1BC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAaF%3BAAAA%3BAAAA%3BAP32BD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASiCC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BATvDD%3BAAAA%3BAAAA%3BASyEK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALsFH%3BAK3FG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL2FH%3BAK3FG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATpEL%3BAAAA%3BAAAA%3BASsFC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATtID%3BAAAA%3BAAAA%3BASgJC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BATrJF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAUqBC%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAN8HA%3BAM3HC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAVhHF%3BAAAA%3BAAAA%3BAAAA%3BAU2HG%3BAAAA%3BAAAA%3BAV3HH%3BAAAA%3BAAAA%3BAUsIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAV7KJ%3BAAAA%3BAAAA%3BAUuLE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAVjOP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWkBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAX5BF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYqIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZpJF%3BAAAA%3BAAAA%3BAY6FE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BEG%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA3FH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAwGG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAzIJ%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BEG%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA3FH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAwGG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAzIJ%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA%2BEG%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA3FH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoJG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA5JH%3BAAAA%3BAAAA%3BAAmKK%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAArKJ%3BAAAA%3BAAAA%3BAAmKK%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAArKJ%3BAAAA%3BAAAA%3BAAmKK%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAArKJ%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAwGG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAzIJ%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAAgLG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAlLF%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAA7LH%3BAAAA%3BAAAA%3BAA2LI%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAZ1RL%3BAAAA%3BAAAA%3BAYySG%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAZF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAZF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAADD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAQN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAZ%2FVD%3BAAAA%3BAAAA%3BAYoWC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZvWD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAa0BA%3BAAAA%3BAAAA%3BAb1BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAaoFC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAANC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAb9GD%3BAAAA%3BAAAA%3BAa8HC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAb%2FID%3BAAAA%3BAAAA%3BAaqKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbrKD%3BAAAA%3BAAAA%3BAakLC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAblLD%3BAAAA%3BAAAA%3BAayMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAbnOD%3BAAAA%3BAAAA%3BAaiRC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAXC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbxQF%3BAAAA%3BAAAA%3BAayUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdhNA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAc%2BLC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWU%3BAAAA%3BAAAA%3BAb5UZ%3BAAAA%3BAAAA%3BAaoVC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAb1VD%3BAAAA%3BAAAA%3BAamWE%3BAAAA%3BAAAA%3BATpMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS6MA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAb3dH%3BAaieC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbneF%3BAaseC%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAb3eF%3BAAAA%3BAAAA%3BAawfE%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbhjBH%3BAAAA%3BAAAA%3BAa4jBG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAbllBL%3BAAAA%3BAAAA%3BAa6lBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAb7lBD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcwBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdxBD%3BAAAA%3BAAAA%3BAc%2BDC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdxIH%3BAAAA%3BAAAA%3BAc%2BIC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAdvJD%3BAAAA%3BAAAA%3BAI%2BJE%3BAUAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVJA%3BAUQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVZA%3BAUgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAV5BA%3BAUgCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdnMF%3BAAAA%3BAAAA%3BAI%2BJE%3BAU8CA%3BAAAA%3BAAAA%3BAAAA%3BAV9CA%3BAUkDA%3BAAAA%3BAAAA%3BAAAA%3BAVlDA%3BAUsDA%3BAAAA%3BAAAA%3BAAAA%3BAVtDA%3BAU0DA%3BAAAA%3BAAAA%3BAAAA%3BAV1DA%3BAU8DA%3BAAAA%3BAAAA%3BAAAA%3BAd7NF%3BAAAA%3BAAAA%3BAI%2BJE%3BAUwEA%3BAAAA%3BAAAA%3BAAAA%3BAVxEA%3BAU4EA%3BAAAA%3BAAAA%3BAAAA%3BAV5EA%3BAUgFA%3BAAAA%3BAAAA%3BAAAA%3BAVhFA%3BAUoFA%3BAAAA%3BAAAA%3BAAAA%3BAVpFA%3BAUwFA%3BAAAA%3BAAAA%3BAAAA%3BAdvPF%3BAAAA%3BAAAA%3BAI%2BJE%3BAUkGA%3BAAAA%3BAAAA%3BAAAA%3BAVlGA%3BAUsGA%3BAAAA%3BAAAA%3BAAAA%3BAVtGA%3BAU0GA%3BAAAA%3BAAAA%3BAAAA%3BAV1GA%3BAU8GA%3BAAAA%3BAAAA%3BAAAA%3BAV9GA%3BAUkHA%3BAAAA%3BAAAA%3BAAAA%3BAVlHA%3BAUwHA%3BAAAA%3BAAAA%3BAAAA%3BAdvRF%3BAAAA%3BAAAA%3BAI%2BJE%3BAUkIA%3BAAAA%3BAAAA%3BAAAA%3BAVlIA%3BAUsIA%3BAAAA%3BAAAA%3BAAAA%3BAdrSF%3BAAAA%3BAAAA%3BAI%2BJE%3BAU%2BIA%3BAAAA%3BAAAA%3BAAAA%3BAV%2FIA%3BAUmJA%3BAAAA%3BAAAA%3BAAAA%3BAdlTF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe6CC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAND%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAuBJ%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXmEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAAAA%3BAAAA%3BAeoGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfxGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeiHC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAfpHH%3BAAAA%3BAAAA%3BAe8HE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAXqBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWhBE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXUC%3BAAAA%3BAAAA%3BAAAA%3BAWRC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXQD%3BAWLC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf1JH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAesKC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfxKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeqLE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAf9LJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe6ME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAXlEA%3BAWwEG%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAf3OL%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAgBcA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAhBzFH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBqBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjB3BF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBkBE%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdkID%3BAc%2FHE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAlBlCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmBwBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfkIN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe9HU%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAf6Hd%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAexHkB%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAfuHlB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAepHkB%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGR%3BAAAA%3BAAAA%3BAAAA%3BAfgHV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe5Gc%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf4FV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAetFc%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAfkFlB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe3Ec%3BAAAA%3BAAAA%3BAAOR%3BAAAA%3BAAAA%3BAfoEN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe9DU%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAnB7GZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmByHI%3BAAAA%3BAAAA%3BAfsCF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe%2FBM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAQhB%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAnBlLhB%3BAAAA%3BAAAA%3BAmB4LQ%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnB1MZ%3BAAAA%3BAAAA%3BAAAA%3BAmBqNQ%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAnBvNhB%3BAAAA%3BAAAA%3BAAAA%3BAmBkOQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf9EV%3BAAAA%3BAAAA%3BAAAA%3BAeiFkB%3BAAAA%3BAAAA%3BAAAA%3BAnBhPpB%3BAAAA%3BAAAA%3BAAAA%3BAmB4PQ%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAnB3QhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBwBE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAACU%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBzCZ%3BAoBgDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BApBpDZ%3BAoB0DQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAhB4FtB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBpFkB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BApB%2FEZ%3BAoBuFQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAACG%3BAAAA%3BAAAA%3BAhBgEb%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAoB0GQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BApB3GR%3BAAAA%3BAAAA%3BAoBuHQ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAhB8BV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgB1Bc%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BApBpJZ%3BAAAA%3BAAAA%3BAoB8JY%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAIR%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBtNhB%3BAAAA%3BAAAA%3BAoB%2BNK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEG%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BApB1PR%3BAAAA%3BAAAA%3BAoBiQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAIR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAhBhHV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBsHE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BApB9RR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAqB0BG%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACE%3BAAAA%3BAAAA%3BAAEF%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BArBpCJ%3BAAAA%3BAAAA%3BAqB4CC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjB%2BGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiB5GC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBtDH%3BAAAA%3BAAAA%3BAqBgEE%3BAAAA%3BAAAA%3BArBhEF%3BAAAA%3BAAAA%3BAqBuEC%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAjBoFD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiB%2FEC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjB6EF%3BAiBzEG%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAjBuEF%3BAiBnEE%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMH%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BArBrGF%3BAAAA%3BAAAA%3BAAAA%3BAqB%2BGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArB3IF%3BAqBgJE%3BAAAA%3BAAAA%3BAjBeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBXA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAjBQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBJC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAjBED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBRA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FJF%3BAAAA%3BAAAA%3BAqBmLC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjB1BD%3BAAAA%3BAAAA%3BAAAA%3BAiB4BE%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBlCD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBwCE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAjB%2FCL%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBqDG%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BArB9OL%3BAAAA%3BAAAA%3BAqByPC%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BArBhQH%3BAqBqQC%3BAAAA%3BAAAA%3BAAAA%3BArBrQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI%2BJE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB9HC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAlBqHF%3BAkBlHG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAtBpFF%3BAAAA%3BAAAA%3BAsB8FE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBwDH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBjDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBiDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB7CC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlB2BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBvBK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBuBL%3BAkBlBI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtB9JF%3BAAAA%3BAAAA%3BAsBqKE%3BAAAA%3BAAAA%3BAtBrKF%3BAAAA%3BAAAA%3BAAAA%3BAsBiLC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAASH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBhKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBwKA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBzLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB8LC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAtB9VH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsB8WE%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAID%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAtBxZF%3BAAAA%3BAAAA%3BAsBmaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGK%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIT%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBtSV%3BAkB0SE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtB%2FcR%3BAAAA%3BAAAA%3BAsBsdI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAAAA%3BAAAA%3BAlB5TN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkBgUU%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAtBheZ%3BAAAA%3BAAAA%3BAsB0eC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAtB1fH%3BAAAA%3BAAAA%3BAsBwgBG%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAtBhkBH%3BAAAA%3BAAAA%3BAsBykBC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtBzlBH%3BAAAA%3BAAAA%3BAsBqmBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAtBxnBF%3BAAAA%3BAAAA%3BAsBkoBE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAtBvrBF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuB2BC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAvBpNJ%3BAAAA%3BAAAA%3BAuBgOC%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvBzPH%3BAAAA%3BAAAA%3BAuBgQC%3BAAAA%3BAAAA%3BAAAA%3BAvBhQD%3BAAAA%3BAAAA%3BAuByQE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvBhRF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3B%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwBkBI%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGR%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKZ%3BAAAA%3BAAAA%3BAAAA%3BAxBpGZ%3BAAAA%3BAAAA%3BAwB6GQ%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIP%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAWZ%3BAAAA%3BAAAA%3BAxB9KR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3B%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBqBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAED%3BAAAA%3BAAAA%3BAAAA%3BAzB3BH%3BAAAA%3BAAAA%3BAyBoCE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGD%3BAAAA%3BAAAA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzBxCF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0BoBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA1B1BN%3BA0B2CE%3BAAAA%3BAAAA%3BAAKA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%22%7D */