a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.nivo-lightbox-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}/* 
 *  Owl Carousel - Animate Plugin
 */
 #stacks_in_1 .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#stacks_in_1 .owl-carousel .owl-animated-in {
  z-index: 0;
}
#stacks_in_1 .owl-carousel .owl-animated-out {
  z-index: 1;
}
#stacks_in_1 .owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
 #stacks_in_1 .owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
 #stacks_in_1 .owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
#stacks_in_1 .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
#stacks_in_1 .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#stacks_in_1 .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-prev,
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-next,
#stacks_in_1 .owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel.owl-loaded {
  display: block;
}
#stacks_in_1 .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
#stacks_in_1 .owl-carousel.owl-hidden {
  opacity: 0;
}
#stacks_in_1 .owl-carousel .owl-refresh .owl-item {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
#stacks_in_1 .owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
#stacks_in_1 .owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
#stacks_in_1 .owl-carousel.owl-rtl {
  direction: rtl;
}
#stacks_in_1 .owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
#stacks_in_1 .no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
 #stacks_in_1 .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
 #stacks_in_1 .owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-tn,
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}/* @group Reset */
.pace,
.pace .pace-progress,
.pace .pace-progress:before,
.pace .pace-activity,
.pace .pace-activity:after,
.pace .pace-activity:before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-ms-box-sizing: content-box;
	-o-box-sizing: content-box;
	box-sizing: content-box;
}

/* @end */

/* @group Hide Until Loaded */

/*  */
#jumbotron-content-wrap {
	display: none;
}
/*  */

/* @end */

/* @group Atom */

/*  */

/* @end */

/* @group Barber Shop Top */

/*  */

/* @end */

/* @group Barber Shop Bottom */

/*  */

/* @end */



/* @group Big Counter Top Left */

/*  */

/* @end */

/* @group Big Counter Top Centre */

/*  */

/* @end */

/* @group Big Counter Top Right */

/*  */

/* @end */

/* @group Big Counter Middle */

/*  */

/* @end */

/* @group Big Counter Bottom Left */

/*  */

/* @end */

/* @group Big Counter Bottom Centre */

/*  */

/* @end */

/* @group Big Counter Bottom Right */

/*  */

/* @end */

/* @group Bounce */

/*  */

/* @end */

/* @group Box */

/*  */

/* @end */

/* @group Button */

/*  */

/* @end */

/* @group Circle */

/*  */

/* @end */

/* @group Corner */

/*  */

/* @end */

/* @group Double Circles Large */

/*  */

/* @end */

/* @group Double Circles Small */

/*  */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-activity {
	display: block;
	position: fixed;
	z-index: 2000;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
	-webkit-transition: none;
	transition: none;
	-webkit-transform: none;
	transform: none;
	pointer-events: none;
}

.pace.pace-active .pace-activity {
	-webkit-transform: none;
	transform: none;
}

.pace .pace-activity::before,
.pace .pace-activity::after {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #FF8000;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	content: '';
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}

.pace .pace-activity::after {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
	0%, 100% { 
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	} 50% { 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

/*  */

/* @end */

/* @group Double Squares Large */

/*  */

/* @end */

/* @group Double Squares Small */

/*  */

/* @end */

/* @group Double Stripes */

/*  */

/* @end */

/* @group Radar */

/*  */

/* @end */

/* @group Simple */

/*  */

/* @end */



/* @group Fill */

/*  */

/* @end */

/* @group Flash */

/*  */

/* @end */

/* @group Flat Top */

/*  */

/* @end */

/* @group Flat Bottom */

/*  */

/* @end */

/* @group Loading Bar */

/*  */

/* @end */

/* @group Mac OS X Top */

/*  */

/* @end */

/* @group Mac OS X Bottom */

/*  */

/* @end */

/* @group Minimal Top */

/*  */

/* @end */

/* @group Minimal Bottom */

/*  */

/* @end */

/* @group Fat Bar Top */

/*  */

/* @end */

/* @group Fat Bar Bottom */

/*  */

/* @end */

/* @group Flipping Circle */

/*  */

/* @end */

/* @group Flipping Square */

/*  */

/* @end */

/* @group Font Awesome */

/*  */

/* @end */

/* @group Hair Line */

/*  */

/* @end */

/* @group Sphere */

/*  */

/* @end */

/* @group Spinning Box */

/*  */

/* @end */

/* @group Spinning & Zooming Box */

/*  */

/* @end */

/* @group Spinning Circles */

/*  */

/* @end */

/* @group Squares */

/*  */

/* @end */

/* @group Text */

/*  */

/* @end */



#gatorWrapperstacks_in_1018 {
	max-width: 1500px;
	margin: 0 auto;
}

#gatorstacks_in_1018 {
	width: calc(100% - 0 - 0);
	z-index: 200;
	position: relative;
	min-height: calc(3.5rem + 0px + 0px);
	line-height: 3.5rem;
	border-radius: 0px;
	margin: 0 0 0 0;
  padding: 0px;
}



#gatorBarFillstacks_in_1018 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 20;
	height: 100%;
	display: block;

	
  background-color: rgba(25, 25, 25, 1.00);
	background-image: -moz-linear-gradient(top, rgba(25, 25, 25, 1.00), rgba(25, 25, 25, 1.00));
	background-image: -ms-linear-gradient(top, rgba(25, 25, 25, 1.00), rgba(25, 25, 25, 1.00));
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(25, 25, 25, 1.00)), to(rgba(25, 25, 25, 1.00)));
	background-image: -webkit-linear-gradient(top, rgba(25, 25, 25, 1.00), rgba(25, 25, 25, 1.00));
	background-image: -o-linear-gradient(top, rgba(25, 25, 25, 1.00), rgba(25, 25, 25, 1.00));
	background-image: linear-gradient(top, rgba(25, 25, 25, 1.00), rgba(25, 25, 25, 1.00));
	background-repeat: repeat-x;
	

	

	

  	border-radius: 0px;
}

#gatorNavBarWrapstacks_in_1018 {
	position: relative;
	width: 100%;
	display: block;
	z-index: 40;
  max-width: 1500px;
  margin: 0 auto;
}

#gatorContentstacks_in_1018 {
	width: 100%;
	z-index: 201;
	position: relative;
}

#gatorNavstacks_in_1018 {
	transition: max-height 300ms linear;
	-webkit-transition: max-height 300ms linear;
	-moz-transition: max-height 300ms linear;
	overflow: hidden;
	z-index: 30;
	width: 100%;
}

#gatorNavstacks_in_1018 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
	display: block;
}

#gatorNavstacks_in_1018 li {
	padding: 0;
	margin: 0;
	position: relative;
}

#gatorNavstacks_in_1018 ul li a {
	display: block;
	text-decoration: none;
	transition: all 300ms ease-in-out;
	width: 100%;
	text-align: left;
	padding: 0.5rem 0 0.5rem 1.50rem;
	color: rgba(255, 255, 255, 0.50);
	line-height: 1.4;
	font-size: 1rem;
	border-bottom: 1px solid rgba(25, 25, 25, 1.00);

	
	background: rgba(52, 58, 64, 1.00);
	

	

	

  text-align: left !important;
  
  
  
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
}

#gatorNavstacks_in_1018 ul li a.parent-link {
	padding-right: 4rem; /* Give parent links extra right padding for the reveal button */
}

#gatorNavstacks_in_1018 li:first-child {
	border-top: 1px solid rgba(25, 25, 25, 1.00);
}

#gatorNavstacks_in_1018 ul li a:hover {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_1018 ul li a:active {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_1018 ul li a.current,
#gatorNavstacks_in_1018 ul li a.currentAncestor {
	color: rgba(255, 255, 255, 1.00);
	
	
	
	
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_1018 ul li a i {
	display: none;
}


#gatorNavstacks_in_1018 a:focus {
	box-shadow: none;
	outline: rgba(255, 128, 0, 1.00) solid 2px;
}


#gatorNavstacks_in_1018 ul li a:active {
	outline: none;
}

#gatorNavstacks_in_1018 li ul {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: all 300ms ease-in-out;
}

#gatorNavstacks_in_1018 ul ul li:first-child {
	border-top: none;
}

#gatorNavstacks_in_1018 ul ul li a {
	padding-left: calc(1.50rem * 2);
}

#gatorNavstacks_in_1018 ul ul ul li a {
	padding-left: calc(1.50rem * 3);
}

#gatorNavstacks_in_1018 ul ul ul ul li a {
	padding-left: calc(1.50rem * 4);
}

#gatorNavstacks_in_1018 ul ul ul ul ul li a {
	padding-left: calc(1.50rem * 5);
}

#mobileNavButtonstacks_in_1018 {
	text-align: left;
	height: 3.5rem;
	line-height: 3.5rem;
	font-size: 100%;
	display: block;
	width: 100%;
	cursor: pointer;
	padding: 0 1.50rem;
	position: relative;
	font-size: 1rem;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
}

#mobileNavButtonstacks_in_1018:hover {
	color: rgba(255, 255, 255, 0.70);
}

#menuToggleTitlestacks_in_1018:before {
	content: 'Menu';
}

/* Closed menu */

#gatorContentstacks_in_1018.gator-closed-state #menu_toggle_expand_stacks_in_1018 {
	display: inline;
}

#gatorContentstacks_in_1018.gator-closed-state #menu_toggle_collapse_stacks_in_1018 {
	display: none;
}

/* Expanded opened menu */

#gatorContentstacks_in_1018.gator-opened-state #menu_toggle_expand_stacks_in_1018 {
	display: none;
}

#gatorContentstacks_in_1018.gator-opened-state #menu_toggle_collapse_stacks_in_1018 {
	display: inline;
}

#gatorContentstacks_in_1018.gator-closed-state #gatorNavstacks_in_1018 {
	max-height: 0px;
	overflow: hidden !important;
}

#gatorContentstacks_in_1018.gator-opened-state #gatorNavstacks_in_1018,
#gatorNavstacks_in_1018 .gator-open > ul {
	max-height: 2000px;
	overflow: auto;
}

#gatorNavstacks_in_1018 .gator-more {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 3rem;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.50);
	border: 1px solid rgba(25, 25, 25, 1.00);
	background: rgba(51, 51, 51, 1.00);
	font-size: 2rem;
	transition: color 300ms ease-in-out;
}

#gatorNavstacks_in_1018 .gator-more:hover {
	color: rgba(255, 255, 255, 1.00);
}

#gatorNavstacks_in_1018 .gator-more i {
	transition: transform 0.3s;
}

