
/*
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;
}
:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(180, 186, 189, 1.00);--secondary:rgba(231, 231, 231, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(0, 138, 223, 0.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(142, 142, 141, 1.00);--success-contrast:rgba(254, 254, 254, 1.00);--warning-contrast:rgba(254, 254, 254, 1.00);--alert-contrast:rgba(254, 254, 254, 1.00);/* --primary-light:rgba(255, 255, 255, 1.00);--secondary-light:rgba(255, 255, 255, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 246, 1.00);--alert-light:rgba(210, 255, 255, 0.00);*/--primary-dark:rgba(150, 156, 159, 1.00);--secondary-dark:rgba(201, 201, 201, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(0, 108, 193, 0.00);--header-color:rgba(180, 186, 189, 1.00);--subheader-color:rgba(193, 198, 201, 1.00);--small-color:rgba(193, 198, 201, 1.00);--text-color:rgba(180, 186, 189, 1.00);--link-color:rgba(180, 186, 189, 1.00);--link-color-hover:rgba(180, 186, 189, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:underline;--overlay-color:rgba(0, 0, 0, 0.00);--radius:0px}::-moz-selection{background:var(--selection-background);color:var(--selection-text)}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(193, 198, 201, 1.00);--subheader-color:rgba(193, 198, 201, 1.00);--small-color:rgba(193, 198, 201, 1.00);--text-color:rgba(180, 186, 189, 1.00);--link-color:rgba(180, 186, 189, 1.00);--link-color-hover:rgba(179, 179, 179, 1.00);--link-decoration:none;--link-decoration-hover:underline}.grid-container{max-width:calc(1200rem/16);}.radius{border-radius:var(--radius)}body{font-size:calc(14rem/16)}h1,.h1{font-size:calc(36rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(18rem/16)}h1,.h1{font-size:calc(80rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6,h1>a,h2>a,h3>a,h4>a,h5>a,h6>a{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(0rem/16)}body{background-color:rgba(30, 30, 30, 1.00);}
/*!* Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com* License - https://fontawesome.com/license (Commercial License)*/@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:900;font-display:block;src:url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot");src:url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff2") format("woff2"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff") format("woff"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.ttf") format("truetype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Pro';font-weight:900}
.fontblau{--header-color:rgba(0, 138, 223, 1.00);--subheader-color:rgba(0, 138, 223, 1.00);--small-color:rgba(0, 138, 223, 1.00);--text-color:rgba(0, 138, 223, 1.00);--link-color:rgba(0, 138, 223, 1.00);--link-color-hover:rgba(0, 138, 223, 1.00);--link-decoration:none;--link-decoration-hover:none}
.009FE3{color:rgba(0, 138, 223, 1.00) !important;}

#turnerstacks_in_1255 {display: none;}

@media screen
  and (min-height: 0px)
  and (max-height: 491px)
  and (orientation: landscape)  {

#turnerstacks_in_1255 {
	display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(40, 40, 40, 1.00);
    z-index: 100000;
}

#turner-contentstacks_in_1255{
    position: absolute;
    top: 50%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    transform: translateY(-50%);
}

.turner-animstacks_in_1255{
  max-width: 100px;
  max-height: 100px;
  margin-bottom: 18px;
}

.turner-headerstacks_in_1255{
  color: white;
  margin-top: 12px;
}
.turner-subheaderstacks_in_1255{
  color: white;
  margin-top: 12px;
}

.turner-subsubheaderstacks_in_1255{
  color: white;
  margin-top: 12px;
}

}




#stacks_in_1256 {
	font-size: 80%;
}

#stacks_in_1257 {
	font-size: 80%;
}

#stacks_in_1258 {
	font-size: 70%;
}

.stacksPage {

}


.alignment, .alignment_overlay {
	 
}

#stacks_in_112 .alignment {  display: table; height: 92vh;  float: none; margin: 0 auto;  

 width: 88%; 


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 

 
    
	 background-image:none;      
	 
	 
	background-attachment: scroll;

		

			
			background-position:  center top;
		

	

	 

	 

 

/*Custom CSS;*/
}


#stacks_in_112 .alignment_overlay { 

	display: table; height: 92vh; width: 100% !important;

	
	
	 
		background: url(../files/none) scroll repeat !important;
	 
	
		
		background-image: none !important;
	


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 
		
	
		opacity: 1;
	

}


#stacks_in_112 .align { 
 display: table-cell; vertical-align: middle !important;  

text-align: none;

/*Custom CSS;*/ 
}

