.cta-hide{display:none !important}
/* 
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);
}



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

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

#gatorBarFillstacks_in_9971_page39 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 20;
	height: 100%;
	display: block;
	
	
  	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;
	

	

	

  	border-radius: 0px;
}

#gatorNavBarWrapstacks_in_9971_page39 {
	position: relative;
	width: 100%;
	display: block;
	z-index: 40;
}

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

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

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

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

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

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

	

	
}

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

#mobileNavButtonstacks_in_9971_page39:hover {
	color: rgba(255, 255, 255, 1.00);
}

#menuToggleTitlestacks_in_9971_page39:before {
	content: 'Workshop Menu';
}

#gatorContentstacks_in_9971_page39.gator-closed-state #mobileNavButtonstacks_in_9971_page39 .fas.fa-minus {
	display: none;
}

#gatorContentstacks_in_9971_page39.gator-closed-state #mobileNavButtonstacks_in_9971_page39 .fas.fa-bars {
	display: inline;
}

#gatorContentstacks_in_9971_page39.gator-opened-state #mobileNavButtonstacks_in_9971_page39 .fas.fa-minus {
	display: inline;
}

#gatorContentstacks_in_9971_page39.gator-opened-state #mobileNavButtonstacks_in_9971_page39 .fas.fa-bars {
	display: none;
}

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

#gatorContentstacks_in_9971_page39.gator-opened-state #gatorNavstacks_in_9971_page39,
#gatorNavstacks_in_9971_page39 .gator-open > ul {
	max-height: 2000px;
	overflow: hidden !important;
}

#gatorNavstacks_in_9971_page39 .gator-more {
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	min-width: 3.5rem;
	height: 3.5rem;
	line-height: 3.5rem;
	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_9971_page39 .gator-more:hover {
	color: rgba(255, 255, 255, 1.00);
}

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

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

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

	#gatorstacks_in_9971_page39 {
		min-height: calc(3.5rem + 0 + 0);
	}

	

	

	#mobileNavButtonstacks_in_9971_page39 {
		display: none;
	}
	
	#gatorContentstacks_in_9971_page39.gator-closed-state #gatorNavstacks_in_9971_page39,
	#gatorContentstacks_in_9971_page39.gator-opened-state #gatorNavstacks_in_9971_page39 {
		max-height: 2000px;
		overflow: visible !important;
	}
	
	#gatorNavBarWrapstacks_in_9971_page39 {
		display: block;
		position: relative;
		z-index: 40;
	}
	
	#gatorContentstacks_in_9971_page39 {
		z-index: 201;
		position: relative;
		display: block;
		width: auto;
		float: right;
	}
	
	#gatorNavstacks_in_9971_page39 {
		background: none;
		margin-bottom: 0;
		font-size: 100%;
		min-height: 0px;
		overflow: visible;
		display: flex;
	}

	#navButtonstacks_in_9971_page39,
	#gatorNavstacks_in_9971_page39 .gator-more {
		display: none !important;
	}		
	
	#gatorNavstacks_in_9971_page39 ul li {
		display: block;
		float: left;
		margin: 0;
		position: relative;
		white-space: no-wrap;
	}

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

	#gatorNavstacks_in_9971_page39 li {
		border-right: 1px solid rgba(25, 25, 25, 1.00);
	}

	/* Remove inherited background styling from the mobile menu */
	#gatorNavstacks_in_9971_page39 ul li a,
	#gatorNavstacks_in_9971_page39 ul li a:hover,
	#gatorNavstacks_in_9971_page39 ul li a:active,
	#gatorNavstacks_in_9971_page39 ul li a.current,
	#gatorNavstacks_in_9971_page39 ul li a.currentAncestor {
		background: none;
	}
		
	#gatorNavstacks_in_9971_page39 ul li a {
		text-align: left;
		height: auto;
		width: auto;
		height: auto;
		padding: 0 1.5rem;
		position: relative;
		font-size: 1rem;
		border-bottom: none;
		border-radius: 0rem;
		margin: 0 0 0 0;
		color: rgba(255, 255, 255, 0.50);
		background-color: rgba(255, 255, 255, 0.00);
		min-height: 0;
		line-height: 3.5rem;
	}

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

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

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

	#gatorNavstacks_in_9971_page39 ul li a.current,
	#gatorNavstacks_in_9971_page39 ul li a.currentAncestor {
		color: rgba(255, 255, 255, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}
	
	#gatorNavstacks_in_9971_page39 ul li a i {
		display: inline-block;
		font-size: 1.25rem;
		padding-left: 5px;
		margin-bottom: -3px;
	}
	
	#gatorNavstacks_in_9971_page39 ul ul {
		position: absolute;
		top: 100%;
		left: -1px;
    	width: 200px;
		padding: 0;
		margin: 0;
    	z-index: 149;
    	border: 1px 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(52, 58, 64, 1.00);
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
		transition: all 300ms ease-in-out;
		
		

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

	#gatorNavstacks_in_9971_page39 ul ul li:last-child {
		border-bottom: none;
	}
  
	#gatorNavstacks_in_9971_page39 ul ul li a {
		color: rgba(255, 255, 255, 0.50);
		
		background-color: rgba(52, 58, 64, 1.00);
		
		display: block;
		position: relative;
		width: 100%;
		margin: 0;
		border-radius: 0;
		text-align: left !important;
		
		
		
	}

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

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

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

	#gatorNavstacks_in_9971_page39 ul ul li a.current,
	#gatorNavstacks_in_9971_page39 ul ul li a.currentAncestor {
		color: rgba(255, 255, 255, 1.00);
		
		background-color: rgba(52, 58, 64, 1.00);
		
	}
	
	#gatorNavstacks_in_9971_page39 ul ul ul {
		top: 0;
		left: 100%;
		margin: 0;
	}

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

	#gatorNavstacks_in_9971_page39 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_9971_page39 ul ul li a,
	#gatorNavstacks_in_9971_page39 ul ul ul li a,
	#gatorNavstacks_in_9971_page39 ul ul ul ul li a,
	#gatorNavstacks_in_9971_page39 ul ul ul ul ul li a,
	#gatorNavstacks_in_9971_page39 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_9971_page39 ul ul li a.parent-link,
	#gatorNavstacks_in_9971_page39 ul ul ul li a.parent-link,
	#gatorNavstacks_in_9971_page39 ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_9971_page39 ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_9971_page39 ul ul ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_9971_page39 ul ul ul ul ul ul ul ul li a.parent-link {
		padding: 1rem 1.5rem 1rem 1.5rem;
	}

	#gatorNavstacks_in_9971_page39 ul ul {
		margin-top: 1.5rem;
	}

	#gatorNavstacks_in_9971_page39 ul ul ul {
		margin-left: 1.5rem;
	}

	#gatorNavstacks_in_9971_page39 > ul > li:hover > ul,
	#gatorNavstacks_in_9971_page39 ul ul.gator-focused {
		opacity: 1.00;
		visibility: visible;
		margin-top: 0;
	}
	
	#gatorNavstacks_in_9971_page39 > ul > li > ul > li:hover > ul,
	#gatorNavstacks_in_9971_page39 ul ul ul.gator-focused {
		opacity: 1.00;
		visibility: visible;
		margin-top: -1px;
		margin-left: 0;
	}
	
	/* Styling for touch devices */ 
	.isTouchDevice #gatorNavstacks_in_9971_page39 ul ul {	
		opacity: 1.00;
		visibility: visible;
		-webkit-transition: none;
		transition: none;
		display: none;
	}
	
	.isTouchDevice #gatorNavstacks_in_9971_page39>ul>li:hover>ul,
	.isTouchDevice #gatorNavstacks_in_9971_page39>ul>li>ul>li:hover>ul, 
	.isTouchDevice #gatorNavstacks_in_9971_page39>ul>li>ul>li>ul>li:hover>ul, 
	.isTouchDevice #gatorNavstacks_in_9971_page39>ul>li>ul>li>ul>li>ul>li:hover>ul {
		opacity: 1.00;
		visibility: visible;
		display: block;
	}
	
	
	#gatorContentstacks_in_9971_page39 {
		float: left;
	}
	
	#gatorNavstacks_in_9971_page39 ul li:first-child a {
		border-left: none;
	}
	
	
	
  
  	
  
  	

	

	

	

	

	

	
}

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






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