#gatorNavstacks_in_1018 li.gator-open > .gator-more i {
	transform: rotate(-180deg);
}

/* Styling applied on screens 1050px and wider */
@media screen and (min-width: 1050px){

	#gatorstacks_in_1018 {
		min-height: calc(3.5rem + 0 + 0);
    top: auto;
    left: auto;
    max-height: none;
    overflow: visible;
	}

	

	
	#gatorstacks_in_1018 {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	

	#mobileNavButtonstacks_in_1018 {
		display: none;
	}

	#gatorContentstacks_in_1018.gator-closed-state #gatorNavstacks_in_1018,
	#gatorContentstacks_in_1018.gator-opened-state #gatorNavstacks_in_1018 {
		max-height: 2000px;
		overflow: visible !important;
	}

	#gatorNavBarWrapstacks_in_1018 {
		display: block;
		position: relative;
		z-index: 40;
	}

	#gatorContentstacks_in_1018 {
		z-index: 201;
		position: relative;
		display: block;
		width: auto;
		float: right;
	}

	#gatorNavstacks_in_1018 {
		background: none;
		margin-bottom: 0;
		font-size: 100%;
		min-height: 0px;
		overflow: visible;
		display: flex;
	}

	#navButtonstacks_in_1018,
	#gatorNavstacks_in_1018 .gator-more {
		display: none !important;
	}

	#gatorNavstacks_in_1018 ul li {
		display: block;
		float: left;
		margin: 0;
		position: relative;
		white-space: no-wrap;
	}

	#gatorNavstacks_in_1018 li:first-child {
		border-top: none;
	}

  

  

  

	/* Remove inherited background styling from the mobile menu */
	#gatorNavstacks_in_1018 ul li a,
	#gatorNavstacks_in_1018 ul li a:hover,
	#gatorNavstacks_in_1018 ul li a:active,
	#gatorNavstacks_in_1018 ul li a.current,
	#gatorNavstacks_in_1018 ul li a.currentAncestor {
		background: none;
	}

	#gatorNavstacks_in_1018 ul li a {
    display: inline-block;
		text-align: left;
		height: auto;
		width: auto;
		height: auto;
		padding: 0 1.5rem;
		position: relative;
		font-size: 1.1rem;
		border-bottom: none;
		border-radius: 0rem;
		margin: 0 0 0 0;
		color: rgba(255, 255, 255, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
		min-height: 0;
		line-height: 3.5rem;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    
  	
  	
  	
	}

	#gatorNavstacks_in_1018 ul li a.parent-link {
		padding: 0 1.5rem;
	}

	#gatorNavstacks_in_1018 ul li a:hover {
		color: rgba(255, 128, 0, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}

	#gatorNavstacks_in_1018 ul li a:active {
		color: rgba(255, 128, 0, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}

	#gatorNavstacks_in_1018 ul li a.current,
	#gatorNavstacks_in_1018 ul li a.currentAncestor {
		color: rgba(179, 179, 179, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}

	#gatorNavstacks_in_1018 ul li a i {
		display: inline-block;
		font-size: 1.25rem;
		padding-left: 5px;
		margin-bottom: -3px;
	}

	#gatorNavstacks_in_1018 ul ul {
		position: absolute;
		top: 100%;
		left: -1px;
    width: 200px;
		padding: 0;
		margin: 0;
  	z-index: 149;
  	border: 0px solid rgba(25, 25, 25, 1.00);
		max-height: none;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateZ(0); /* Fixes missing elements when the parent is fixed-positioned */
		overflow: visible;
		border-radius: 0px;
		font-size: inherit;
		background-color: rgba(25, 25, 25, 1.00);
		box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
		transition: all 300ms ease-in-out;

    
    background-color: rgba(52, 58, 64, 1.00);
  	background-image: -moz-linear-gradient(top, rgba(52, 58, 64, 1.00), rgba(52, 58, 64, 1.00));
  	background-image: -ms-linear-gradient(top, rgba(52, 58, 64, 1.00), rgba(52, 58, 64, 1.00));
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(52, 58, 64, 1.00)), to(rgba(52, 58, 64, 1.00)));
  	background-image: -webkit-linear-gradient(top, rgba(52, 58, 64, 1.00), rgba(52, 58, 64, 1.00));
  	background-image: -o-linear-gradient(top, rgba(52, 58, 64, 1.00), rgba(52, 58, 64, 1.00));
  	background-image: linear-gradient(top, rgba(52, 58, 64, 1.00), rgba(52, 58, 64, 1.00));
  	background-repeat: repeat-x;
		

    

    

		
	}

	#gatorNavstacks_in_1018 ul ul li {
		display: block;
		position: relative;
		width: 100%;
		border-bottom: rgba(25, 25, 25, 1.00) solid 0px;
		border-left: none;
		border-right: none;
		white-space: normal;
	}

	#gatorNavstacks_in_1018 ul ul li:first-child {
		border-left: none;
	}

	#gatorNavstacks_in_1018 ul ul li:last-child {
		border-bottom: none;
	}

	#gatorNavstacks_in_1018 ul ul li a {
		color: rgba(255, 255, 255, 1.00);
		
		background-color: rgba(25, 25, 25, 1.00);
		
		display: block;
		position: relative;
		width: 100%;
		margin: 0;
		border-radius: 0;
		text-align: left !important;
		
		
		
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    
  	
  	
  	
	}

	#gatorNavstacks_in_1018 ul ul li:last-child a {
		border-bottom: none;
	}

	#gatorNavstacks_in_1018 ul ul li a:hover {
		color: rgba(255, 128, 0, 1.00);
		
		background-color: rgba(25, 25, 25, 1.00);
		
	}

	#gatorNavstacks_in_1018 ul ul li a:active {
		color: rgba(255, 128, 0, 1.00);
		
		background-color: rgba(25, 25, 25, 1.00);
		
	}

	#gatorNavstacks_in_1018 ul ul li a.current,
	#gatorNavstacks_in_1018 ul ul li a.currentAncestor {
		color: rgba(179, 179, 179, 1.00);
		
		background-color: rgba(25, 25, 25, 1.00);
		
	}

	#gatorNavstacks_in_1018 ul ul ul {
		top: 0;
		left: 100%;
		margin: 0;
	}

	#gatorNavstacks_in_1018 ul ul > li {
		display: block;
		margin: 0;
		position: relative;
	}

	#gatorNavstacks_in_1018 ul ul i {
		font-size: 1.25rem;
		position: absolute;
		right: 1.5rem;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#gatorNavstacks_in_1018 ul ul li a,
	#gatorNavstacks_in_1018 ul ul ul li a,
	#gatorNavstacks_in_1018 ul ul ul ul li a,
	#gatorNavstacks_in_1018 ul ul ul ul ul li a,
	#gatorNavstacks_in_1018 ul ul ul ul ul ul li a {
		float: none;
		display: block;
		padding: 1rem 1.5rem 1rem 1.5rem;
		line-height: 1.2;
	}

	#gatorNavstacks_in_1018 ul ul li a.parent-link,
	#gatorNavstacks_in_1018 ul ul ul li a.parent-link,
	#gatorNavstacks_in_1018 ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_1018 ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_1018 ul ul ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_1018 ul ul ul ul ul ul ul ul li a.parent-link {
		padding: 1rem 1.5rem 1rem 1.5rem;
	}

	#gatorNavstacks_in_1018 ul ul {
		margin-top: 0rem;
	}

	#gatorNavstacks_in_1018 ul ul ul {
		margin-left: 0rem;
	}

	#gatorNavstacks_in_1018 > ul > li:hover > ul,
	#gatorNavstacks_in_1018 ul ul.gator-focused {
		opacity: 1.00;
		visibility: visible;
		margin-top: 0;
	}

	#gatorNavstacks_in_1018 > ul > li > ul > li:hover > ul,
	#gatorNavstacks_in_1018 ul ul ul.gator-focused {
		opacity: 1.00;
		visibility: visible;
		margin-top: -0px;
		margin-left: 0;
	}

	/* Styling for touch devices */
	.isTouchDevice #gatorNavstacks_in_1018 ul ul {
		opacity: 1.00;
		visibility: visible;
		-webkit-transition: none;
		transition: none;
		display: none;
	}

	.isTouchDevice #gatorNavstacks_in_1018>ul>li:hover>ul,
	.isTouchDevice #gatorNavstacks_in_1018>ul>li>ul>li:hover>ul,
	.isTouchDevice #gatorNavstacks_in_1018>ul>li>ul>li>ul>li:hover>ul,
	.isTouchDevice #gatorNavstacks_in_1018>ul>li>ul>li>ul>li>ul>li:hover>ul {
		opacity: 1.00;
		visibility: visible;
		display: block;
	}

	

	
	#gatorContentstacks_in_1018 {
		position: relative;
		display: block;
		margin: 0;
	}

	#gatorContentstacks_in_1018 {
		position: relative;
		display: block;
		margin: 0;
		float: none;
		width: 100%;
	}

	#gatorNavstacks_in_1018 {
		list-style:none;
		margin:0;
		padding:0;
		text-align:center;
		min-height: 30px;
	}

	#gatorNavstacks_in_1018 ul {
		min-height: 40px;
	}

	#gatorNavstacks_in_1018 ul li {
		display:inline-block;
		/* Hack to keep IE7 happy */
		*display: inline;
		float: none;
	}

	#gatorNavstacks_in_1018 li a {
		display:inline-block;
	}

	#gatorNavstacks_in_1018 ul ul li,
	#gatorNavstacks_in_1018 ul ul li a {
		display: block;
		float: left;
		text-align: left;
	}
  

  

	

	

	

	

	

	

	
}

/* Additional content  */
#gatorPreContentstacks_in_1018,
#gatorPostContentstacks_in_1018 {
	display: none;
	white-space: nowrap;
}

@media screen and (min-width: 1050px){
  #gatorPreContentstacks_in_1018,
  #gatorPostContentstacks_in_1018{
		max-height: calc(3.5rem + 0px + 0px);
	}
}








/* Hide the stack in print and PDF output */
@media print {
	#gatorstacks_in_1018 {
		display: none;
	}
}



#block_stacks_in_2206 {
    
    
    
    
    padding: 1rem;
}
#stacks_in_1250 {
	font-size: 99%;
}
#spacer_stacks_in_2253 {
    height: 4rem;
}#heading_stacks_in_2251 {
    font-weight: bold;
    
    
    
}
#stacks_in_2252 {
	font-size: 90%;
	font-weight: bold;
}
#spacer_stacks_in_2254 {
    height: 1rem;
}

