/*
TopBox is derived from Nivo Lightbox v1.3.1, created by Dev7studios:
http://dev7studios.com/nivo-lightbox

TopBox is updated for jQuery 3 and has additional features / content support.
Maintained by William Woodgate

TopBox homepage:
https://willwoodgate.com/projects/topbox/

Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php
*/
/* Core CSS to make the lightbox work */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99995;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.topbox_overlay,
.topbox_overlay *,
.topbox_overlay *:before,
.topbox_overlay *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.topbox_fill {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_overlay.topbox_open {
  visibility: visible;
  opacity: 1;
}

.topbox_wrapper {
  position: absolute;
  z-index: 99996;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.topbox_content {
  position: relative;
  z-index: 99998;
  height: 80vh;
  width: 80vw;
  display: flex;
  align-items: center;
}

.topbox_title_wrap {
  position: relative;
  z-index: 99998;
}

.topbox_nav {
  display: none;
}

.topbox_prev,
.topbox_next,
.topbox_close {
  position: absolute;
  z-index: 99999;
  background: none;
  border: none;
  cursor: pointer;
}

.topbox_prev {
  left: 0;
}

.topbox_next {
  right: 0;
}

.topbox_close {
  top: 0;
  right: 0;
}

.topbox_close_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
}

.topbox_image {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  margin: auto;
}

.topbox_html5_audio_wrap {
  width: 100%;
}

.topbox_html5audio {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.topbox_html5_video_wrap {
  width: 100%;
}

.topbox_html5video {
  margin: auto;
  max-width: 100%;
  height: auto;
}

.topbox_iframe_wrap,
.topbox_iframe,
.topbox_pdf_wrap,
.topbox_pdf {
  width: 100%;
  height: 100%;
  display: block;
}

.topbox_pdf_mobile_message {
  display: inline-block;
  margin: auto;
}

.topbox_embedded_web_video {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.topbox_embedded_web_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_video_iframe_wrap {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
}

iframe.topbox_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Fix for video sizing, if using the Plyr plugin for custom video controls
https://github.com/sampotts/plyr
*/
.topbox_content .plyr {
  min-width: 100%;
}

.topbox_inline,
.topbox_ajax {
  max-height: 100%;
  width: 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 */
}

.topbox_error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

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

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* slideLeft / slideRight / slideUp / slideDown */
.topbox_notouch .topbox_effect_slideLeft .topbox_content,
.topbox_notouch .topbox_effect_slideRight .topbox_content,
.topbox_notouch .topbox_effect_slideUp .topbox_content,
.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.topbox_notouch .topbox_effect_slideLeft .topbox_content {
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.topbox_notouch .topbox_effect_slideRight .topbox_content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.topbox_notouch .topbox_effect_slideLeft.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideRight.topbox_open .topbox_content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

.topbox_notouch .topbox_effect_slideUp .topbox_content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.topbox_notouch .topbox_effect_slideUp.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideDown.topbox_open .topbox_content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}
@media all {
	
	
	
	
	
	
	
	
	
	
	#nav,
	#fontStackstacks_in_59144_2 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 100%;
		line-height: 100%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_59144_2 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	h1,
	
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_59144_3 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 200%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_59144_3 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	
	h2,
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_59144_12 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 150%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_59144_12 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	
	
	h3,
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_59144_10 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 120%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_59144_10 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	body,
	
	
	
	
	
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_59144_4 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 110%;
		line-height: 150%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_59144_4 {
		color: rgba(127, 127, 127, 1.00);
	}
}

#stacks_in_57223 .stacks_left {
	float:left;
	width:49%;
}

#stacks_in_57223 .stacks_right {
	float:right;
	width:49%;
}
#stacks_in_57223 {
	margin: 0px 0px 40px 0px;
}

#stacks_out_59155 {
	width: 250px;
	margin-left:0;
}

#stacks_in_59157 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_59159 {
	margin: 0px 0px 20px 0px;
}
.topbox_content {
  width: 65vw;
  height: 85vh;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}


/* Stops the page scrolling when the lightbox is opened */
html.topbox_open,
html.topbox_open body {
overflow: hidden !important;
}


#topbox_trigger_region_stacks_in_59160 {
  position: relative;
}

#topbox_trigger_stacks_in_59160 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}












/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}
































































/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_59161 {
  position: relative;
}

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






#stacks_in_59162 {
	margin:  20px;
}
#stacks_in_59164 {
    text-align: center;
    padding: 0.25rem 0.25rem;
}

#stacks_in_59164 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: 2rem;
    font-family: inherit;
    line-height: 1.2;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1.00);
    font-size: 1.25rem;
    padding: 0.5rem 2rem;
    text-decoration: none;
    outline: 0;
    /* Misc. text formating */ 
    /* No text shadow */
    /* No box shadow */
    /* No border */
}

#stacks_in_59164 a:hover {
    color: rgba(255, 255, 255, 1.00);
    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 */ 
    /* No border */
}