#stacks_in_1223_page39 {
	font-weight: bolder;
}

#stacks_in_9539_page39 {
	font-weight: bolder;
}
/*  */

.spacerStack {
	height: 40.00px!important;
}

#spacerStackstacks_in_9728_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9728_page39 {
		display: none !important;
	}
} #stacks_in_9678_page39 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_9678_page39 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-moz-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-ms-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-o-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF)}#stacks_in_9678_page39 hr.faded{height:1px;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_9678_page39 hr.dashed_fade{border-bottom:1px dashed #FFFFFF;background:#CCCCCC}#stacks_in_9678_page39 hr.dotted_fade{border-bottom:1px dotted #FFFFFF;background:#CCCCCC}#stacks_in_9678_page39 hr.dashed{border-bottom:1px dashed #CCCCCC}#stacks_in_9678_page39 hr.dotted{border-bottom:1px dotted #FFFFFF}#stacks_in_9678_page39 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_9678_page39 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #CCCCCC}#stacks_in_9678_page39 hr.cloudy:after{content:"\00a0"}#stacks_in_9678_page39 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_9678_page39 hr.inset_two{border-top:1px solid #FFFFFF;border-bottom:1px solid #CCCCCC}#stacks_in_9678_page39 hr.inset_three{border-top:1px solid #CCCCCC;border-bottom:1px solid #FFFFFF}#stacks_in_9678_page39 hr.inset_four{border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC}#stacks_in_9678_page39 hr.flared{height:30px;border-style:solid;border-color:#CCCCCC;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_9678_page39 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#CCCCCC;border-width:0 0 1px 0;border-radius:20px}#stacks_in_9678_page39 hr.glyph{padding:0;border:0;border-top:1px double #CCCCCC;color:#CCCCCC;text-align:center;margin:1em 0}#stacks_in_9678_page39 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10037_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10037_page39 {
		display: none !important;
	}
}
#stacks_in_1239_page39 {
	font-weight: bolder;
}
/*  */