#intrinsicContainerstacks_in_1230,
#intrinsicContainerstacks_in_1230 *,
#intrinsicContainerstacks_in_1230 *::before,
#intrinsicContainerstacks_in_1230 *::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#intrinsicContainerstacks_in_1230 {
  margin: 0 auto;
  max-width: 1200px;
}



@supports (display: grid) {
  .intrinsicContainer {
    display: grid;
    grid-column-gap: 0;
    grid-row-gap: 0;
    padding: 0em 0em 4em 0em;
    
  }
}

.intrinsicTrack {
  border-top: 0px solid rgba(205, 205, 205, 1.00);
  border-right: 0px solid rgba(205, 205, 205, 1.00);
  border-bottom: 0px solid rgba(205, 205, 205, 1.00);
  border-left: 0px solid rgba(205, 205, 205, 1.00);
  border-radius: 0rem 0rem 0rem 0rem;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(94, 94, 94, 0.25);
}

@supports (display: grid) {
  .intrinsicTrack {
    margin-bottom: 0;
    
    margin-bottom: 0px;
    
  }
}

.intrinsicItemBackground {
  margin: 0px;
  display: table;
  
  
  height: calc(100% - 0px - 0px);
  width: calc(100% - 0px - 0px);
  
  border-radius: 0rem 0rem 0rem 0rem;
}


/* No background */
.intrinsicItemBackground {
	background: none;
}
























.intrinsicTrackContent {
  text-align: left;
  
  
  
  padding: 0 0 0 0;
}


.intrinsicTrackContent {
  display: table-cell;
  
  vertical-align: middle;
  
}


.intrinsicTrackXray {
  display: none;
}









.intrinsicTrack {
    margin-bottom: ;
}

@supports (display: grid) {
    .intrinsicContainer {
        grid-column-gap: ;
        grid-row-gap: ;
    }

    .intrinsicTrack {
        margin-bottom: 0;
    }
}



.intrinsicTrack {
    margin-bottom: 2;
}

@supports (display: grid) {
    .intrinsicContainer {
        grid-column-gap: 2;
        grid-row-gap: 2;
    }

    .intrinsicTrack {
        margin-bottom: 0;
    }
}

/* Start Track Q */





#cell_stacks_in_1364_Q {
  grid-area: Q;
}

#cell_stacks_in_1364_Q {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1364_Q {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
}
 
#cell_stacks_in_1364_Q:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%);
}

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1364_Q #intrinsicItemBackgroundstacks_in_1364 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1364_Q #intrinsicItemBackgroundstacks_in_1364 {
}
























#cell_stacks_in_1364_Q .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1364_Q .intrinsicTrackContent {
    
  }
}


















/* End Track Q */


/* Start Track R */





#cell_stacks_in_1367_R {
  grid-area: R;
}

#cell_stacks_in_1367_R {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1367_R #intrinsicItemBackgroundstacks_in_1367 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1367_R #intrinsicItemBackgroundstacks_in_1367 {
}
























#cell_stacks_in_1367_R .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1367_R .intrinsicTrackContent {
    
  }
}


















/* End Track R */
#block_stacks_in_1368 {
    
    
    
    
    padding: 1rem;
}
#stacks_in_1370 {
	font-size: 95%;
}
#audioPlayerContainerstacks_in_1371 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1371,
#audioPlayerContainerstacks_in_1371:before,
#audioPlayerContainerstacks_in_1371:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1371 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1371 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 2px;
}

#audioPlayerControlsstacks_in_1371 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1371 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1371 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1371 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1371 #audioPlayerPlayPausestacks_in_1371 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1371 #audioPlayerFullScreenstacks_in_1371 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1371 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1371 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1371 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1371 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1371 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1371 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1371 {
		display: none;
	}
}

#progressBarstacks_in_1371 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1371 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1371[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1371 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1371 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1371 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1371:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1371 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1371:hover #volumeButtonstacks_in_1371 {
		display: none;
	}

	#volumeMinstacks_in_1371 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1371 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1371[type=range],
	#volumeMinstacks_in_1371,
	#volumeMaxstacks_in_1371 {
		display: none;
	}

	#volumeMinstacks_in_1371,
	#volumeMaxstacks_in_1371 {
		cursor: pointer;
	}

	#volumestacks_in_1371:hover #volume-barstacks_in_1371,
	#volumestacks_in_1371:hover #volumeMinstacks_in_1371,
	#volumestacks_in_1371:hover #volumeMaxstacks_in_1371 {
		display: inline;
	}

	#volume-barstacks_in_1371[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1371[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1371[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1371[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1371[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1371[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1371[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1371[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1371[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1371[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1371[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1371[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1371[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1371 #audioPlayerFullScreenstacks_in_1371,
	#audioPlayerControlsstacks_in_1371 #volumestacks_in_1371 {
		display: none;
	}
}



#stacks_in_1371 {
	margin:  2px;
}
/* Start Track T */





#cell_stacks_in_1378_T {
  grid-area: T;
}

#cell_stacks_in_1378_T {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1378_T {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	-webkit-filter: sepia(100%);
	-moz-filter: sepia(100%);
	-o-filter: sepia(100%);
	-ms-filter: sepia(100%);
	filter: sepia(100%);
}
 
#cell_stacks_in_1378_T:hover {
	-webkit-filter: sepia(0%);
	-moz-filter: sepia(0%);
	-o-filter: sepia(0%);
	-ms-filter: sepia(0%);
	filter: sepia(0%);
}

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1378_T #intrinsicItemBackgroundstacks_in_1378 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1378_T #intrinsicItemBackgroundstacks_in_1378 {
}
























#cell_stacks_in_1378_T .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1378_T .intrinsicTrackContent {
    
  }
}


















/* End Track T */


/* Start Track UT */





#cell_stacks_in_1381_UT {
  grid-area: UT;
}

#cell_stacks_in_1381_UT {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1381_UT #intrinsicItemBackgroundstacks_in_1381 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1381_UT #intrinsicItemBackgroundstacks_in_1381 {
}
























#cell_stacks_in_1381_UT .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1381_UT .intrinsicTrackContent {
    
  }
}


















/* End Track UT */
#block_stacks_in_1382 {
    
    
    
    
    padding: 1rem;
}#audioPlayerContainerstacks_in_1386 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1386,
#audioPlayerContainerstacks_in_1386:before,
#audioPlayerContainerstacks_in_1386:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1386 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1386 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 2px;
}

#audioPlayerControlsstacks_in_1386 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1386 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1386 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1386 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1386 #audioPlayerPlayPausestacks_in_1386 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1386 #audioPlayerFullScreenstacks_in_1386 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1386 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1386 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1386 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1386 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1386 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1386 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1386 {
		display: none;
	}
}

#progressBarstacks_in_1386 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1386 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1386[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1386 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1386 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1386 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1386:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1386 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1386:hover #volumeButtonstacks_in_1386 {
		display: none;
	}

	#volumeMinstacks_in_1386 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1386 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1386[type=range],
	#volumeMinstacks_in_1386,
	#volumeMaxstacks_in_1386 {
		display: none;
	}

	#volumeMinstacks_in_1386,
	#volumeMaxstacks_in_1386 {
		cursor: pointer;
	}

	#volumestacks_in_1386:hover #volume-barstacks_in_1386,
	#volumestacks_in_1386:hover #volumeMinstacks_in_1386,
	#volumestacks_in_1386:hover #volumeMaxstacks_in_1386 {
		display: inline;
	}

	#volume-barstacks_in_1386[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1386[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1386[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1386[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1386[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1386[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1386[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1386[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1386[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1386[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1386[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1386[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1386[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1386 #audioPlayerFullScreenstacks_in_1386,
	#audioPlayerControlsstacks_in_1386 #volumestacks_in_1386 {
		display: none;
	}
}



#stacks_in_1386 {
	margin:  2px;
}
/* Start Track U */





#cell_stacks_in_1388_U {
  grid-area: U;
}

#cell_stacks_in_1388_U {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1388_U {
	-webkit-filter: invert(100%); 
	-moz-filter: invert(100%); 
	-o-filter: invert(100%); 
	-ms-filter: invert(100%);
	filter: invert(100%);
	
	-webkit-transition: all ms ease-in-out;
	-moz-transition: all ms ease-in-out;
	-o-transition: all ms ease-in-out;
	-ms-transition: all ms ease-in-out;
	transition: all ms ease-in-out;
}
 
#cell_stacks_in_1388_U:hover {
	-webkit-filter: invert(0%);
	-moz-filter: invert(0%);
	-o-filter: invert(0%);
	-ms-filter: invert(0%);
	filter: invert(0%);
}

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1388_U #intrinsicItemBackgroundstacks_in_1388 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1388_U #intrinsicItemBackgroundstacks_in_1388 {
}
























#cell_stacks_in_1388_U .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1388_U .intrinsicTrackContent {
    
  }
}


















/* End Track U */


/* Start Track W */





#cell_stacks_in_1391_W {
  grid-area: W;
}

#cell_stacks_in_1391_W {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1391_W #intrinsicItemBackgroundstacks_in_1391 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1391_W #intrinsicItemBackgroundstacks_in_1391 {
}
























#cell_stacks_in_1391_W .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1391_W .intrinsicTrackContent {
    
  }
}


















/* End Track W */
/* Start Track TT */





#cell_stacks_in_1399_TT {
  grid-area: TT;
}

#cell_stacks_in_1399_TT {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1399_TT #intrinsicItemBackgroundstacks_in_1399 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1399_TT #intrinsicItemBackgroundstacks_in_1399 {
}
























#cell_stacks_in_1399_TT .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1399_TT .intrinsicTrackContent {
    
  }
}


















/* End Track TT */
#block_stacks_in_1400 {
    
    
    
    
    padding: 1rem;
}#audioPlayerContainerstacks_in_1403 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1403,
#audioPlayerContainerstacks_in_1403:before,
#audioPlayerContainerstacks_in_1403:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1403 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1403 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 2px;
}

#audioPlayerControlsstacks_in_1403 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1403 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1403 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1403 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1403 #audioPlayerPlayPausestacks_in_1403 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1403 #audioPlayerFullScreenstacks_in_1403 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1403 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1403 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1403 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1403 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1403 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1403 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1403 {
		display: none;
	}
}