#stacks_in_59164 a:active {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(60, 176, 253, 0.50);
    background-image: -webkit-linear-gradient(top, rgba(60, 176, 253, 0.50), rgba(52, 152, 219, 0.50));
    background-image: -moz-linear-gradient(top, rgba(60, 176, 253, 0.50), rgba(52, 152, 219, 0.50));
    background-image: -ms-linear-gradient(top, rgba(60, 176, 253, 0.50), rgba(52, 152, 219, 0.50));
    background-image: -o-linear-gradient(top, rgba(60, 176, 253, 1.00), rgba(52, 152, 219, 0.50));
    background-image: linear-gradient(to bottom, rgba(60, 176, 253, 0.50), rgba(52, 152, 219, 0.50));
    text-decoration: none;
    /* Misc. text formatting */ 
    /* No border */
}

#stacks_in_59164 a:focus {
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.50);
}#stacks_in_59152_5>.s3_row {
	margin: 0 -10px;
}

#stacks_in_59152_5>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_59152_5>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_59152_5>.s3_row>.s3_column_right {
	width: 33.33%;
}

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








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



}



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


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


}




#stacks_in_59152_5 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_59152_3 {
	margin: 0px 20px 0px 0px;
}

#stacks_in_59152_12 {
	margin: 0px 0px 10px 0px;
}
/* @group Reset */

/**/
#rapidSearchHelperFormstacks_in_59152_16,
#rapidSearchHelperFieldsetstacks_in_59152_16,
#rapidSearchHelperInputstacks_in_59152_16,
#rapidSearchHelperSearchButtonstacks_in_59152_16 {
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	box-shadow: none;
	line-height: 1.2;
}
/**/

/* @end */

/**/

/**/

/**/

/**/

/**/

/**/

/**/


/**/
#rapidSearchHelperInputstacks_in_59152_16 {
	display: block;
	width: 100%;
	border: 1px solid rgba(204, 204, 204, 1.00);
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 4px;
	transition: all 300ms ease-in-out;
	box-shadow: none;
	background: rgba(255, 255, 255, 1.00);
	color: rgba(102, 102, 102, 1.00);
}

#rapidSearchHelperInputstacks_in_59152_16:focus {
	border: 1px solid rgba(102, 175, 233, 1.00);
	box-shadow: none;
	background: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperSearchButtonstacks_in_59152_16 {
	display: inline-block;
	float: right;
	background: none;
	border: none;
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 4px;
	background: rgba(76, 76, 76, 1.00);
	color: rgba(255, 255, 255, 1.00);
	margin-top: 10px;
	transition: all 300ms ease-in-out;
}

#rapidSearchHelperSearchButtonstacks_in_59152_16:hover {
	background: rgba(51, 51, 51, 1.00);
	color: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperSearchButtonstacks_in_59152_16:active {
	background: rgba(0, 0, 0, 1.00);
	color: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperIconstacks_in_59152_16 {
	display: none;
}
/**/

/**/

/* @group Reveals */

/**/

	/**/
	#stacks_in_59152_16 {
		position: fixed;
		overflow: visible;
		display: none;
		background: rgba(51, 51, 51, 1.00);
		margin-top: 15px;
		padding: 20px;
		border-radius: 5px;
		width: 200px;
		z-index: 9999;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	}

	@media screen and (min-width: 768px) {
		#stacks_in_59152_16 {
			width: 350px;
		}
	}

	#stacks_in_59152_16:before {
		top: -20px;
		content: " ";
		display: block;
		height: 20px;
		left: 0;
		position: absolute;
		width: 100%;
	}

	#stacks_in_59152_16:after {
		border-left: solid transparent 10px;
		border-right: solid transparent 10px;
		border-bottom: solid rgba(51, 51, 51, 1.00) 10px;
		top: -10px;
		content: " ";
		height: 0;
		left: 50%;
		margin-left: -13px;
		position: absolute;
		width: 0;
	}

	#rapidSearchHelperWindowShadestacks_in_59152_16 {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9998;
		display: block;
		background: rgba(0, 0, 0, 0.80);
		display: none;
	}

	nav > ul:first-of-type > li:last-child > a {
		position: relative;
	}

	#revealAnchorPointstacks_in_59152_16 {
		position: absolute;
		bottom: 0;
		left: 50%;
		height: 1px;
		width: 1px;
		background: transparent;
		display: block;
	}

		/**/

		/**/

		/**/
		#stacks_in_59152_16 {
			-webkit-transform: translateX(-90%);
			-moz-transform: translateX(-90%);
			-ms-transform: translateX(-90%);
			-o-transform: translateX(-90%);
			transform: translateX(-90%);
		}

		#stacks_in_59152_16:after {
			left: 90%;
		}
		/**/

	/**/

	/**/

	/**/

/**/

/* @end */

@media print {
	#stacks_in_59152_16 {
		display: none;
	}
}

/* @end */
/**/