.spacerStack {
	height: 40.00px!important;
}

#spacerStackstacks_in_5170_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5170_page39 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10038_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10038_page39 {
		display: none !important;
	}
}#usefulStackWrapperstacks_in_9547_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 550px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9547_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9547_page39 {
		display: none;
	}
}












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

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

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

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

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




/* No background */
#audioPlayerControlsstacks_in_9548_page39 {
	background: transparent;
}




















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

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

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_9548_page39 #audioPlayerPlayPausestacks_in_9548_page39 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_9548_page39 #audioPlayerFullScreenstacks_in_9548_page39 {
	display: ;
}

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

#audioPlayerCurrentTimestacks_in_9548_page39 {
	display: inline-block;
	width: 60px;
}

#audioPlayerDurationstacks_in_9548_page39 {
	display: inline-block;
	width: 60px;
}

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





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

#progressBarstacks_in_9548_page39 {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#volumestacks_in_9548_page39 {
	display: none;
}

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

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

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

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

	#volumestacks_in_9548_page39:hover #volumeButtonstacks_in_9548_page39 {
		display: none;
	}

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

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

	#volume-barstacks_in_9548_page39[type=range],
	#volumeMinstacks_in_9548_page39,
	#volumeMaxstacks_in_9548_page39 {
		display: none;
	}

	#volumeMinstacks_in_9548_page39,
	#volumeMaxstacks_in_9548_page39 {
		cursor: pointer;
	}

	#volumestacks_in_9548_page39:hover #volume-barstacks_in_9548_page39,
	#volumestacks_in_9548_page39:hover #volumeMinstacks_in_9548_page39,
	#volumestacks_in_9548_page39:hover #volumeMaxstacks_in_9548_page39 {
		display: inline;
	}

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

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

	#volume-barstacks_in_9548_page39[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_9548_page39[type=range]:focus {
		outline: none;
	}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_9548_page39 #audioPlayerFullScreenstacks_in_9548_page39,
	#audioPlayerControlsstacks_in_9548_page39 #volumestacks_in_9548_page39 {
		display: none;
	}
}


/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_9729_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9729_page39 {
		display: none !important;
	}
} #stacks_in_9683_page39 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_9683_page39 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-moz-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-ms-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-o-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF)}#stacks_in_9683_page39 hr.faded{height:1px;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_9683_page39 hr.dashed_fade{border-bottom:1px dashed #FFFFFF;background:#CCCCCC}#stacks_in_9683_page39 hr.dotted_fade{border-bottom:1px dotted #FFFFFF;background:#CCCCCC}#stacks_in_9683_page39 hr.dashed{border-bottom:1px dashed #CCCCCC}#stacks_in_9683_page39 hr.dotted{border-bottom:1px dotted #FFFFFF}#stacks_in_9683_page39 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_9683_page39 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #CCCCCC}#stacks_in_9683_page39 hr.cloudy:after{content:"\00a0"}#stacks_in_9683_page39 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_9683_page39 hr.inset_two{border-top:1px solid #FFFFFF;border-bottom:1px solid #CCCCCC}#stacks_in_9683_page39 hr.inset_three{border-top:1px solid #CCCCCC;border-bottom:1px solid #FFFFFF}#stacks_in_9683_page39 hr.inset_four{border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC}#stacks_in_9683_page39 hr.flared{height:30px;border-style:solid;border-color:#CCCCCC;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_9683_page39 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#CCCCCC;border-width:0 0 1px 0;border-radius:20px}#stacks_in_9683_page39 hr.glyph{padding:0;border:0;border-top:1px double #CCCCCC;color:#CCCCCC;text-align:center;margin:1em 0}#stacks_in_9683_page39 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10039_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10039_page39 {
		display: none !important;
	}
}
#stacks_in_1253_page39 {
	font-weight: bolder;
}
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5184_page39 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_9730_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9730_page39 {
		display: none !important;
	}
}#usefulStackWrapperstacks_in_9550_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 550px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9550_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9550_page39 {
		display: none;
	}
}












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

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

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

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

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