#progressBarstacks_in_1403 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1403 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1403[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1403 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1403 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1403 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1403:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1403 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1403:hover #volumeButtonstacks_in_1403 {
		display: none;
	}

	#volumeMinstacks_in_1403 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1403 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1403[type=range],
	#volumeMinstacks_in_1403,
	#volumeMaxstacks_in_1403 {
		display: none;
	}

	#volumeMinstacks_in_1403,
	#volumeMaxstacks_in_1403 {
		cursor: pointer;
	}

	#volumestacks_in_1403:hover #volume-barstacks_in_1403,
	#volumestacks_in_1403:hover #volumeMinstacks_in_1403,
	#volumestacks_in_1403:hover #volumeMaxstacks_in_1403 {
		display: inline;
	}

	#volume-barstacks_in_1403[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1403[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1403[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1403[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1403[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1403[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1403[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1403[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1403[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1403[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1403[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1403[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1403[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1403 #audioPlayerFullScreenstacks_in_1403,
	#audioPlayerControlsstacks_in_1403 #volumestacks_in_1403 {
		display: none;
	}
}



#stacks_in_1403 {
	margin:  2px;
}
/* Start Track V */





#cell_stacks_in_1406_V {
  grid-area: V;
}

#cell_stacks_in_1406_V {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

#cell_stacks_in_1406_V {
	-webkit-filter: brightness(80%); 
	-moz-filter: brightness(80%); 
	-o-filter: brightness(80%); 
	-ms-filter: brightness(80%);
	filter: brightness(80%);
	
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
 
#cell_stacks_in_1406_V:hover {
	-webkit-filter: brightness(120%);
	-moz-filter: brightness(120%);
	-o-filter: brightness(120%);
	-ms-filter: brightness(120%);
	filter: brightness(120%);
}

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1406_V #intrinsicItemBackgroundstacks_in_1406 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1406_V #intrinsicItemBackgroundstacks_in_1406 {
}
























#cell_stacks_in_1406_V .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1406_V .intrinsicTrackContent {
    
  }
}


















/* End Track V */


/* Start Track VT */





#cell_stacks_in_1409_VT {
  grid-area: VT;
}

#cell_stacks_in_1409_VT {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1409_VT #intrinsicItemBackgroundstacks_in_1409 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1409_VT #intrinsicItemBackgroundstacks_in_1409 {
}
























#cell_stacks_in_1409_VT .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1409_VT .intrinsicTrackContent {
    
  }
}


















/* End Track VT */
#block_stacks_in_1410 {
    
    
    
    
    padding: 1rem;
}#audioPlayerContainerstacks_in_1413 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1413,
#audioPlayerContainerstacks_in_1413:before,
#audioPlayerContainerstacks_in_1413:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1413 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1413 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 2px;
}

#audioPlayerControlsstacks_in_1413 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1413 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1413 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1413 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1413 #audioPlayerPlayPausestacks_in_1413 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1413 #audioPlayerFullScreenstacks_in_1413 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1413 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1413 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1413 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1413 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1413 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1413 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1413 {
		display: none;
	}
}

#progressBarstacks_in_1413 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1413 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1413[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1413 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1413 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1413 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1413:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1413 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1413:hover #volumeButtonstacks_in_1413 {
		display: none;
	}

	#volumeMinstacks_in_1413 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1413 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1413[type=range],
	#volumeMinstacks_in_1413,
	#volumeMaxstacks_in_1413 {
		display: none;
	}

	#volumeMinstacks_in_1413,
	#volumeMaxstacks_in_1413 {
		cursor: pointer;
	}

	#volumestacks_in_1413:hover #volume-barstacks_in_1413,
	#volumestacks_in_1413:hover #volumeMinstacks_in_1413,
	#volumestacks_in_1413:hover #volumeMaxstacks_in_1413 {
		display: inline;
	}

	#volume-barstacks_in_1413[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1413[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1413[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1413[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1413[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1413[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1413[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1413[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1413[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1413[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1413[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1413[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1413[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1413 #audioPlayerFullScreenstacks_in_1413,
	#audioPlayerControlsstacks_in_1413 #volumestacks_in_1413 {
		display: none;
	}
}



#stacks_in_1413 {
	margin:  2px;
}
/* Start Track XT */





#cell_stacks_in_1416_XT {
  grid-area: XT;
}

#cell_stacks_in_1416_XT {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1416_XT #intrinsicItemBackgroundstacks_in_1416 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1416_XT #intrinsicItemBackgroundstacks_in_1416 {
}
























#cell_stacks_in_1416_XT .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1416_XT .intrinsicTrackContent {
    
  }
}


















/* End Track XT */
#block_stacks_in_1417 {
    
    
    
    
    padding: 1rem;
}#audioPlayerContainerstacks_in_1420 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1420,
#audioPlayerContainerstacks_in_1420:before,
#audioPlayerContainerstacks_in_1420:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1420 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1420 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 2px;
}

#audioPlayerControlsstacks_in_1420 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1420 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1420 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1420 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1420 #audioPlayerPlayPausestacks_in_1420 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1420 #audioPlayerFullScreenstacks_in_1420 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1420 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1420 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1420 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1420 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1420 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1420 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1420 {
		display: none;
	}
}

#progressBarstacks_in_1420 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1420 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1420[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1420 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1420 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1420 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1420:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1420 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1420:hover #volumeButtonstacks_in_1420 {
		display: none;
	}

	#volumeMinstacks_in_1420 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1420 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1420[type=range],
	#volumeMinstacks_in_1420,
	#volumeMaxstacks_in_1420 {
		display: none;
	}

	#volumeMinstacks_in_1420,
	#volumeMaxstacks_in_1420 {
		cursor: pointer;
	}

	#volumestacks_in_1420:hover #volume-barstacks_in_1420,
	#volumestacks_in_1420:hover #volumeMinstacks_in_1420,
	#volumestacks_in_1420:hover #volumeMaxstacks_in_1420 {
		display: inline;
	}

	#volume-barstacks_in_1420[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1420[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1420[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1420[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1420[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1420[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1420[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1420[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1420[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1420[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1420[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1420[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1420[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1420 #audioPlayerFullScreenstacks_in_1420,
	#audioPlayerControlsstacks_in_1420 #volumestacks_in_1420 {
		display: none;
	}
}



#stacks_in_1420 {
	margin:  2px;
}
/* Start Track X */





#cell_stacks_in_1423_X {
  grid-area: X;
}

#cell_stacks_in_1423_X {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1423_X {
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
	-o-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#cell_stacks_in_1423_X:hover { 
	-webkit-transform: scale(1.10);
	-moz-transform: scale(1.10);
	-o-transform: scale(1.10);
	-ms-transform: scale(1.10);
	transform: scale(1.10);
}

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1423_X #intrinsicItemBackgroundstacks_in_1423 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1423_X #intrinsicItemBackgroundstacks_in_1423 {
}
























#cell_stacks_in_1423_X .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1423_X .intrinsicTrackContent {
    
  }
}


















/* End Track X */


/* Start Track YT */





#cell_stacks_in_1426_YT {
  grid-area: YT;
}

#cell_stacks_in_1426_YT {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1426_YT #intrinsicItemBackgroundstacks_in_1426 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1426_YT #intrinsicItemBackgroundstacks_in_1426 {
}
























#cell_stacks_in_1426_YT .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1426_YT .intrinsicTrackContent {
    
  }
}


















/* End Track YT */
#block_stacks_in_1427 {
    
    
    
    
    padding: 1rem;
}#audioPlayerContainerstacks_in_1430 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_1430,
#audioPlayerContainerstacks_in_1430:before,
#audioPlayerContainerstacks_in_1430:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_1430 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1430 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 0px;
}

#audioPlayerControlsstacks_in_1430 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_1430 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_1430 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_1430 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_1430 #audioPlayerPlayPausestacks_in_1430 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_1430 #audioPlayerFullScreenstacks_in_1430 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_1430 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 12px;
}

#audioPlayerCurrentTimestacks_in_1430 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_1430 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_1430 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_1430 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_1430 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_1430 {
		display: none;
	}
}

#progressBarstacks_in_1430 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_1430 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_1430[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_1430 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_1430 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_1430 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1430:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_1430 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_1430:hover #volumeButtonstacks_in_1430 {
		display: none;
	}

	#volumeMinstacks_in_1430 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_1430 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_1430[type=range],
	#volumeMinstacks_in_1430,
	#volumeMaxstacks_in_1430 {
		display: none;
	}

	#volumeMinstacks_in_1430,
	#volumeMaxstacks_in_1430 {
		cursor: pointer;
	}

	#volumestacks_in_1430:hover #volume-barstacks_in_1430,
	#volumestacks_in_1430:hover #volumeMinstacks_in_1430,
	#volumestacks_in_1430:hover #volumeMaxstacks_in_1430 {
		display: inline;
	}

	#volume-barstacks_in_1430[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_1430[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1430[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_1430[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_1430[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1430[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1430[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1430[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_1430[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1430[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_1430[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_1430[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_1430[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_1430 #audioPlayerFullScreenstacks_in_1430,
	#audioPlayerControlsstacks_in_1430 #volumestacks_in_1430 {
		display: none;
	}
}


/* Start Track Y */





#cell_stacks_in_1433_Y {
  grid-area: Y;
}

#cell_stacks_in_1433_Y {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1433_Y {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
}
 
#cell_stacks_in_1433_Y:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%);
}

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1433_Y #intrinsicItemBackgroundstacks_in_1433 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1433_Y #intrinsicItemBackgroundstacks_in_1433 {
}
























#cell_stacks_in_1433_Y .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1433_Y .intrinsicTrackContent {
    
  }
}


















/* End Track Y */


/* Start Track Z */





#cell_stacks_in_1436_Z {
  grid-area: Z;
}

#cell_stacks_in_1436_Z {
  
  position: relative;
  
}

/* Start Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#cell_stacks_in_1436_Z {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	-webkit-filter: sepia(100%);
	-moz-filter: sepia(100%);
	-o-filter: sepia(100%);
	-ms-filter: sepia(100%);
	filter: sepia(100%);
}
 
#cell_stacks_in_1436_Z:hover {
	-webkit-filter: sepia(0%);
	-moz-filter: sepia(0%);
	-o-filter: sepia(0%);
	-ms-filter: sepia(0%);
	filter: sepia(0%);
}

/*  */

/* End special effects */



/* The minimum height of the grid item, in browsers that do not support CSS grid */
@supports not (display: grid) {
	#cell_stacks_in_1436_Z #intrinsicItemBackgroundstacks_in_1436 {
	  min-height: 100vh;
	}
}


/* No background */
#cell_stacks_in_1436_Z #intrinsicItemBackgroundstacks_in_1436 {
}
























#cell_stacks_in_1436_Z .intrinsicTrackContent {
  
  
}