#stacks_in_112 .align:hover {

}

img {

/*Custom CSS;*/
}

#stacks_in_112 .responsiveimage img {












/*Custom CSS;*/
}

#stacks_in_112 .center_slice {
	max-width: 3000px; margin-left: auto; margin-right: auto;
}

#stacks_in_112 .extrazone
{
	margin-left:auto; margin-right:auto;
	
	

	




 


	/*Custom CSS;*/
}


#stacks_in_112 .fiddlereditinfo {
	display: inline-block;
	float: right;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	bottom:20px;
	right: 10px;
	width: 100px;
	font-size:11px;
	text-align:center;
	height:12px;
	line-height:12px;
	background-color: #77aad5;
	color: whitesmoke;
	padding:1px 5px;
	z-index:2;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-border-radius: 7px;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

/* iPad with portrait orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
#stacks_in_112 .alignment {  height: 1024px;  }
}
 
/* iPad with landscape orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape){
#stacks_in_112 .alignment {  height: 768px;  }
}

/*iPhone 5*/
@media screen and (device-aspect-ratio: 40/71) {
#stacks_in_112 .alignment {  height: 500px;  }
}







.topbox_content {
  width: 92vw;
  height: 80vh;
}

.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_1725 {
  position: relative;
}

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








/* Our lightbox skin named 'blocky' */
.topbox_skin_blocky .topbox_fill {
  background-color: rgba(0, 0, 0, 0.7);
}

.topbox_skin_blocky .topbox_error,
.topbox_skin_blocky .topbox_pdf_mobile_message {
  color: #ffffff;
  font-size: 18px;
}

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

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

.topbox_skin_blocky .topbox_prev,
.topbox_skin_blocky .topbox_next,
.topbox_skin_blocky .topbox_close {
  text-decoration: none;
  font-size: 45px;
  color: #ffffff;
  background: #000000;
  transition: all 300ms ease-in;
  width: 55px;
  line-height: 55px;
  text-align: center;
}

.topbox_skin_blocky .topbox_close {
  line-height: 65px;
  margin-top: -10px;
}

.topbox_skin_blocky .topbox_prev:hover,
.topbox_skin_blocky .topbox_next:hover,
.topbox_skin_blocky .topbox_close:hover {
  color: #cdcdcd;
}

.topbox_skin_blocky .topbox_prev:before {
  content: "◀"
}

.topbox_skin_blocky .topbox_next:before {
  content: "▶"
}

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

.topbox_skin_blocky .topbox_title_wrap {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.topbox_skin_blocky .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  background: none;
  color: #ffffff;
  background: #000000;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
}

.topbox_skin_blocky .topbox_image,
.topbox_skin_blocky .topbox_html5audio,
.topbox_skin_blocky .topbox_html5video,
.topbox_skin_blocky .topbox_embedded_web_video,
.topbox_skin_blocky .plyr,
.topbox_skin_blocky .topbox_ajax,
.topbox_skin_blocky .topbox_inline,
.topbox_skin_blocky .topbox_ajax,
.topbox_skin_blocky .topbox_pdf_wrap,
.topbox_skin_blocky .topbox_iframe_wrap,
.topbox_skin_blocky .topbox_video_iframe_wrap {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}




































































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





#topbox_trigger_region_stacks_in_1728 {
  position: relative;
}

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






	.protected_stacks_in_793{
	-webkit-user-select: none!important;
	 -khtml-user-select: none!important;
	   -moz-user-select: none!important;
	     -o-user-select: none!important;
	        user-select: none!important;    
	}

/* Centerer styles */
/* Copyright Bryn Owen Design, 2015 */

#stacks_in_779 {
	text-align: center;
	}

.Centerer_stacks_in_779 {
	text-align: center;
	position: relative;
	}

.Centerer_stacks_in_779 div {
	position: relative;
	}

.Centerer_Inner_stacks_in_779 {
	width: 100%;
	position: absolute;
	}


/* Centerer main container div styles */

#Centerer_Stack1_stacks_in_779 {
	
	
	opacity: 1.00;
	
	
	text-align: center !important;
	
	
	}






/* Centerer inner div overrides */

#Centerer_Stack1_stacks_in_779 div {
	display: inline-block;
	float: none !important;
	
	}





/* Centerer inner text overrides for alignment */

#Centerer_Stack1_stacks_in_779 div div {
	
	}




/* -- Start Svg Each css Template -- */


#stacks_in_1716 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1716svgwrapper{
	position: relative;
}