/* No background */
#audioPlayerControlsstacks_in_9551_page39 {
	background: transparent;
}




















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

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

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_9551_page39 #audioPlayerPlayPausestacks_in_9551_page39 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_9551_page39 #audioPlayerFullScreenstacks_in_9551_page39 {
	display: ;
}

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

#audioPlayerCurrentTimestacks_in_9551_page39 {
	display: inline-block;
	width: 60px;
}

#audioPlayerDurationstacks_in_9551_page39 {
	display: inline-block;
	width: 60px;
}

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





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

#progressBarstacks_in_9551_page39 {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#volumestacks_in_9551_page39 {
	display: none;
}

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

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

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

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

	#volumestacks_in_9551_page39:hover #volumeButtonstacks_in_9551_page39 {
		display: none;
	}

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

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

	#volume-barstacks_in_9551_page39[type=range],
	#volumeMinstacks_in_9551_page39,
	#volumeMaxstacks_in_9551_page39 {
		display: none;
	}

	#volumeMinstacks_in_9551_page39,
	#volumeMaxstacks_in_9551_page39 {
		cursor: pointer;
	}

	#volumestacks_in_9551_page39:hover #volume-barstacks_in_9551_page39,
	#volumestacks_in_9551_page39:hover #volumeMinstacks_in_9551_page39,
	#volumestacks_in_9551_page39:hover #volumeMaxstacks_in_9551_page39 {
		display: inline;
	}

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

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

	#volume-barstacks_in_9551_page39[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_9551_page39[type=range]:focus {
		outline: none;
	}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_9551_page39 #audioPlayerFullScreenstacks_in_9551_page39,
	#audioPlayerControlsstacks_in_9551_page39 #volumestacks_in_9551_page39 {
		display: none;
	}
}


/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_9731_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9731_page39 {
		display: none !important;
	}
} #stacks_in_9688_page39 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_9688_page39 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-moz-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-ms-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-o-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF)}#stacks_in_9688_page39 hr.faded{height:1px;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_9688_page39 hr.dashed_fade{border-bottom:1px dashed #FFFFFF;background:#CCCCCC}#stacks_in_9688_page39 hr.dotted_fade{border-bottom:1px dotted #FFFFFF;background:#CCCCCC}#stacks_in_9688_page39 hr.dashed{border-bottom:1px dashed #CCCCCC}#stacks_in_9688_page39 hr.dotted{border-bottom:1px dotted #FFFFFF}#stacks_in_9688_page39 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_9688_page39 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #CCCCCC}#stacks_in_9688_page39 hr.cloudy:after{content:"\00a0"}#stacks_in_9688_page39 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_9688_page39 hr.inset_two{border-top:1px solid #FFFFFF;border-bottom:1px solid #CCCCCC}#stacks_in_9688_page39 hr.inset_three{border-top:1px solid #CCCCCC;border-bottom:1px solid #FFFFFF}#stacks_in_9688_page39 hr.inset_four{border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC}#stacks_in_9688_page39 hr.flared{height:30px;border-style:solid;border-color:#CCCCCC;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_9688_page39 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#CCCCCC;border-width:0 0 1px 0;border-radius:20px}#stacks_in_9688_page39 hr.glyph{padding:0;border:0;border-top:1px double #CCCCCC;color:#CCCCCC;text-align:center;margin:1em 0}#stacks_in_9688_page39 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10040_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10040_page39 {
		display: none !important;
	}
}
#stacks_in_1267_page39 {
	font-weight: bolder;
}
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5197_page39 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_9732_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9732_page39 {
		display: none !important;
	}
}#usefulStackWrapperstacks_in_9553_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 550px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9553_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9553_page39 {
		display: none;
	}
}












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

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

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

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

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




/* No background */
#audioPlayerControlsstacks_in_9554_page39 {
	background: transparent;
}




















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

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

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_9554_page39 #audioPlayerPlayPausestacks_in_9554_page39 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_9554_page39 #audioPlayerFullScreenstacks_in_9554_page39 {
	display: ;
}

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