@supports (display: grid) {
  /* Code that will only run if CSS Grid is supported by the browser  */
  #cell_stacks_in_1436_Z .intrinsicTrackContent {
    
  }
}


















/* End Track Z */



#stacks_in_580 {
	padding:  3px;
}
#heading_stacks_in_377 {
    font-weight: bold;
    
    
    
}
#stacks_in_378 {
	font-size: 90%;
	font-weight: bold;
}
#spacer_stacks_in_1836 {
    height: 1rem;
}/* @group Basics */

#switcherstacks_in_432,
#switcherstacks_in_432 * {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

#switcherstacks_in_432 {
	display: none;
}

/* Reset for lists within Switcher */

#switcherstacks_in_432 ul ul {
	list-style-type: disc;
}

/* @end */

/* @group Accordion */

ul#accordionInterfacestacks_in_432 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#accordionInterfacestacks_in_432>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Static accordion */

#accordionInterfacestacks_in_432 .accordion-toggle,
#mydiv .accordion-toggle {
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	cursor: pointer;
	background: rgba(179, 179, 179, 1.00);
	line-height: 45px;
	display: block;
	font-size: 16px;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	color: rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
}

#accordionInterfacestacks_in_432 .accordion-toggle [class^="fa fa-"],
#mydiv .accordion-toggle [class^="fa fa-"],
#accordionInterfacestacks_in_432 .accordion-toggle i,
#mydiv .accordion-toggle i {
	font-size: 18px;
	color: rgba(255, 255, 255, 1.00);
	width: 25px;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	line-height: 1;
	vertical-align: middle;
}

/* Hovered accordion */

#accordionInterfacestacks_in_432 .accordion-toggle:hover,
#mydiv .accordion-toggle:hover {
	background: rgba(0, 128, 255, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_432 .accordion-toggle:hover [class^="fa fa-"],
#mydiv .accordion-toggle:hover [class^="fa fa-"],
#accordionInterfacestacks_in_432 .accordion-toggle:hover i,
#mydiv .accordion-toggle:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked accordion */

#accordionInterfacestacks_in_432 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 128, 255, 1.00);
}

#accordionInterfacestacks_in_432 .accordion-toggle:active [class^="fa fa-"],
#mydiv .accordion-toggle:active [class^="fa fa-"],
#accordionInterfacestacks_in_432 .accordion-toggle:active i,
#mydiv .accordion-toggle:active i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active accordion */

#accordionInterfacestacks_in_432 .accordion-toggle.ui-state-active,
#mydiv .accordion-toggle.ui-state-active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 128, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_432 .accordion-toggle.ui-state-active [class^="fa fa-"],
#mydiv .accordion-toggle.ui-state-active [class^="fa fa-"],
#accordionInterfacestacks_in_432 .accordion-toggle.ui-state-active i,
#mydiv .accordion-toggle.ui-state-active i {
	color: rgba(255, 255, 255, 1.00);
}

/* @group Open and closed floating icons */

#accordionInterfacestacks_in_432 .accordion-toggle .closedIcon,
#mydiv .accordion-toggle .closedIcon {
	float: right;
	display: inline;
}

#accordionInterfacestacks_in_432 .accordion-toggle .openedIcon,
#mydiv .accordion-toggle .openedIcon {
	float: right;
	display: none;
}

#accordionInterfacestacks_in_432 .accordion-toggle.ui-state-active .closedIcon,
#mydiv .accordion-toggle.ui-state-active .closedIcon {
	display: none;
}

#accordionInterfacestacks_in_432 .accordion-toggle.ui-state-active .openedIcon,
#mydiv .accordion-toggle.ui-state-active .openedIcon {
	display: inline;
}

/* @end */

/* @end */

/* @group Tabs */

ul#tabbedInterfacestacks_in_432 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#tabbedInterfacestacks_in_432>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_432 {
	display: block;
	text-align: right;
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_432 li.switcherTab {
	display: inline-block;
	list-style: none;
	width: 20.00%;
}



/* Static tabs */

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a {
	display: block;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
	cursor: pointer;
	background: rgba(255, 255, 255, 1.00);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 16px;
	line-height: 1.25em;
	text-align: center;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	color: rgba(51, 51, 51, 1.00);
	border-top: 1px solid rgba(255, 255, 255, 1.00);
	border-bottom: 1px solid rgba(179, 179, 179, 1.00);
	border-left: 1px solid rgba(255, 255, 255, 1.00);
	border-right: 1px solid rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a [class^="fa fa-"],
ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a i {
	display: block;
	font-size: 48px;
	text-align: center;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1;
	vertical-align: middle;
	margin-top: 0px !important;
	margin-bottom: 10px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

/* Hovered Tabs */

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a:hover {
	background: rgba(204, 204, 204, 1.00);
	color: rgba(51, 51, 51, 1.00);
	border-top: 1px solid rgba(255, 255, 255, 1.00);
	border-bottom: 1px solid rgba(179, 179, 179, 1.00);
	border-left: 1px solid rgba(255, 255, 255, 1.00);
	border-right: 1px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a:hover [class^="fa fa-"],
ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked tabs */

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default a:active {
	color: rgba(51, 51, 51, 1.00);
	background: rgba(255, 255, 255, 1.00);
}

ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default [class^="fa fa-"],
ul#switcherTabsstacks_in_432 li.switcherTab.ui-state-default i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active Tabs */

ul#switcherTabsstacks_in_432 li.switcherTab.ui-tabs-active.ui-state-active a {
	background: rgba(255, 255, 255, 1.00);
	color: rgba(0, 128, 255, 1.00);
	border-top: 1px solid rgba(179, 179, 179, 1.00);
	border-bottom: 1px solid rgba(255, 255, 255, 1.00);
	border-left: 1px solid rgba(179, 179, 179, 1.00);
	border-right: 1px solid rgba(179, 179, 179, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_432 li.switcherTab.ui-tabs-active.ui-state-active a [class^="fa fa-"],
ul#switcherTabsstacks_in_432 li.switcherTab.ui-tabs-active.ui-state-active a i {
	color: rgba(255, 255, 255, 1.00);
}

/* Hide accordion toggle headings */

#tabPanesstacks_in_432 a.accordion-toggle {
	display: none;
}

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_432.tabbed-layout #accordionInterfacestacks_in_432 {
	display: none;
}

/* Display tabbed interface, when in tabs mode */

#switcherstacks_in_432.tabbed-layout #tabbedInterfacestacks_in_432 {
	display: block;
}

/* Hide tabbed interface, when in accordion mode */

#switcherstacks_in_432.accordion-layout #tabbedInterfacestacks_in_432 {
	display: none;
}


/* Hide open / close accordion heading icons */

ul#switcherTabsstacks_in_432 .closedIcon,
ul#switcherTabsstacks_in_432 .openedIcon {
	display: none;
}

/* @end */

/* @group Content Panels */

#tabbedInterfacestacks_in_432 .accordion-content,
#accordionInterfacestacks_in_432 .accordion-content {
	display: none;
	list-style: none;
	padding: 0;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#tabbedInterfacestacks_in_432 .accordion-content .contentInner,
#accordionInterfacestacks_in_432 .accordion-content .contentInner {
	color: rgba(51, 51, 51, 1.00);
	background: rgba(255, 255, 255, 1.00);
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 0px 0px 0px 0px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
}

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

/* On screens less than our breakpoint, make tabs an accordion */
@media screen and (max-width: 600px) {
	#switcherstacks_in_432 #accordionInterfacestacks_in_432 {
		display: block !important;
	}
	
	#switcherstacks_in_432 #tabbedInterfacestacks_in_432 {
		display: none !important;
	}
}

/* @end */

/* @group Print style settings */

@media print {
	#switcherTabsstacks_in_432 {
		display: none !important;
	}
	
	#switcherWrapperstacks_in_432,
	#switcherstacks_in_432.tabbed-layout .accordion-toggle {
		display: block !important;
	}
	
	#switcherstacks_in_432 .accordion-content {
		display: block !important;
		height: auto !important;
	}
	
	#switcherstacks_in_432 .accordion-content .contentInner {
		border: none !important;
	}
}

/* @end */

/* @group Advanced Settings */

/**/

/**/

/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_432 {
	background-color: rgba(255, 255, 255, 1.00);
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */

#stacks_in_2223 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_2223 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_2223 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_2223 .owl-prev,
#stacks_in_2223 .owl-next {
  font-size: 1rem;
  font-weight: normal;
  border: none;
  margin: 0px 5px;
  border-radius: 0.8rem;
  padding: 0.4rem 1.2rem;
  background: rgba(15, 128, 255, 1.00);
  border: 1px solid rgba(15, 128, 255, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_2223 .owl-prev:focus,
#stacks_in_2223 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_2223 .owl-prev:active,
#stacks_in_2223 .owl-next:active {
  background: rgba(253, 128, 8, 1.00);
  border: 1px solid rgba(253, 128, 8, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_2223 .owl-prev.disabled,
#stacks_in_2223 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}




#stacks_in_2223 .owl-nav {
  text-align: center;
}








#spacer_stacks_in_2256 {
    height: 1rem;
}#spacer_stacks_in_2257 {
    height: 1rem;
}#spacer_stacks_in_2258 {
    height: 1rem;
}#spacer_stacks_in_2259 {
    height: 1rem;
}/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */#spacer_stacks_in_1715 {
    height: 1rem;
}#block_stacks_in_1711 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_1039 {
    height: 1rem;
}#block_stacks_in_1035 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_530 {
    height: 1rem;
}/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */#spacer_stacks_in_2167 {
    height: 1rem;
}.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .80);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}
















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 0.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_1964 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}




#topBoxTriggerRegionstacks_in_1964 {
	
    text-align: center;
	
}




#topBoxTriggerRegionstacks_in_1964 #topBoxTriggerContentstacks_in_1964 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_1964 #topBoxTriggerContentstacks_in_1964 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_1964 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_1964 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_1964 h1,
#topBoxContentWrapperstacks_in_1964 h2,
#topBoxContentWrapperstacks_in_1964 h3,
#topBoxContentWrapperstacks_in_1964 h4,
#topBoxContentWrapperstacks_in_1964 h5,
#topBoxContentWrapperstacks_in_1964 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_1964 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_1964 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_1964 a:hover,
#topBoxContentWrapperstacks_in_1964 a:focus,
#topBoxContentWrapperstacks_in_1964 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_1964 .topBoxAudio,
#topBoxContentWrapperstacks_in_1964 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_1964.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_1964 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_1964 .trackName,
#topBoxContentWrapperstacks_in_1964 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_1964 {
	display: none;
}