#stacks_in_1716 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1716 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1716 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1716 {
	margin: 4px 0px 20px 0px;
}

#stacks_out_1716 {
	width: 24%;
}

.stacksPage {

}


.alignment, .alignment_overlay {
	 
}

#stacks_in_797 .alignment {  display: table; height: 89vh;  float: none; margin: 0 auto;  

 width: 86%; 


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 

 
    
	 background-image:none;      
	 
	 
	background-attachment: scroll;

		

			
			background-position:  center top;
		

	

	 

	 

 

/*Custom CSS;*/
}


#stacks_in_797 .alignment_overlay { 

	display: table; height: 89vh; width: 100% !important;

	
	
	 
		background: url(../files/none) scroll repeat !important;
	 
	
		
		background-image: none !important;
	


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 
		
	
		opacity: 0.65;
	

}


#stacks_in_797 .align { 
 display: table-cell; vertical-align: middle !important;  

text-align: none;

padding-left: 10px;
padding-right: 10px;
padding-top: 10px !important;
padding-bottom: 10px !important;

/*Custom CSS;*/ 
}

#stacks_in_797 .align:hover {

}

img {

/*Custom CSS;*/
}

#stacks_in_797 .responsiveimage img {












/*Custom CSS;*/
}

#stacks_in_797 .center_slice {
	max-width: 3000px; margin-left: auto; margin-right: auto;
}

#stacks_in_797 .extrazone
{
	margin-left:auto; margin-right:auto;
	
	

	


padding-left: 10px;
padding-right: 10px;
padding-top: 10px !important;
padding-bottom: 10px !important;



 


	/*Custom CSS;*/
}


#stacks_in_797 .fiddlereditinfo {
	display: inline-block;
	float: right;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	bottom:20px;
	right: 10px;
	width: 100px;
	font-size:11px;
	text-align:center;
	height:12px;
	line-height:12px;
	background-color: #77aad5;
	color: whitesmoke;
	padding:1px 5px;
	z-index:2;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-border-radius: 7px;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

/* iPad with portrait orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
#stacks_in_797 .alignment {  }
}
 
/* iPad with landscape orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape){
#stacks_in_797 .alignment {  }
}

/*iPhone 5*/
@media screen and (device-aspect-ratio: 40/71) {
#stacks_in_797 .alignment {  }
}








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





#topbox_trigger_region_stacks_in_1747 {
  position: relative;
}

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





/* Start Defender stack CSS code */#stacks_in_798{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_798edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_798info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code *//* Centerer styles */
/* Copyright Bryn Owen Design, 2015 */

#stacks_in_799 {
	text-align: center;
	}

.Centerer_stacks_in_799 {
	text-align: center;
	position: relative;
	}

.Centerer_stacks_in_799 div {
	position: relative;
	}

.Centerer_Inner_stacks_in_799 {
	width: 100%;
	position: absolute;
	}


/* Centerer main container div styles */

#Centerer_Stack1_stacks_in_799 {
	
	
	opacity: 1.00;
	
	
	text-align: center !important;
	
	
	}






/* Centerer inner div overrides */

#Centerer_Stack1_stacks_in_799 div {
	display: inline-block;
	float: none !important;
	
	}





/* Centerer inner text overrides for alignment */

#Centerer_Stack1_stacks_in_799 div div {
	
	}




/* -- Start Svg Each css Template -- */


#stacks_in_1723 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1723svgwrapper{
	position: relative;
}



#stacks_in_1723 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1723 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1723 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1723 {
	margin: 4px 0px 0px 0px;
}

#stacks_out_1723 {
	width: 57%;
}

.stacksPage {

}


.alignment, .alignment_overlay {
	 
}

#stacks_in_806 .alignment {  display: table; height: 81vh;  float: none; margin: 0 auto;  

 width: 86%; 


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 

 
    
	 background-image:none;      
	 
	 
	background-attachment: scroll;

		

			
			background-position:  center top;
		

	

	 

	 

 

/*Custom CSS;*/
}


#stacks_in_806 .alignment_overlay { 

	display: table; height: 81vh; width: 100% !important;

	
	
	 
		background: url(../files/none) scroll repeat !important;
	 
	
		
		background-image: none !important;
	


	-webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
 
		
	
		opacity: 0.65;
	

}


#stacks_in_806 .align { 
 display: table-cell; vertical-align: middle !important;  

text-align: none;

padding-left: 10px;
padding-right: 10px;
padding-top: 10px !important;
padding-bottom: 10px !important;