#audioPlayerCurrentTimestacks_in_9554_page39 {
	display: inline-block;
	width: 60px;
}

#audioPlayerDurationstacks_in_9554_page39 {
	display: inline-block;
	width: 60px;
}

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





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

#progressBarstacks_in_9554_page39 {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#volumestacks_in_9554_page39 {
	display: none;
}

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

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

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

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

	#volumestacks_in_9554_page39:hover #volumeButtonstacks_in_9554_page39 {
		display: none;
	}

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

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

	#volume-barstacks_in_9554_page39[type=range],
	#volumeMinstacks_in_9554_page39,
	#volumeMaxstacks_in_9554_page39 {
		display: none;
	}

	#volumeMinstacks_in_9554_page39,
	#volumeMaxstacks_in_9554_page39 {
		cursor: pointer;
	}

	#volumestacks_in_9554_page39:hover #volume-barstacks_in_9554_page39,
	#volumestacks_in_9554_page39:hover #volumeMinstacks_in_9554_page39,
	#volumestacks_in_9554_page39:hover #volumeMaxstacks_in_9554_page39 {
		display: inline;
	}

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

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

	#volume-barstacks_in_9554_page39[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_9554_page39[type=range]:focus {
		outline: none;
	}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_9554_page39 #audioPlayerFullScreenstacks_in_9554_page39,
	#audioPlayerControlsstacks_in_9554_page39 #volumestacks_in_9554_page39 {
		display: none;
	}
}


/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5206_page39 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10041_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10041_page39 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_9733_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9733_page39 {
		display: none !important;
	}
} #stacks_in_9693_page39 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_9693_page39 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-moz-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-ms-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-o-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF)}#stacks_in_9693_page39 hr.faded{height:1px;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_9693_page39 hr.dashed_fade{border-bottom:1px dashed #FFFFFF;background:#CCCCCC}#stacks_in_9693_page39 hr.dotted_fade{border-bottom:1px dotted #FFFFFF;background:#CCCCCC}#stacks_in_9693_page39 hr.dashed{border-bottom:1px dashed #CCCCCC}#stacks_in_9693_page39 hr.dotted{border-bottom:1px dotted #FFFFFF}#stacks_in_9693_page39 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_9693_page39 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #CCCCCC}#stacks_in_9693_page39 hr.cloudy:after{content:"\00a0"}#stacks_in_9693_page39 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_9693_page39 hr.inset_two{border-top:1px solid #FFFFFF;border-bottom:1px solid #CCCCCC}#stacks_in_9693_page39 hr.inset_three{border-top:1px solid #CCCCCC;border-bottom:1px solid #FFFFFF}#stacks_in_9693_page39 hr.inset_four{border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC}#stacks_in_9693_page39 hr.flared{height:30px;border-style:solid;border-color:#CCCCCC;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_9693_page39 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#CCCCCC;border-width:0 0 1px 0;border-radius:20px}#stacks_in_9693_page39 hr.glyph{padding:0;border:0;border-top:1px double #CCCCCC;color:#CCCCCC;text-align:center;margin:1em 0}#stacks_in_9693_page39 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_10042_page39 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10042_page39 {
		display: none !important;
	}
}
#stacks_in_1281_page39 {
	font-weight: bolder;
}
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5220_page39 {
		display: none !important;
	}
}#usefulStackWrapperstacks_in_9556_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 550px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9556_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9556_page39 {
		display: none;
	}
}












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

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

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

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

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




/* No background */
#audioPlayerControlsstacks_in_9557_page39 {
	background: transparent;
}




















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

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

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_9557_page39 #audioPlayerPlayPausestacks_in_9557_page39 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_9557_page39 #audioPlayerFullScreenstacks_in_9557_page39 {
	display: ;
}

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

#audioPlayerCurrentTimestacks_in_9557_page39 {
	display: inline-block;
	width: 60px;
}

#audioPlayerDurationstacks_in_9557_page39 {
	display: inline-block;
	width: 60px;
}

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





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