#block_stacks_in_2071 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2085 {
    height: 1rem;
}#block_stacks_in_2069 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2073 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2075 {
    
    
    
    
    padding: 1rem;
}

#block_stacks_in_2083 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2079 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2081 {
    
    
    
    
    padding: 1rem;
}

#block_stacks_in_2077 {
    
    
    
    
    padding: 1rem;
}/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */#spacer_stacks_in_2093 {
    height: 1rem;
}
#tabsstacks_in_2094 {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: block;
}

#tabsstacks_in_2094 li {
  display: block;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

#tabsstacks_in_2094 li .tabtastic-button {
  padding: 10px 20px 10px 20px;
  margin: 5px 0px 5px 0px;
  cursor: pointer;
  background: rgba(93, 102, 117, 1.00);
  font-size: 16px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px 5px 5px 5px;
  transition: all 0ms ease-in-out;
  
	
  
  
  
  text-align: center;
  
  
}

@media screen and (min-width: 800px) {
  #tabsstacks_in_2094 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  #tabsstacks_in_2094 li {
      display: inline-block;
      flex-grow: 1;
  }

  #tabsstacks_in_2094 li .tabtastic-button {
    padding: 10px 20px 10px 20px;
    margin: 0px 10px 0px 10px;
  }

  #tabsstacks_in_2094 li:first-child .tabtastic-button {
    margin-left: 0;
  }

  #tabsstacks_in_2094 li:last-child .tabtastic-button {
    margin-right: 0;
  }
}

#tabsstacks_in_2094 li .tabtastic-button:hover {
  background: rgba(153, 153, 153, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#tabsstacks_in_2094 li.current .tabtastic-button {
  background: rgba(253, 128, 8, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

.tabtastic-content{
  display: none;
  padding: 10px 0px 10px 0px;
  margin: 0px 0px 0px 0px;
  background-color: rgba(255, 255, 255, 0.00);
}

.tabtastic-content.current{
  display: inherit;
}
#block_stacks_in_2096 {
    
    
    
    
    padding: 1rem;
}#rule_stacks_in_2100 {
    margin: 1rem 0;
}

#toggleWrapper_stacks_in_2101 {
	display: block;
	position: relative;
	z-index: 1;
}

#spaceDE {
	padding: 5px;
	margin: 0;
	font-weight: normal;
	display: block;
	color: rgba(102, 102, 102, 1.00);
	text-decoration: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-size: 100%;
	line-height: 20px;
}


#spaceDE {
	background: transparent;
}















	
#spaceDE:hover { 
	color: rgba(179, 179, 179, 1.00);
	cursor: pointer; 
}

/* Toggle Button */

#spaceDE .normalContent {
	display: inherit;
}

#spaceDE .hoveredContent {
	display: none;
}

#spaceDE:hover .normalContent {
	display: none;
}

#spaceDE:hover .hoveredContent {
	display: inherit;
}

/* Local Image Buttons */


/* Warehoused Image Buttons */


/* Font Awesone Icon Buttons */



#toggleContainer_stacks_in_2101 {
	display: none;
	margin-top: 5px;
	padding: 0px;
	overflow: hidden;
	color: rgba(102, 102, 102, 1.00);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}


#toggleContainer_stacks_in_2101 {
	background: transparent;
}












@media print {
	#toggleButtonstacks_in_2101,
	#toggleButtonstacks_in_2101.toggleOpenIcon,
	#toggleButtonstacks_in_2101.toggleCloseIcon,
	#spaceDE a:link:after,
	#spaceDE a:visited:after {
		display: none !important;
	}
	
	#toggleContainer_stacks_in_2101 {
		display: block !important;
	}
}
#block_stacks_in_2105 {
    
    
    
    
    padding: ;
}#block_stacks_in_2112 {
    
    
    
    
    padding: 1rem;
}#rule_stacks_in_2116 {
    margin: 1rem 0;
}

#toggleWrapper_stacks_in_2117 {
	display: block;
	position: relative;
	z-index: 1;
}

#KarpmanDE {
	padding: 5px;
	margin: 0;
	font-weight: normal;
	display: block;
	color: rgba(102, 102, 102, 1.00);
	text-decoration: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-size: 100%;
	line-height: 20px;
}


#KarpmanDE {
	background: transparent;
}















	
#KarpmanDE:hover { 
	color: rgba(179, 179, 179, 1.00);
	cursor: pointer; 
}

/* Toggle Button */

#KarpmanDE .normalContent {
	display: inherit;
}

#KarpmanDE .hoveredContent {
	display: none;
}

#KarpmanDE:hover .normalContent {
	display: none;
}

#KarpmanDE:hover .hoveredContent {
	display: inherit;
}

/* Local Image Buttons */


/* Warehoused Image Buttons */


/* Font Awesone Icon Buttons */



#toggleContainer_stacks_in_2117 {
	display: none;
	margin-top: 5px;
	padding: 0px;
	overflow: hidden;
	color: rgba(102, 102, 102, 1.00);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}


#toggleContainer_stacks_in_2117 {
	background: transparent;
}












@media print {
	#toggleButtonstacks_in_2117,
	#toggleButtonstacks_in_2117.toggleOpenIcon,
	#toggleButtonstacks_in_2117.toggleCloseIcon,
	#KarpmanDE a:link:after,
	#KarpmanDE a:visited:after {
		display: none !important;
	}
	
	#toggleContainer_stacks_in_2117 {
		display: block !important;
	}
}
#block_stacks_in_2121 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2128 {
    
    
    
    
    padding: 1rem;
}#rule_stacks_in_2248 {
    margin: 1rem 0;
}


#stacks_in_2247 {
	font-size: 90%;
}
#rule_stacks_in_2132 {
    margin: 2rem 0;
}

#toggleWrapper_stacks_in_2133 {
	display: block;
	position: relative;
	z-index: 1;
}

#SustainDE {
	padding: 5px;
	margin: 0;
	font-weight: normal;
	display: block;
	color: rgba(102, 102, 102, 1.00);
	text-decoration: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-size: 100%;
	line-height: 20px;
}


#SustainDE {
	background: transparent;
}















	
#SustainDE:hover { 
	color: rgba(179, 179, 179, 1.00);
	cursor: pointer; 
}

/* Toggle Button */

#SustainDE .normalContent {
	display: inherit;
}

#SustainDE .hoveredContent {
	display: none;
}

#SustainDE:hover .normalContent {
	display: none;
}

#SustainDE:hover .hoveredContent {
	display: inherit;
}

/* Local Image Buttons */


/* Warehoused Image Buttons */


/* Font Awesone Icon Buttons */



#toggleContainer_stacks_in_2133 {
	display: none;
	margin-top: 5px;
	padding: 0px;
	overflow: hidden;
	color: rgba(102, 102, 102, 1.00);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}


#toggleContainer_stacks_in_2133 {
	background: transparent;
}












@media print {
	#toggleButtonstacks_in_2133,
	#toggleButtonstacks_in_2133.toggleOpenIcon,
	#toggleButtonstacks_in_2133.toggleCloseIcon,
	#SustainDE a:link:after,
	#SustainDE a:visited:after {
		display: none !important;
	}
	
	#toggleContainer_stacks_in_2133 {
		display: block !important;
	}
}
#block_stacks_in_2137 {
    
    
    
    
    padding: ;
}#spacer_stacks_in_2474 {
    height: 3rem;
}#spacer_stacks_in_1838 {
    height: 1em;
}#btn_stacks_in_1837 a {
    text-decoration: none;
    text-align: center;
}

#spacer_stacks_in_586 {
    height: 5rem;
}#heading_stacks_in_564 {
    font-weight: bold;
    
    
    
}
#stacks_in_565 {
	font-size: 90%;
	font-weight: bold;
}
#spacer_stacks_in_1077 {
    height: 1rem;
}/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_2279 *,
#adaptiveGridstacks_in_2279 *:before,
#adaptiveGridstacks_in_2279 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_2279 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_2279 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_2279:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_2279 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_2279 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_2279 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_2279 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .column1 {
		width: 33.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .column1 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .column2 {
		width: 10.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .column2 {
		width: 2.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .column2 {
		width: 2.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .column3 {
		width: 30.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .column3 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .column4 {
		width: 40.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .column4 {
		width: 40.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2279 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_2279 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2279 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_2279 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2279 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_2279 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2279 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_2279 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_2279 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_2279 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_2279 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_2279 .column1,
	#adaptiveGridstacks_in_2279 .column2,
	#adaptiveGridstacks_in_2279 .column3,
	#adaptiveGridstacks_in_2279 .column4,
	#adaptiveGridstacks_in_2279 .column5,
	#adaptiveGridstacks_in_2279 .column6,
	#adaptiveGridstacks_in_2279 .column7,
	#adaptiveGridstacks_in_2279 .column8,
	#adaptiveGridstacks_in_2279 .column9,
	#adaptiveGridstacks_in_2279 .column10,
	#adaptiveGridstacks_in_2279 .column11,
	#adaptiveGridstacks_in_2279 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_2279 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */

#stacks_in_2260 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_2260 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_2260 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_2260 .owl-prev,
#stacks_in_2260 .owl-next {
  font-size: 1rem;
  font-weight: normal;
  border: none;
  margin: 0px 5px;
  border-radius: 0.2rem;
  padding: 0.4rem 1.2rem;
  background: rgba(128, 128, 128, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_2260 .owl-prev:focus,
#stacks_in_2260 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_2260 .owl-prev:active,
#stacks_in_2260 .owl-next:active {
  background: rgba(253, 128, 8, 1.00);
  border: 1px solid rgba(253, 128, 8, 1.00);
  color: rgba(102, 102, 102, 1.00);
}

#stacks_in_2260 .owl-prev.disabled,
#stacks_in_2260 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_2260 .owl-prev {
  margin-left: 0;
}

#stacks_in_2260 .owl-next {
  float: right;
  margin-right: 0;
}





#stacks_out_2260 {
	margin-left:0;
}



#stacks_in_887 {
	font-weight: bold;
}
#spacer_stacks_in_2419 {
    height: 1rem;
}







#audioPlayerContainerstacks_in_943 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_943,
#audioPlayerContainerstacks_in_943:before,
#audioPlayerContainerstacks_in_943:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_943 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_943 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 1px;
}

#audioPlayerControlsstacks_in_943 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_943 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_943 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_943 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_943 #audioPlayerPlayPausestacks_in_943 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_943 #audioPlayerFullScreenstacks_in_943 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_943 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 10px;
}