/*Custom CSS;*/ 
}

#stacks_in_806 .align:hover {

}

img {

/*Custom CSS;*/
}

#stacks_in_806 .responsiveimage img {












/*Custom CSS;*/
}

#stacks_in_806 .center_slice {
	max-width: 3000px; margin-left: auto; margin-right: auto;
}

#stacks_in_806 .extrazone
{
	margin-left:auto; margin-right:auto;
	
	

	


padding-left: 10px;
padding-right: 10px;
padding-top: 10px !important;
padding-bottom: 10px !important;



 


	/*Custom CSS;*/
}


#stacks_in_806 .fiddlereditinfo {
	display: inline-block;
	float: right;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	bottom:20px;
	right: 10px;
	width: 100px;
	font-size:11px;
	text-align:center;
	height:12px;
	line-height:12px;
	background-color: #77aad5;
	color: whitesmoke;
	padding:1px 5px;
	z-index:2;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-border-radius: 7px;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

/* iPad with portrait orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
#stacks_in_806 .alignment {  }
}
 
/* iPad with landscape orientation */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape){
#stacks_in_806 .alignment {  }
}

/*iPhone 5*/
@media screen and (device-aspect-ratio: 40/71) {
#stacks_in_806 .alignment {  }
}








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





#topbox_trigger_region_stacks_in_1754 {
  position: relative;
}

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





/* Start Defender stack CSS code */#stacks_in_807{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_807edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_807info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code *//* Centerer styles */
/* Copyright Bryn Owen Design, 2015 */

#stacks_in_808 {
	text-align: center;
	}

.Centerer_stacks_in_808 {
	text-align: center;
	position: relative;
	}

.Centerer_stacks_in_808 div {
	position: relative;
	}

.Centerer_Inner_stacks_in_808 {
	width: 100%;
	position: absolute;
	}


/* Centerer main container div styles */

#Centerer_Stack1_stacks_in_808 {
	
	
	opacity: 1.00;
	
	
	text-align: center !important;
	
	
	}






/* Centerer inner div overrides */

#Centerer_Stack1_stacks_in_808 div {
	display: inline-block;
	float: none !important;
	
	}





/* Centerer inner text overrides for alignment */

#Centerer_Stack1_stacks_in_808 div div {
	
	}





#stacks_out_808 {
	width: 80%;
}
/* -- Start Svg Each css Template -- */


#stacks_in_1724 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1724svgwrapper{
	position: relative;
}



#stacks_in_1724 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1724 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1724 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1724 {
	margin: 4px 0px 0px 0px;
}

#stacks_out_1724 {
	margin-left:0;
}

	.footerzero{
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		background: #FB0207;
		background-color: transparent!important;
		z-index: 99999;
		opacity:1!important;
	}
	
	
		.footerzero{
			height: auto;
		} 
	
	
	.show{opacity: 1;}
	.hide{opacity: 0;}
	
	.fzSlideIn{
		bottom: 0;
		opacity: 1;
		-webkit-transition-duration: 0.00s;
		   -moz-transition-duration: 0.00s;
			    transition-duration: 0.00s;
	}
	
	.fzSlideOut{
		bottom: -100px;
		opacity: 0;
		-webkit-transition-duration: 0.00s;
		   -moz-transition-duration: 0.00s;
			    transition-duration: 0.00s;
	}

#stacks_in_1184 {
	margin: 0px 0px 12px 0px;
}

#stacks_out_1184 {
	width: 320px;
}

#stacks_in_1187 {
	word-spacing: -1px;
	font-size: 50%;
}

	.footerzero{
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		background: #FB0207;
		background-color: transparent!important;
		z-index: 99999;
		opacity:1!important;
	}
	
	
		.footerzero{
			height: auto;
		} 
	
	
	.show{opacity: 1;}
	.hide{opacity: 0;}
	
	.fzSlideIn{
		bottom: 0;
		opacity: 1;
		-webkit-transition-duration: 0.00s;
		   -moz-transition-duration: 0.00s;
			    transition-duration: 0.00s;
	}
	
	.fzSlideOut{
		bottom: -100px;
		opacity: 0;
		-webkit-transition-duration: 0.00s;
		   -moz-transition-duration: 0.00s;
			    transition-duration: 0.00s;
	}

#stacks_in_1205 {
	margin: 0px 0px 12px 0px;
}

#stacks_out_1205 {
	width: 280px;
}

#stacks_in_1208 {
	word-spacing: -1px;
	font-size: 50%;
}