#progressBarstacks_in_9557_page39 {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#volumestacks_in_9557_page39 {
	display: none;
}

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

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

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

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

	#volumestacks_in_9557_page39:hover #volumeButtonstacks_in_9557_page39 {
		display: none;
	}

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

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

	#volume-barstacks_in_9557_page39[type=range],
	#volumeMinstacks_in_9557_page39,
	#volumeMaxstacks_in_9557_page39 {
		display: none;
	}

	#volumeMinstacks_in_9557_page39,
	#volumeMaxstacks_in_9557_page39 {
		cursor: pointer;
	}

	#volumestacks_in_9557_page39:hover #volume-barstacks_in_9557_page39,
	#volumestacks_in_9557_page39:hover #volumeMinstacks_in_9557_page39,
	#volumestacks_in_9557_page39:hover #volumeMaxstacks_in_9557_page39 {
		display: inline;
	}

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

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

	#volume-barstacks_in_9557_page39[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_9557_page39[type=range]:focus {
		outline: none;
	}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_9557_page39 #audioPlayerFullScreenstacks_in_9557_page39,
	#audioPlayerControlsstacks_in_9557_page39 #volumestacks_in_9557_page39 {
		display: none;
	}
}


#usefulStackWrapperstacks_in_9563_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 585px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9563_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9563_page39 {
		display: none;
	}
}












/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9564_page39 {
		display: none !important;
	}
}.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	
	background: rgba(0, 0, 0, 0.85);
	
	
}

.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_9788_page39 {
	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_9788_page39 #topBoxTriggerstacks_in_9788_page39 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_9788_page39 #topBoxTriggerContentstacks_in_9788_page39 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_9788_page39 #topBoxTriggerContentstacks_in_9788_page39 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_9788_page39 {
	display: none;
}







#stacks_in_9789_page39 .video-thumb-wrapper{width:100%;text-align:center;position:relative}#stacks_in_9789_page39 .video-thumb-wrapper img.vimeo-thumb{width:100%;max-width:640px;display:block;margin:0 auto;}#stacks_in_9789_page39 .video-thumb-wrapper a{margin:0 auto;width:100%;max-width:640px;display:block;position:relative}#stacks_in_9789_page39 .video-thumb-wrapper .play-button{background:url(../../../rw_common/plugins/stacks/video-thumb-images/play-button.png) no-repeat center center;margin:0 auto;position:absolute;display:block;top:0;width:100%;height:100%;opacity:.7;-webkit-transition:opacity 200ms ease-in-out 0;transition:opacity 200ms ease-in-out 0}#stacks_in_9789_page39 .video-thumb-wrapper .play-button:hover{opacity:1}@media screen and (max-width:600px){#stacks_in_9789_page39 .video-thumb-wrapper .play-button{background-image:url(../../../rw_common/plugins/stacks/video-thumb-images/play-button-mobile.png)}}
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9567_page39 {
		display: none !important;
	}
}/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_10096_page39 {
		display: none !important;
	}
} #stacks_in_1697_page39 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_1697_page39 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-moz-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-ms-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:-o-linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF);background-image:linear-gradient(left,#FFFFFF,#CCCCCC,#FFFFFF)}#stacks_in_1697_page39 hr.faded{height:1px;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_1697_page39 hr.dashed_fade{border-bottom:1px dashed #FFFFFF;background:#CCCCCC}#stacks_in_1697_page39 hr.dotted_fade{border-bottom:1px dotted #FFFFFF;background:#CCCCCC}#stacks_in_1697_page39 hr.dashed{border-bottom:1px dashed #CCCCCC}#stacks_in_1697_page39 hr.dotted{border-bottom:1px dotted #FFFFFF}#stacks_in_1697_page39 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_1697_page39 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #CCCCCC}#stacks_in_1697_page39 hr.cloudy:after{content:"\00a0"}#stacks_in_1697_page39 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_1697_page39 hr.inset_two{border-top:1px solid #FFFFFF;border-bottom:1px solid #CCCCCC}#stacks_in_1697_page39 hr.inset_three{border-top:1px solid #CCCCCC;border-bottom:1px solid #FFFFFF}#stacks_in_1697_page39 hr.inset_four{border-top:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC}#stacks_in_1697_page39 hr.flared{height:30px;border-style:solid;border-color:#CCCCCC;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_1697_page39 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#CCCCCC;border-width:0 0 1px 0;border-radius:20px}#stacks_in_1697_page39 hr.glyph{padding:0;border:0;border-top:1px double #CCCCCC;color:#CCCCCC;text-align:center;margin:1em 0}#stacks_in_1697_page39 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5241_page39 {
		display: none !important;
	}
}#stacks_in_5226_page39 ul,#stacks_in_5226_page39 ol,#stacks_in_5226_page39 dl{list-style-position:inside}#stacks_in_5226_page39 .float-container{float:right;width:33%;margin:0 10px 10px 0;z-index:100}#stacks_in_5226_page39 .float-container.float-right{margin:0 0 10px 10px}@media screen and (max-width:500px){#stacks_in_5226_page39 .float-container.responsive{float:none;width:100%;margin:0 0 10px 0}}#stacks_in_5226_page39 .float-text.justify{text-align:justify}#stacks_in_5226_page39 .float-text.hyphenate{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}