#audioPlayerCurrentTimestacks_in_943 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_943 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_943 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_943 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_943 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_943 {
		display: none;
	}
}

#progressBarstacks_in_943 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_943 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_943[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_943[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_943 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_943 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_943 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_943:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_943 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_943:hover #volumeButtonstacks_in_943 {
		display: none;
	}

	#volumeMinstacks_in_943 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_943 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_943[type=range],
	#volumeMinstacks_in_943,
	#volumeMaxstacks_in_943 {
		display: none;
	}

	#volumeMinstacks_in_943,
	#volumeMaxstacks_in_943 {
		cursor: pointer;
	}

	#volumestacks_in_943:hover #volume-barstacks_in_943,
	#volumestacks_in_943:hover #volumeMinstacks_in_943,
	#volumestacks_in_943:hover #volumeMaxstacks_in_943 {
		display: inline;
	}

	#volume-barstacks_in_943[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_943[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_943[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_943[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_943[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_943[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_943[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_943[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_943[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_943[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_943[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_943[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_943[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_943 #audioPlayerFullScreenstacks_in_943,
	#audioPlayerControlsstacks_in_943 #volumestacks_in_943 {
		display: none;
	}
}








#audioPlayerContainerstacks_in_2424 {
	position: relative;
	z-index: 1;
}

#audioPlayerContainerstacks_in_2424,
#audioPlayerContainerstacks_in_2424:before,
#audioPlayerContainerstacks_in_2424:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#audioPlayerstacks_in_2424 {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_2424 {
	position: relative;
	z-index: 5;
	overflow: hidden;
	border-radius: 1px;
}

#audioPlayerControlsstacks_in_2424 [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
}








/* Vertical gradient fill */
#audioPlayerControlsstacks_in_2424 {
	background-color: #EAEAEA;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#EAEAEA), to(#CDCDCD));
	background-image: -moz-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -ms-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(100%, #CDCDCD));
	background-image: -webkit-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: -o-linear-gradient(top, #EAEAEA, #CDCDCD);
	background-image: linear-gradient(top, #EAEAEA, #CDCDCD);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#CDCDCD', GradientType=0);
}
















#audioPlayerControlsWrapperstacks_in_2424 {
	display: flex;
	position: relative;
	z-index: 2;
}

#audioPlayerControlsstacks_in_2424 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_2424 #audioPlayerPlayPausestacks_in_2424 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_2424 #audioPlayerFullScreenstacks_in_2424 {
	display: ;
}

.audioPlayerAudioTimingstacks_in_2424 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
	padding: 0;
	text-align: center;
	font-size: 10px;
}

#audioPlayerCurrentTimestacks_in_2424 {
	display: none;
	width: 30px;
}

#audioPlayerDurationstacks_in_2424 {
	display: none;
	width: 30px;
}

#audioPlayerTimeDividerstacks_in_2424 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	color: rgba(76, 76, 76, 1.00);
}


#audioPlayerTimeDividerstacks_in_2424 {
	display: none;
}



#audioPlayerTimeDividerstacks_in_2424 {
	display: none;
}


@media screen and (min-width: 568px) {
	#audioPlayerTimeDividerstacks_in_2424 {
		display: none;
	}
}

#progressBarstacks_in_2424 {
	display: none;
}

@media screen and (min-width: 568px) {
	#progressBarstacks_in_2424 {
		flex: 1;
		padding-right: 15px;
		padding-left: 15px;
		height: 30px;
		line-height: 30px;
		vertical-align: middle;
		display: inline-block;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range] {
		-webkit-appearance: none;
		background: none;
		display: inline-block;
		width: 99%;
		height: 30px;
		line-height: 30px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]:focus {
		outline: none;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#audioPlayerSeekBarstacks_in_2424[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

#volumestacks_in_2424 {
	display: none;
}

@media screen and (min-width: 768px) {
	#volumestacks_in_2424 {
		display: none;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		transition: all ease-in-out 300ms;
		text-align: center;
		position: relative;
		overflow: hidden;
		font-size: 20px;
		vertical-align: middle;
	}

	#volumestacks_in_2424 [class^="fa fa-"] {
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_2424:hover {
		max-width: 150px;
		width: 150px;
		padding: 0px 15px;
	}

	#volumeButtonstacks_in_2424 {
		display: inline-block;
		max-width: 30px;
		width: 30px;
		line-height: 30px;
		height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumestacks_in_2424:hover #volumeButtonstacks_in_2424 {
		display: none;
	}

	#volumeMinstacks_in_2424 {
		position: absolute;
		left: 20px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volumeMaxstacks_in_2424 {
		position: absolute;
		right: 15px;
		top: 0;
		height: 30px;
		line-height: 30px;
		color: rgba(76, 76, 76, 1.00);
	}

	#volume-barstacks_in_2424[type=range],
	#volumeMinstacks_in_2424,
	#volumeMaxstacks_in_2424 {
		display: none;
	}

	#volumeMinstacks_in_2424,
	#volumeMaxstacks_in_2424 {
		cursor: pointer;
	}

	#volumestacks_in_2424:hover #volume-barstacks_in_2424,
	#volumestacks_in_2424:hover #volumeMinstacks_in_2424,
	#volumestacks_in_2424:hover #volumeMaxstacks_in_2424 {
		display: inline;
	}

	#volume-barstacks_in_2424[type=range] {
		-webkit-appearance: none;
		background: none;
		width: 50%;
		text-align: center;
		line-height: 30px;
		height: 30px;
	}

	#volume-barstacks_in_2424[type=range]::-webkit-slider-runnable-track {
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2424[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
		margin-top: -5px;
	}

	#volume-barstacks_in_2424[type=range]:focus {
		outline: none;
	}

	#volume-barstacks_in_2424[type=range]:focus::-webkit-slider-runnable-track {
		background: #B3B3B3;
	}

	#volume-barstacks_in_2424[type=range]::-moz-range-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2424[type=range]::-moz-range-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_2424[type=range]::-ms-track {
		width: 100%;
		height: 5px;
		background: #B3B3B3;
		border: none;
		border-radius: 3px;
	}

	#volume-barstacks_in_2424[type=range]::-ms-fill-lower {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_2424[type=range]::-ms-fill-upper {
		background: #B3B3B3;
		border-radius: 10px;
	}

	#volume-barstacks_in_2424[type=range]::-ms-thumb {
		border: none;
		height: 16px;
		width: 16px;
		border-radius: 50%;
		background: #4C4C4C;
	}

	#volume-barstacks_in_2424[type=range]:focus::-ms-fill-lower {
		background: #B3B3B3;
	}

	#volume-barstacks_in_2424[type=range]:focus::-ms-fill-upper {
		background: #B3B3B3;
	}
}

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_2424 #audioPlayerFullScreenstacks_in_2424,
	#audioPlayerControlsstacks_in_2424 #volumestacks_in_2424 {
		display: none;
	}
}


#spacer_stacks_in_2278 {
    height: 0.5rem;
}#block_stacks_in_2462 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2398 {
    height: 5rem;
}


#stacks_in_2352 {
	font-size: 90%;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .70);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 0.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_2353 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_2353 #topBoxTriggerstacks_in_2353 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_2353 #topBoxTriggerContentstacks_in_2353 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_2353 #topBoxTriggerContentstacks_in_2353 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_2353 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_2353 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_2353 h1,
#topBoxContentWrapperstacks_in_2353 h2,
#topBoxContentWrapperstacks_in_2353 h3,
#topBoxContentWrapperstacks_in_2353 h4,
#topBoxContentWrapperstacks_in_2353 h5,
#topBoxContentWrapperstacks_in_2353 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_2353 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_2353 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_2353 a:hover,
#topBoxContentWrapperstacks_in_2353 a:focus,
#topBoxContentWrapperstacks_in_2353 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_2353 .topBoxAudio,
#topBoxContentWrapperstacks_in_2353 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_2353.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_2353 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_2353 .trackName,
#topBoxContentWrapperstacks_in_2353 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_2353 {
	display: none;
}










#stacks_in_2354 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
#block_stacks_in_2356 {
    
    
    
    
    padding: 1rem;
}#block_stacks_in_2362 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2368 {
    height: 1rem;
}#block_stacks_in_2369 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2375 {
    height: 1rem;
}#block_stacks_in_2376 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2381 {
    height: 1rem;
}#block_stacks_in_2383 {
    
    
    
    
    padding: 1rem;
}
#stacks_in_2386 {
	font-size: 99%;
}
#spacer_stacks_in_2389 {
    height: 1rem;
}#block_stacks_in_2390 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_2425 {
    height: 3rem;
}


#stacks_in_2428 {
	font-weight: bold;
}
#stackSliderWrapperstacks_in_2483 {
	/* Hide until the slider is loaded */
	visibility: hidden;
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

#stackSliderWrapperstacks_in_2483 .bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-viewport {
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    background: transparent;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager .bx-pager-item,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager.bx-default-pager a:hover,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-prev {
	left: 10px;	
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-next {
	right: 10px;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-prev,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-next,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-prev [class^="fa fa-"],
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-next [class^="fa fa-"] {
	color: #666666;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;	
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-prev:hover,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-next:hover,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-prev:hover [class^="fa fa-"],
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-next:hover [class^="fa fa-"] {
	color: #000000;	
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	outline: 0;
	text-align: center;
	width: 36px;
	height: 36px;
	font-size: 36px;
	z-index: 9999;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto {
	text-align: center;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	outline: 0;
	margin: 0 3px;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	outline: 0;
	margin: 0 3px;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-start,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-stop,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-start [class^="fa fa-"]
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-stop [class^="fa fa-"] {
	color: #666666;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;	
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-start:hover,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-stop:hover,
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-start:hover [class^="fa fa-"]
#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls-auto .bx-stop:hover [class^="fa fa-"] {
	color: #000000;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 5px;
	width: auto;
	text-align: right;
}

/* IMAGE CAPTIONS */

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

#stackSliderWrapperstacks_in_2483 .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}


@media print {
	#stackSliderstacks_in_2483 {
		height: auto;
	}
}

#stacks_in_2486 {
	font-size: 94%;
}

#stacks_in_2488 {
	font-size: 95%;
}

#stacks_in_2490 {
	font-size: 94%;
}

#stacks_in_2492 {
	font-size: 94%;
}

#stacks_in_2494 {
	font-size: 94%;
}

#stacks_in_2498 {
	font-size: 95%;
}
#spacer_stacks_in_2454 {
    height: 5rem;
}

#spacer_stacks_in_2457 {
    height: 1rem;
}/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_2399 *,
#adaptiveGridstacks_in_2399 *:before,
#adaptiveGridstacks_in_2399 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_2399 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_2399 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_2399:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_2399 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_2399 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_2399 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2399 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2399 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2399 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2399 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_2399 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2399 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2399 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2399 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2399 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2399 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2399 .column2 {
		width: 20.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2399 .column2 {
		width: 12.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2399 .column2 {
		width: 12.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2399 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2399 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2399 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2399 .column3 {
		width: 35.00%;
	}
}




















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_2399 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_2399 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_2399 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_2399 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_2399 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_2399 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_2399 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_2399 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_2399 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_2399 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_2399 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_2399 .column1,
	#adaptiveGridstacks_in_2399 .column2,
	#adaptiveGridstacks_in_2399 .column3,
	#adaptiveGridstacks_in_2399 .column4,
	#adaptiveGridstacks_in_2399 .column5,
	#adaptiveGridstacks_in_2399 .column6,
	#adaptiveGridstacks_in_2399 .column7,
	#adaptiveGridstacks_in_2399 .column8,
	#adaptiveGridstacks_in_2399 .column9,
	#adaptiveGridstacks_in_2399 .column10,
	#adaptiveGridstacks_in_2399 .column11,
	#adaptiveGridstacks_in_2399 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_2399 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#spacer_stacks_in_2515 {
    height: 1rem;
}

#stackSliderWrapperstacks_in_2499 {
	/* Hide until the slider is loaded */
	visibility: hidden;
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

#stackSliderWrapperstacks_in_2499 .bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-viewport {
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    background: transparent;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager .bx-pager-item,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager.bx-default-pager a {
	background: #666666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager.bx-default-pager a:hover,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-prev {
	left: 10px;	
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-next {
	right: 10px;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-prev,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-next,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-prev [class^="fa fa-"],
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-next [class^="fa fa-"] {
	color: #1C9F3F;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;	
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-prev:hover,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-next:hover,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-prev:hover [class^="fa fa-"],
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-next:hover [class^="fa fa-"] {
	color: #808080;	
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	outline: 0;
	text-align: center;
	width: 36px;
	height: 36px;
	font-size: 36px;
	z-index: 9999;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto {
	text-align: center;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	outline: 0;
	margin: 0 3px;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	outline: 0;
	margin: 0 3px;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-start,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-stop,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-start [class^="fa fa-"]
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-stop [class^="fa fa-"] {
	color: #666666;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;	
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-start:hover,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-stop:hover,
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-start:hover [class^="fa fa-"]
#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls-auto .bx-stop:hover [class^="fa fa-"] {
	color: #000000;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 5px;
	width: auto;
	text-align: right;
}

/* IMAGE CAPTIONS */

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

#stackSliderWrapperstacks_in_2499 .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}


@media print {
	#stackSliderstacks_in_2499 {
		height: auto;
	}
}

#stacks_in_1627 {
	margin:  10px;
}
#spacer_stacks_in_2404 {
    height: 1rem;
}


#stacks_in_649 {
	margin:  10px;
}
#spacer_stacks_in_1764 {
    height: 3rem;
}#block_stacks_in_1873 {
    
    
    
    
    padding: 1rem;
}#spacer_stacks_in_1877 {
    height: 1rem;
}#block_stacks_in_2518 {
    
    
    
    
    padding: 1rem;
}#toggleWrapper_stacks_in_1878 {
	display: block;
	position: relative;
	z-index: 1;
}

#VoyageExtra {
	padding: 5px;
	margin: 0;
	font-weight: normal;
	display: block;
	color: rgba(102, 102, 102, 1.00);
	text-decoration: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-size: 100%;
	line-height: 20px;
}




#VoyageExtra {
	background: rgba(234, 234, 234, 1.00);
}













	
#VoyageExtra:hover { 
	color: rgba(179, 179, 179, 1.00);
	cursor: pointer; 
}

/* Toggle Button */

#VoyageExtra .normalContent {
	display: inherit;
}

#VoyageExtra .hoveredContent {
	display: none;
}

#VoyageExtra:hover .normalContent {
	display: none;
}

#VoyageExtra:hover .hoveredContent {
	display: inherit;
}

/* Local Image Buttons */


/* Warehoused Image Buttons */


/* Font Awesone Icon Buttons */



#toggleContainer_stacks_in_1878 {
	display: none;
	margin-top: 5px;
	padding: 0px;
	overflow: hidden;
	color: rgba(102, 102, 102, 1.00);
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}


#toggleContainer_stacks_in_1878 {
	background: transparent;
}












@media print {
	#toggleButtonstacks_in_1878,
	#toggleButtonstacks_in_1878.toggleOpenIcon,
	#toggleButtonstacks_in_1878.toggleCloseIcon,
	#VoyageExtra a:link:after,
	#VoyageExtra a:visited:after {
		display: none !important;
	}
	
	#toggleContainer_stacks_in_1878 {
		display: block !important;
	}
}
#spacer_stacks_in_1890 {
    height: 1rem;
}#spacer_stacks_in_1765 {
    height: 3rem;
}#heading_stacks_in_706 {
    font-weight: bold;
    
    
    
}
#stacks_in_707 {
	font-size: 90%;
	font-weight: bold;
}
.boxCanvasstacks_in_739 {
  height: auto;
  width: 100%;
  margin: auto;
}




/* Solid colour fill */
.boxCanvasstacks_in_739 {
	background: rgba(255, 255, 255, 1.00);
}






















.boxCanvasstacks_in_739 .boxCanvasOuter {
  display: table;
  width: 100%;
  height: 100%;
  
  background-image: url(../files/overlays/letters.png);
  background-repeat: repeat;
  background-position: center center;
  
  
  
  
}

.boxCanvasstacks_in_739 .boxCanvasInner {
  display: table-cell;
  
  text-align: center;
  
  
  vertical-align: middle;
  
}

.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 {
	max-width: 1140px;
	padding: 2rem 15px;
	margin: 0 auto;
	color: #E6E6E6;
}

.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h1,
.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h2,
.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h3,
.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h4,
.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h5,
.boxCanvasstacks_in_739 .boxCanvasContentstacks_in_739 h6 {
	color: #E6E6E6;
}


/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_715 *,
#adaptiveGridstacks_in_715 *:before,
#adaptiveGridstacks_in_715 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_715 {
	display: block;
}

/*  */

#adaptiveGridstacks_in_715:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_715 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_715 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_715 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_715 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column1 {
		width: 25.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column1 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column2 {
		width: 25.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column2 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column3 {
		width: 25.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column3 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column4 {
		width: 25.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column4 {
		width: 25.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column4 {
		width: 25.00%;
	}
}













/* If column 10 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column10 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column10 {
		width: 100.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column10 {
		width: 100.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column10 {
		width: 100.00%;
	}
}



/* If column 11 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column11 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column11 {
		width: 100.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column11 {
		width: 100.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column11 {
		width: 100.00%;
	}
}



/* If column 12 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .column12 {
		width: 100.00%;
	}
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .column12 {
		width: 100.00%;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .column12 {
		width: 100.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .column12 {
		width: 100.00%;
	}
}


/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_715 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_715 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 600px) {
	#adaptiveGridstacks_in_715 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_715 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 800px) {
	#adaptiveGridstacks_in_715 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_715 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_715 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_715 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_715 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_715 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_715 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_715 .column1,
	#adaptiveGridstacks_in_715 .column2,
	#adaptiveGridstacks_in_715 .column3,
	#adaptiveGridstacks_in_715 .column4,
	#adaptiveGridstacks_in_715 .column5,
	#adaptiveGridstacks_in_715 .column6,
	#adaptiveGridstacks_in_715 .column7,
	#adaptiveGridstacks_in_715 .column8,
	#adaptiveGridstacks_in_715 .column9,
	#adaptiveGridstacks_in_715 .column10,
	#adaptiveGridstacks_in_715 .column11,
	#adaptiveGridstacks_in_715 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_715 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_2583 {
	font-size: 89%;
}

#stacks_in_2547 {
	font-size: 75%;
}
#spacer_stacks_in_1775 {
    height: 1rem;
} #stacks_in_2420 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_2420 hr.gradient{height:2px;background:#333;background-image:-webkit-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-moz-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-ms-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-o-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:linear-gradient(left,#CCCCCC,#333333,#CCCCCC)}#stacks_in_2420 hr.faded{height:2px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_2420 hr.dashed_fade{border-bottom:2px dashed #7E7E7E;background:#333333}#stacks_in_2420 hr.dotted_fade{border-bottom:2px dotted #7E7E7E;background:#333333}#stacks_in_2420 hr.dashed{border-bottom:2px dashed #333333}#stacks_in_2420 hr.dotted{border-bottom:2px dotted #7E7E7E}#stacks_in_2420 hr.shadow{height:2px;box-shadow:inset 0 2px 2px -2px rgba(0,0,0,0.5)}#stacks_in_2420 hr.cloudy{margin:2px 0;box-shadow:0 0 2px 1px #333333}#stacks_in_2420 hr.cloudy:after{content:"\00a0"}#stacks_in_2420 hr.inset{border-top:2px solid rgba(0,0,0,0.1);border-bottom:2px solid rgba(255,255,255,0.3)}#stacks_in_2420 hr.inset_two{border-top:2px solid #CCCCCC;border-bottom:2px solid #333333}#stacks_in_2420 hr.inset_three{border-top:2px solid #333333;border-bottom:2px solid #CCCCCC}#stacks_in_2420 hr.inset_four{border-top:2px solid #333333;border-bottom:2px solid #CCCCCC}#stacks_in_2420 hr.flared{height:30px;border-style:solid;border-color:#333333;border-width:2px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_2420 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#333333;border-width:0 0 2px 0;border-radius:20px}#stacks_in_2420 hr.glyph{padding:0;border:0;border-top:2px double #333333;color:#333333;text-align:center;margin:1em 0}#stacks_in_2420 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
#spacer_stacks_in_2421 {
    height: 1rem;
}#toTop{display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:51px;height:51px;border:0;text-indent:-9999px;background:url(../files/elevator-images/top.png) no-repeat left top;z-index:9988} #toTop:hover{background:url(../files/elevator-images/top.png) no-repeat left -51px} #toTop:active,#toTop:focus{outline:0}

#stacks_in_1034 {
	background-color: rgba(204, 204, 204, 1.00);
}
#spacer_stacks_in_1673 {
    height: 3rem;
}