#stacks_in_5253_page39 {
	font-weight: bolder;
}
#usefulStackWrapperstacks_in_9559_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 550px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9559_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9559_page39 {
		display: none;
	}
}












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

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

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

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

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




/* No background */
#audioPlayerControlsstacks_in_9560_page39 {
	background: transparent;
}




















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

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

button:hover {
	cursor: pointer;
}

#audioPlayerControlsstacks_in_9560_page39 #audioPlayerPlayPausestacks_in_9560_page39 {
	display: inline-block;
}

#audioPlayerControlsstacks_in_9560_page39 #audioPlayerFullScreenstacks_in_9560_page39 {
	display: ;
}

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

#audioPlayerCurrentTimestacks_in_9560_page39 {
	display: inline-block;
	width: 60px;
}

#audioPlayerDurationstacks_in_9560_page39 {
	display: inline-block;
	width: 60px;
}

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





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

#progressBarstacks_in_9560_page39 {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#volumestacks_in_9560_page39 {
	display: none;
}

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

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

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

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

	#volumestacks_in_9560_page39:hover #volumeButtonstacks_in_9560_page39 {
		display: none;
	}

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

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

	#volume-barstacks_in_9560_page39[type=range],
	#volumeMinstacks_in_9560_page39,
	#volumeMaxstacks_in_9560_page39 {
		display: none;
	}

	#volumeMinstacks_in_9560_page39,
	#volumeMaxstacks_in_9560_page39 {
		cursor: pointer;
	}

	#volumestacks_in_9560_page39:hover #volume-barstacks_in_9560_page39,
	#volumestacks_in_9560_page39:hover #volumeMinstacks_in_9560_page39,
	#volumestacks_in_9560_page39:hover #volumeMaxstacks_in_9560_page39 {
		display: inline;
	}

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

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

	#volume-barstacks_in_9560_page39[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_9560_page39[type=range]:focus {
		outline: none;
	}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 569px) {
	#audioPlayerControlsstacks_in_9560_page39 #audioPlayerFullScreenstacks_in_9560_page39,
	#audioPlayerControlsstacks_in_9560_page39 #volumestacks_in_9560_page39 {
		display: none;
	}
}


#usefulStackWrapperstacks_in_9963_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 500px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9963_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9963_page39 {
		display: none;
	}
}












/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9793_page39 {
		display: none !important;
	}
}#block_stacks_in_9794_page39 {
    
    
    
    
    padding: 1rem;
}
#stacks_in_9796_page39 {
	font-size: 80%;
}
/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_9798_page39 {
		display: none !important;
	}
}#usefulStackWrapperstacks_in_p10091_n1_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 565px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_p10091_n1_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_p10091_n1_page39 {
		display: none;
	}
}












#stacks_in_p10091_n5_page39 {
    text-align: center;
    padding: 5px 5px;
}

#stacks_in_p10091_n5_page39 a {
    display: inline-block;
    background: rgba(52, 152, 219, 1.00);
    background-image: -webkit-linear-gradient(top, rgba(52, 152, 219, 1.00), rgba(41, 128, 185, 1.00));
    background-image: -moz-linear-gradient(top, rgba(52, 152, 219, 1.00), rgba(41, 128, 185, 1.00));
    background-image: -ms-linear-gradient(top, rgba(52, 152, 219, 1.00), rgba(41, 128, 185, 1.00));
    background-image: -o-linear-gradient(top, rgba(52, 152, 219, 1.00), rgba(41, 128, 185, 1.00));
    background-image: linear-gradient(to bottom, rgba(52, 152, 219, 1.00), rgba(41, 128, 185, 1.00));
    border-radius: 28px;
    font-family: inherit;
    line-height: 1.2;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    padding: 10px 20px;
    text-decoration: none;
    /* Misc. text formating */ 
    /* No text shadow */
    /* No box shadow */
    /* No border */
}

#stacks_in_p10091_n5_page39 a:hover {
    background: rgba(60, 176, 253, 1.00);
    background-image: -webkit-linear-gradient(top, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 1.00));
    background-image: -moz-linear-gradient(top, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 1.00));
    background-image: -ms-linear-gradient(top, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 1.00));
    background-image: -o-linear-gradient(top, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 1.00));
    background-image: linear-gradient(to bottom, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 1.00));
    text-decoration: none;
    /* Misc. text formating */ 
}#usefulStackWrapperstacks_in_p10098_n1_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 565px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_p10098_n1_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_p10098_n1_page39 {
		display: none;
	}
}












/* Start Responsive Shim stack CSS code */.stacks_in_p10098_n3_page39shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_in_p10098_n6_page39 {
	margin: 10px 5px 5px 5px;
}

#stacks_in_p10098_n29_page39 {
	margin: 10px 5px 5px 5px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_p10098_n10_page39shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_in_p10098_n13_page39 {
	margin: 10px 5px 5px 5px;
}

#stacks_in_p10098_n43_page39 {
	margin: 10px 10px 10px 10px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_p10098_n26_page39shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	
	background: rgba(0, 0, 0, 0.85);
	
	
}

.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_p10097_n5_page39 {
	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_p10097_n5_page39 #topBoxTriggerstacks_in_p10097_n5_page39 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_p10097_n5_page39 #topBoxTriggerContentstacks_in_p10097_n5_page39 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_p10097_n5_page39 #topBoxTriggerContentstacks_in_p10097_n5_page39 img {
	display: block;
	margin: 0 auto;
}

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

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

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

#topBoxContentWrapperstacks_in_p10097_n5_page39 a {
	color: rgba(129, 14, 24, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_p10097_n5_page39 a:visited {
	color: rgba(129, 14, 24, 1.00);
}

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

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

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

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



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


#topBoxContentWrapperstacks_in_p10097_n5_page39 {
	display: none;
}







/* 
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: support@1littledesigner.com
 * Verson: 1.0.0
 */

#simpleText_stacks_in_p10097_n7_page39 {
	color: #333333;
	font-size: inherit;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_p10097_n7_page39 a, #simpleText_stacks_in_p10097_n7_page39 a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_p10097_n7_page39 a:visited {color: #169EE6;}
#simpleText_stacks_in_p10097_n7_page39 a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_p10097_n7_page39 a:active {color: #FF6600;}
#simpleText_stacks_in_p10097_n7_page39 a:focus {color: #FF6600; outline: none !important;} /*Some browsers add an outline*/
#simpleText_stacks_in_p10097_n7_page39.optJustify {text-align: justify;}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_p10097_n7_page39 {font-size: ;}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_p10097_n7_page39 {font-size: inherit;}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_p10097_n7_page39 {font-size: inherit;}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_p10097_n7_page39 {font-size: inherit;}
}#usefulStackWrapperstacks_in_9724_page39 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 565px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9724_page39 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_9724_page39 {
		display: none;
	}
}












/* Start Responsive Shim stack CSS code */.stacks_in_9962_page39shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* If modifying any of this code, update the template.html file too */

/* CSS code for the Next Page button */

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

.ButtonMakerStackstacks_in_9593_page39 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}






/* Solid colour fill */
.ButtonMakerStackstacks_in_9593_page39 {
	background: #333333;
}

.ButtonMakerStackstacks_in_9593_page39:hover {
	background: #4C4C4C;
}





















.ButtonMakerStackstacks_in_9593_page39 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_9593_page39 a.Button-Link:active {
	
	-webkit-box-shadow:inset 0 0 5px 2px #333333;
	box-shadow:inset 0 0 5px 2px #333333;
	
	outline: none;
}

.ButtonMakerStackstacks_in_9593_page39 .Button-Label {
	color: #FFFFFF;
	font-size: 18px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_9593_page39:hover .Button-Label {
	color: #FFFFFF;
}






@media print {
	.ButtonMakerStackstacks_in_9593_page39 {
		display: none !important;
	}
}

/* End of CSS code for the Next Page button */











/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_9950_page39 #myExtraContent10,
#ExtraContentPlusstacks_in_9950_page39 #fs {
	display: none;
}

#stacks_in_9951_page39>.s3_row {
	margin: 0 -10px;
}

#stacks_in_9951_page39>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_9951_page39>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_9951_page39>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_9951_page39>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_9951_page39>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_9951_page39 {
	background-color: rgba(36, 36, 36, 1.00);
	margin: 0px 200px 0px 200px;
}
/* Start Stats stack CSS code */.stacks_in_10100_page39stats, .stacks_in_10100_page39pagetitle{	display: none;}.stacks_in_10100_page39instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	border: 4px solid #1C222B;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_10100_page39instruct{	position: absolute;	text-align: center;	bottom: 10px;	left: 10px;	right: 10px;	color: #fff;	font-weight: bold;	font-family: Arial, Helvetica, sans-serif;} /* End if record mode */ /* End if admin mode *//* End Stats stack CSS code */