.inmotion img{ width:100%;   }
.inmotion { width:100%;  overflow:hidden; max-width:100%!important;  }

.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: linear;	
	-webkit-animation-timing-function:linear;		

	visibility: visible !important;	
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}
	
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}
	
	100% {
		-webkit-transform: translateX(0%);
	}
}


/* Outer Container */
.smoothslides, .smoothslides-on {
	position:relative;
	font-size:0;
	line-height: 0;
	min-height: 40px;
	
}
/* Outer Container Background (visible while loading) */
.smoothslides {
	background:rgba(255,255,255,.5);
}
/* Hide images until loaded */
.smoothslides img {
	display:none;
}

/* Loading animation keyframes */ 
@keyframes throb {
	0% {
		opacity:0;
		transform:scale(1);
	}
	50% {
		opacity:1;
		transform:scale(.2);
	}
	100% {
		opacity:0;
		transform:scale(1);
	}
}
@-webkit-keyframes throb {
	0% {
		opacity:0;
		-webkittransform:scale(1);
	}
	50% {
		opacity:1;
		-webkittransform:scale(.2);
	}
	100% {
		opacity:0;
		-webkittransform:scale(1);
	}
}
/* Loading animation */
.smoothslides:before {
	content:'';
	position: absolute;
	width:8px;
	height:8px;
	left:50%;
	top:50%;
	margin-left:-4px;
	margin-top:-4px;

	animation: throb 1s infinite;
	-webkit-animation: throb 1s infinite;
}

/* wrapper around all slides */
.ss-slide-stage {
	position: relative;
	overflow: hidden;

	/* This fixes the bug in chrome where border-radius doesn't work with overflow hidden */
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

/* wrapper around each slide */
.ss-slide {
	position: absolute;
	top:0;
	left:0;
	transform-origin:center;
	display: block;
	width:100%;
	zoom: 1;
}
.ss-slide img{
	height:auto;
	/* max-width, or width gets set via JS */
}
/* Caption wrapper. Used for centering */
.ss-caption-wrap {
	position: absolute;
	bottom:40%;
	width:100%;
	padding:0 5px 5px 5px;
	text-align:center;
	box-sizing:border-box;
}

/* Caption */
.ss-caption {
	min-height:50px;
	
	color: #fff;
	font-size:20px;
	font-weight: bold;
	line-height: 1.4em;

	padding-top:15px;
	box-sizing:border-box;
}

/* Previous and Next buttons */
.smoothslides-on a.ss-prev, .smoothslides-on a.ss-next {
	position: absolute;
	bottom:40%;
	left:5px;
	font-size:14px;
	line-height: 1em;
	color:#A1A1A1;
	text-decoration: none;
	background:#fff;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 3px;
	opacity:.5;
	transition:.2s ease-out;
	font-family: sans-serif;
}

.smoothslides-on  a.ss-next {
	left:auto;
	right:5px;
}
/* Highlight nav btns when hovering over the slideshow */
.smoothslides-on:hover .ss-prev, .smoothslides-on:hover .ss-next {
	opacity: 1;
}

.smoothslides-on .ss-prev:hover, .smoothslides-on .ss-next:hover {
	background:#fff;	
	color:#000;
}

/* Pagination wrapper. Used for centering */
.ss-paginate-wrap {
	position: absolute;
	bottom:-30px;
	width:100%;
	text-align:center;
}
.ss-paginate {
	display: inline-block;
	line-height: 0;
}
/* Pagination dots */
.ss-paginate a:link, .ss-paginate a:visited {
	display: inline-block;
	width: 16px;
	height: 4px;
	border-radius: 10px;
	margin: 0 5px;
	background:#ccc;
	background: rgba(0,0,0,.1);
	border: 2px solid #fff;
	transition: .3s;
}
.ss-paginate a:hover {
	background:#ddd;
	background:rgba(0,0,0,.3);
}
.ss-paginate a.ss-paginate-current {
	background:#000;
	background: rgba(0,0,0,.5);
}



@media (max-width: 1024px) {

    .inmotion { max-height:500px!important;}

}


/* changes for smaller screens */
@media (max-width: 600px) {
	.ss-paginate-wrap {
		bottom:-35px;
	}
	.ss-caption {
		min-height:0;
		padding:5px;
		font-size:12px;
	}
	a.ss-prev, a.ss-next {
		bottom:auto;
		top:50%;
		margin-top:-25px;
		color:#000;
		background:rgba(255,255,255,.3);
		color:#444;
	}
	.smoothslides-on, .ss-slide-stage {
		border-radius:0;
	}
}
#stacks_in_6 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_14 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_8 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_10 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_12 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}

#stacks_in_388>.s3_row {
	margin: 0 -6px;
}

#stacks_in_388>.s3_row>.s3_column_left {
	width: 65.00%;
}

#stacks_in_388>.s3_row>.s3_column_right {
	width: 35.000000%;
}




#stacks_in_388>.s3_row>.s3_column {
	padding: 0 6px;
}










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



}



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



}






#stacks_in_388 {
	padding: 50px 15px 50px 15px;
}





	
		#stacks_in_299 {
	

	transition:  color 0.2s ease-in-out;
	-webkit-font-smoothing: antialiased;
	color:rgba(153, 153, 153, 1.00) ;
	font-style:normal ;
	text-decoration:none ;
	text-align:left ;
	font-weight: bold ;
	
	
	
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00) ;
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}






/*-- End Letterpress --*/




#stacks_in_301 h2,#stacks_in_301 h2 a,#stacks_in_301 p,#stacks_in_301 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_301 p a:hover, #stacks_in_301 h2 a:hover{
	color:rgba(204, 204, 204, 1.00);
}












#stacks_in_303 h4,#stacks_in_303 h4 a,#stacks_in_303 p,#stacks_in_303 p a{
	color:rgba(15, 128, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_303 p a:hover, #stacks_in_303 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_303 {
	padding: 40px 0px 0px 5px;
}




#stacks_in_562 h5,#stacks_in_562 h5 a,#stacks_in_562 p,#stacks_in_562 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_562 p a:hover, #stacks_in_562 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_562 {
	padding: 50px 0px 30px 15px;
}

#stacks_in_85 {
	padding: 0px 0px 0px 20px;
}

#stacks_in_86 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_69 {
	padding: 30px 30px 30px 20px;
}

#stacks_in_70 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_75 {
	padding: 0px 0px 30px 20px;
}

#stacks_in_76 {
	line-height: 2em;
	word-spacing: 1px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_239 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_239  a:link,
#cardlinkstacks_in_239  a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_239 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_239 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_239 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}


#stacks_in_239 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_336 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_336  a:link,
#cardlinkstacks_in_336  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_336 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_336 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_336 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}


#stacks_in_336 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
	padding: 0px 30px 0px 30px;
}




#stacks_in_332 h5,#stacks_in_332 h5 a,#stacks_in_332 p,#stacks_in_332 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_332 p a:hover, #stacks_in_332 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_332 {
	background-color: rgba(204, 204, 204, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding: 20px 0px 20px 0px;
}
/* CustomFont 3.0.6 */

@font-face {
    font-family: '';
        src: url('../resources/fonts/.eot'); /* IE9 Compat Modes */
    src: local('')
           , url('../resources/fonts/.eot?#iefix') format('embedded-opentype') /* IE6-IE8 */
        
          , url('../resources/fonts/.woff') format('woff') /* Modern Browsers */
           , url('../resources/fonts/.ttf') format('truetype') /* Safari, Android, iOS */
           , url('../resources/fonts/.svg#') format('svg') /* Legacy iOS */
        
        ;
    font-stretch: normal;
    font-weight: normal;
    font-style: normal;
}

#stacks_in_768, #stacks_in_768 h1, #stacks_in_768 h2, #stacks_in_768 h3, #stacks_in_768 h4, #stacks_in_768 h5, #stacks_in_768 h6, #stacks_in_768 p {
    font-family: '', sans-serif !important;
    font-stretch: normal !important;
    font-weight: normal !important;
    font-style: normal !important;
}
#stacks_in_768 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding: 15px 0px 15px 0px;
}

#stacks_in_65 {
	margin: 250px 0px 20px 0px;
	padding: 0px 0px 0px 200px;
}

#stacks_in_77 {
	margin: 20px 0px 250px 0px;
	padding: 0px 0px 0px 200px;
}
#stacks_in_393>.s3_row {
	margin: 0 -6px;
}

#stacks_in_393>.s3_row>.s3_column_left {
	width: 65.00%;
}

#stacks_in_393>.s3_row>.s3_column_right {
	width: 35.000000%;
}




#stacks_in_393>.s3_row>.s3_column {
	padding: 0 6px;
}










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



}



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



}






#stacks_in_393 {
	padding: 50px 15px 50px 15px;
}




#stacks_in_305 h3,#stacks_in_305 h3 a,#stacks_in_305 p,#stacks_in_305 p a{
	color:rgba(219, 80, 33, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:left;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_305 p a:hover, #stacks_in_305 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_305 {
	padding: 30px 0px 0px 0px;
}

#stacks_in_71 {
	padding: 20px 0px 0px 20px;
}

#stacks_in_72 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_249 {
	padding: 30px 30px 30px 15px;
}

#stacks_in_250 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_251 {
	padding: 0px 0px 0px 20px;
}

#stacks_in_252 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_79 {
	padding: 40px 0px 60px 15px;
}

#stacks_in_80 {
	line-height: 2em;
	word-spacing: 1px;
	text-transform: capitalize;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_284 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_284 .theDivider1,
#simpleDivider_stacks_in_284 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_284 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_284.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_284.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_284 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_284.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_284.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_284.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_284.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_277 {
	padding: 30px 30px 0px 30px;
}

#stacks_in_278 {
	line-height: 2em;
	word-spacing: 1px;
}
/* @group Basics */

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

#switcherstacks_in_253 {
	display: none;
}

/* Reset for lists within Switcher */

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

/* @end */

/* @group Accordion */

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

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

/* Static accordion */

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

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

/* Hovered accordion */

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

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

/* Clicked accordion */

#accordionInterfacestacks_in_253 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(51, 204, 255, 1.00);
}

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

/* Active accordion */

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

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

/* @group Open and closed floating icons */

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

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

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

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

/* @end */

/* @end */

/* @group Tabs */

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

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

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

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



/* Static tabs */

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

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

/* Hovered Tabs */

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

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

/* Clicked tabs */

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

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

/* Active Tabs */

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

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

/* Hide accordion toggle headings */

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

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_253.tabbed-layout #accordionInterfacestacks_in_253 {
	display: none;
}

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

#switcherstacks_in_253.tabbed-layout #tabbedInterfacestacks_in_253 {
	display: block;
}

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

#switcherstacks_in_253.accordion-layout #tabbedInterfacestacks_in_253 {
	display: none;
}


/* Hide open / close accordion heading icons */

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

/* @end */

/* @group Content Panels */

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

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

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

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

/* @end */

/* @group Print style settings */

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

/* @end */

/* @group Advanced Settings */

/**/

/**/

/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_253 {
	padding: 20px 160px 60px 60px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_282 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_283 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_265 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_266 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_270 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_271 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_275 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_276 {
	word-spacing: 1px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_285 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_285 .theDivider1,
#simpleDivider_stacks_in_285 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_285 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_285.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_285.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_285 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_285.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_285.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_285.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_285.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_81 {
	padding: 75px 30px 30px 15px;
}

#stacks_in_82 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_83 {
	padding: 0px 0px 30px 20px;
}

#stacks_in_84 {
	line-height: 2em;
	word-spacing: 1px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_241 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_241  a:link,
#cardlinkstacks_in_241  a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_241 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_241 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_241 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}


#stacks_in_241 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
	padding: 50px 0px 0px 0px;
}

#stacks_in_139 {
	margin: 250px 0px 20px 0px;
	padding: 0px 0px 0px 200px;
}

#stacks_in_141 {
	padding: 0px 0px 0px 240px;
}

#stacks_in_113 {
	padding: 30px 30px 250px 200px;
}

#stacks_in_114 {
	line-height: 2em;
	word-spacing: 1px;
}
#stacks_in_398>.s3_row {
	margin: 0 -6px;
}

#stacks_in_398>.s3_row>.s3_column_left {
	width: 65.00%;
}

#stacks_in_398>.s3_row>.s3_column_right {
	width: 35.000000%;
}




#stacks_in_398>.s3_row>.s3_column {
	padding: 0 6px;
}










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



}



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



}






#stacks_in_398 {
	padding: 50px 15px 50px 15px;
}




#stacks_in_307 h3,#stacks_in_307 h3 a,#stacks_in_307 p,#stacks_in_307 p a{
	color:rgba(15, 128, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_307 p a:hover, #stacks_in_307 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_307 {
	padding: 0px 0px 20px 0px;
}

#stacks_in_126 {
	padding: 0px 0px 0px 20px;
}

#stacks_in_127 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_160 {
	padding: 0px 0px 0px 30px;
}

#stacks_in_161 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_130 {
	padding: 30px 0px 30px 15px;
}

#stacks_in_131 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_134 {
	padding: 0px 0px 0px 20px;
}

#stacks_in_135 {
	line-height: 2em;
	word-spacing: 1px;
}
/* -- Start Shady Each css Template -- */

#stacks_in_713,#stacks_in_713 * {
	overflow: visible !important;
}

#stacks_in_713 img{
	-webkit-filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.5));
	max-width: 100%;
	height: auto;
	transform: translate3d(0,0,0);
}

.stacks_in_713_wrapper {
	box-sizing: border-box;
	padding: 20px;
	padding-right: 20px;
	padding-bottom: 30px;	
	max-width: calc(10000px - 20px);
	margin: 0 auto 0 auto;
}





/* -- End Shady Each css Template -- *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_571 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_571 .theDivider1,
#simpleDivider_stacks_in_571 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_571 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_571.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #333333;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_571.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_571 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_571.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_571.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_571.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_571.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_568>.s3_row {
	margin: 0 -10px;
}

#stacks_in_568>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_568>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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



}






#stacks_in_568 {
	padding: 0px 0px 100px 0px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_586 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_586  a:link,
#cardlinkstacks_in_586  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_586 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_586 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_586 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}





#stacks_in_574 h4,#stacks_in_574 h4 a,#stacks_in_574 p,#stacks_in_574 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_574 p a:hover, #stacks_in_574 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_574 {
	padding: 50px 15px 0px 15px;
}




#stacks_in_576 h3,#stacks_in_576 h3 a,#stacks_in_576 p,#stacks_in_576 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_576 p a:hover, #stacks_in_576 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_576 {
	padding: 30px 0px 50px 0px;
}

#stacks_in_580 {
	padding: 140px 0px 0px 0px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_588 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_588  a:link,
#cardlinkstacks_in_588  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_588 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_588 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_588 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}





#stacks_in_578 h4,#stacks_in_578 h4 a,#stacks_in_578 p,#stacks_in_578 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_578 p a:hover, #stacks_in_578 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_578 {
	padding: 50px 0px 0px 0px;
}

#stacks_in_572 {
	padding: 30px 30px 0px 30px;
}





	
		#stacks_in_594 {
	

	transition:  color 0.2s ease-in-out;
	-webkit-font-smoothing: antialiased;
	color:rgba(153, 153, 153, 1.00) ;
	font-style:normal ;
	text-decoration:none ;
	text-align:left ;
	font-weight: bold ;
	
	
	
	

	

	
		text-shadow: 0px 1px 1px rgba(85, 85, 85, 1.00) ;
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}






/*-- End Letterpress --*/
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_631 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_631 .theDivider1,
#simpleDivider_stacks_in_631 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_631 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_631.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_631.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_631 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_631.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_631.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_631.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_631.bgImageOn .theDivider1 img {
	display: block;
}





#stacks_in_596 h2,#stacks_in_596 h2 a,#stacks_in_596 p,#stacks_in_596 p a{
	color:rgba(237, 89, 27, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_596 p a:hover, #stacks_in_596 h2 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_596 {
	padding: 30px 0px 20px 0px;
}



	#stacks_in_629 h4,#stacks_in_629 h4 a,#stacks_in_629 p,#stacks_in_629 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_629 h4,#stacks_in_629 h4 a,#stacks_in_629 p,#stacks_in_629 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_629 p a:hover, #stacks_in_629 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_629 {
	padding: 15px 0px 15px 0px;
}




#stacks_in_598 h6,#stacks_in_598 h6 a,#stacks_in_598 p,#stacks_in_598 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_598 p a:hover, #stacks_in_598 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_598 {
	padding: 20px 0px 0px 10px;
}




#stacks_in_600 h6,#stacks_in_600 h6 a,#stacks_in_600 p,#stacks_in_600 p a{
	color:rgba(44, 110, 254, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_600 p a:hover, #stacks_in_600 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_600 {
	padding: 50px 30px 30px 30px;
}

#stacks_in_603 {
	line-height: 2em;
	word-spacing: 1px;
}



	#stacks_in_632 h6,#stacks_in_632 h6 a,#stacks_in_632 p,#stacks_in_632 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_632 h6,#stacks_in_632 h6 a,#stacks_in_632 p,#stacks_in_632 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_632 p a:hover, #stacks_in_632 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_632 {
	padding: 20px 0px 20px 0px;
}

#stacks_in_606 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_607 {
	line-height: 2em;
	word-spacing: 1px;
}




#stacks_in_634 h4,#stacks_in_634 h4 a,#stacks_in_634 p,#stacks_in_634 p a{
	color:rgba(237, 89, 27, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_634 p a:hover, #stacks_in_634 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_634 {
	padding: 0px 0px 20px 0px;
}



	#stacks_in_636 h6,#stacks_in_636 h6 a,#stacks_in_636 p,#stacks_in_636 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_636 h6,#stacks_in_636 h6 a,#stacks_in_636 p,#stacks_in_636 p a{
	color:rgba(102, 102, 102, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_636 p a:hover, #stacks_in_636 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_636 {
	padding: 0px 0px 20px 0px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_638 {
	width: 100%;
	clear: both;
	padding-top: 10px;
	padding-bottom: 30px;
}
#simpleDivider_stacks_in_638 .theDivider1,
#simpleDivider_stacks_in_638 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_638 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_638.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_638.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_638 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_638.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_638.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_638.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_638.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_619>.s3_row {
	margin: 0 -0px;
}

#stacks_in_619>.s3_row>.s3_column_left {
	width: 58.27%;
}

#stacks_in_619>.s3_row>.s3_column_right {
	width: 41.730000%;
}




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










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



}



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



}






#stacks_in_619 {
	padding: 10px 0px 0px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_622{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_622overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_622leftCol{	position: absolute;		width: 100%;	right: 0;	margin-left: -100%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_622leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_622leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_622leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_622posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_622rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: none;}.stacks_in_622rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_622theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}	.stacks_in_622posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_622posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_622posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_622posterWrapper img:hover{	cursor: pointer;}.stacks_in_622rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_622 {
	padding: 0px 50px 0px 0px;
}




#stacks_in_615 h6,#stacks_in_615 h6 a,#stacks_in_615 p,#stacks_in_615 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_615 p a:hover, #stacks_in_615 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_615 {
	background-color: rgba(204, 204, 204, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin: 10px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
}
/* CustomFont 3.0.6 */

@font-face {
    font-family: '';
        src: url('../resources/fonts/.eot'); /* IE9 Compat Modes */
    src: local('')
           , url('../resources/fonts/.eot?#iefix') format('embedded-opentype') /* IE6-IE8 */
        
          , url('../resources/fonts/.woff') format('woff') /* Modern Browsers */
           , url('../resources/fonts/.ttf') format('truetype') /* Safari, Android, iOS */
           , url('../resources/fonts/.svg#') format('svg') /* Legacy iOS */
        
        ;
    font-stretch: normal;
    font-weight: bold;
    font-style: normal;
}

#stacks_in_627, #stacks_in_627 h1, #stacks_in_627 h2, #stacks_in_627 h3, #stacks_in_627 h4, #stacks_in_627 h5, #stacks_in_627 h6, #stacks_in_627 p {
    font-family: '', sans-serif !important;
    font-stretch: normal !important;
    font-weight: bold !important;
    font-style: normal !important;
}
#stacks_in_627 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin: 10px 0px 0px 0px;
	padding: 5px 10px 5px 10px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_642 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_642 .theDivider1,
#simpleDivider_stacks_in_642 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_642 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_642.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_642.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_642 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_642.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_642.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_642.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_642.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_649 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_650 {
	line-height: 2em;
	word-spacing: 1px;
}



	#stacks_in_692 h6,#stacks_in_692 h6 a,#stacks_in_692 p,#stacks_in_692 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_692 h6,#stacks_in_692 h6 a,#stacks_in_692 p,#stacks_in_692 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_692 p a:hover, #stacks_in_692 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_692 {
	padding: 20px 0px 20px 0px;
}

#stacks_in_654 {
	line-height: 2em;
	word-spacing: 1px;
}



	#stacks_in_694 h6,#stacks_in_694 h6 a,#stacks_in_694 p,#stacks_in_694 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_694 h6,#stacks_in_694 h6 a,#stacks_in_694 p,#stacks_in_694 p a{
	color:rgba(44, 110, 254, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_694 p a:hover, #stacks_in_694 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_694 {
	padding: 20px 0px 20px 0px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_657 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_657 .theDivider1,
#simpleDivider_stacks_in_657 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_657 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_657.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_657.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_657 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_657.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_657.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_657.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_657.bgImageOn .theDivider1 img {
	display: block;
}




	#stacks_in_696 h6,#stacks_in_696 h6 a,#stacks_in_696 p,#stacks_in_696 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_696 h6,#stacks_in_696 h6 a,#stacks_in_696 p,#stacks_in_696 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_696 p a:hover, #stacks_in_696 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_696 {
	padding: 20px 0px 20px 0px;
}
/* @group Basics */

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

#switcherstacks_in_660 {
	display: none;
}

/* Reset for lists within Switcher */

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

/* @end */

/* @group Accordion */

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

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

/* Static accordion */

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

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

/* Hovered accordion */

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

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

/* Clicked accordion */

#accordionInterfacestacks_in_660 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(51, 204, 255, 1.00);
}

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

/* Active accordion */

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

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

/* @group Open and closed floating icons */

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

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

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

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

/* @end */

/* @end */

/* @group Tabs */

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

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

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

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



/* Static tabs */

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

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

/* Hovered Tabs */

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

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

/* Clicked tabs */

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

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

/* Active Tabs */

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

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

/* Hide accordion toggle headings */

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

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_660.tabbed-layout #accordionInterfacestacks_in_660 {
	display: none;
}

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

#switcherstacks_in_660.tabbed-layout #tabbedInterfacestacks_in_660 {
	display: block;
}

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

#switcherstacks_in_660.accordion-layout #tabbedInterfacestacks_in_660 {
	display: none;
}


/* Hide open / close accordion heading icons */

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

/* @end */

/* @group Content Panels */

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

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

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

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

/* @end */

/* @group Print style settings */

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

/* @end */

/* @group Advanced Settings */

/**/

/**/

/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_660 {
	padding: 20px 0px 30px 0px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_664 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_665 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_669 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_670 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_674 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_675 {
	word-spacing: 1px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */
#stacks_in_679 {
	padding: 20px 10px 20px 20px;
}

#stacks_in_680 {
	word-spacing: 1px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_682 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_682 .theDivider1,
#simpleDivider_stacks_in_682 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_682 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_682.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_682.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_682 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_682.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_682.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_682.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_682.bgImageOn .theDivider1 img {
	display: block;
}




	#stacks_in_698 h6,#stacks_in_698 h6 a,#stacks_in_698 p,#stacks_in_698 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_698 h6,#stacks_in_698 h6 a,#stacks_in_698 p,#stacks_in_698 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_698 p a:hover, #stacks_in_698 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_698 {
	padding: 20px 0px 20px 0px;
}

#stacks_in_685 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_686 {
	line-height: 2em;
	word-spacing: 1px;
}
#stacks_in_700>.s3_row {
	margin: 0 -0px;
}

#stacks_in_700>.s3_row>.s3_column_left {
	width: 58.27%;
}

#stacks_in_700>.s3_row>.s3_column_right {
	width: 41.730000%;
}




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










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



}



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



}






#stacks_in_700 {
	padding: 10px 0px 50px 0px;
}
/* Start dooImage Plus stack CSS code */#stacks_in_702{	-webkit-backface-visibility: hidden;  -webkit-transform: translate3d(0, 0, 0);}.stacks_in_702overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_702leftCol{	position: absolute;		width: 100%;	right: 0;	margin-left: -100%;		height: 100%;	top:0;	left: 0;		overflow: scroll;	transition: all 0.6s ease;}.stacks_in_702leftcolTable{	position: relative;	display: table;	table-layout: fixed;	width: 100%;	height: 100%;}.stacks_in_702leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_702leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_702posterWrapper{	text-align: center;	overflow: hidden;}.stacks_in_702rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;	display: none;}.stacks_in_702rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_702theX{	display: none;	position: absolute;	width: 24px;	height: 24px;	top: 20px;	right: 20px;	cursor: pointer;}	.stacks_in_702posterWrapper img {	    -webkit-transition: all .5s ease; /* Safari and Chrome */	    -moz-transition: all .5s ease; /* Firefox */	    -ms-transition: all .5s ease; /* IE 9 */	    -o-transition: all .5s ease; /* Opera */	    transition: all .5s ease;	}	.stacks_in_702posterWrapper img:hover{		-webkit-transform:scale(1.1); /* Safari and Chrome */	    -moz-transform:scale(1.1); /* Firefox */	    -ms-transform:scale(1.1); /* IE 9 */	    -o-transform:scale(1.1); /* Opera */	     transform:scale(1.1);	}.stacks_in_702posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_702posterWrapper img:hover{	cursor: pointer;}.stacks_in_702rightcolContentInner img{	max-width: 100%;	height: auto;}/* End dooImage Plus stack CSS code */
#stacks_in_702 {
	padding: 0px 50px 0px 0px;
}
/* -- Start Shady Each css Template -- */

#stacks_in_717,#stacks_in_717 * {
	overflow: visible !important;
}

#stacks_in_717 img{
	-webkit-filter: drop-shadow(5px 10px 10px rgba(0,0,0,0.5));
	max-width: 100%;
	height: auto;
	transform: translate3d(0,0,0);
}

.stacks_in_717_wrapper {
	box-sizing: border-box;
	padding: 10px;
	padding-right: 15px;
	padding-bottom: 20px;	
	max-width: calc(10000px - 15px);
	margin: 0 auto 0 auto;
}





/* -- End Shady Each css Template -- */



#stacks_in_724 h6,#stacks_in_724 h6 a,#stacks_in_724 p,#stacks_in_724 p a{
	color:rgba(15, 128, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_724 p a:hover, #stacks_in_724 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_724 {
	padding: 0px 20px 20px 0px;
}




#stacks_in_739 h6,#stacks_in_739 h6 a,#stacks_in_739 p,#stacks_in_739 p a{
	color:rgba(15, 128, 255, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:italic;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_739 p a:hover, #stacks_in_739 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_739 {
	padding: 0px 0px 20px 20px;
}

#stacks_in_727 {
	line-height: 2em;
	word-spacing: 1px;
}

#stacks_in_728 {
	padding: 0px 0px 0px 15px;
}

#stacks_in_729 {
	line-height: 2em;
	word-spacing: 1px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_743 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_743 .theDivider1,
#simpleDivider_stacks_in_743 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_743 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_743.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_743.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_743 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_743.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_743.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_743.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_743.bgImageOn .theDivider1 img {
	display: block;
}




	#stacks_in_741 h6,#stacks_in_741 h6 a,#stacks_in_741 p,#stacks_in_741 p a{
		font-size:20px;
		line-height:1.00em;
		margin:0;
	}
	


#stacks_in_741 h6,#stacks_in_741 h6 a,#stacks_in_741 p,#stacks_in_741 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_741 p a:hover, #stacks_in_741 h6 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_741 {
	padding: 30px 0px 30px 0px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_744 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_744 .theDivider1,
#simpleDivider_stacks_in_744 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_744 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_744.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_744.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_744 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_744.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_744.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_744.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_744.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_733 {
	line-height: 2em;
	word-spacing: 1px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_745 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_745 .theDivider1,
#simpleDivider_stacks_in_745 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_745 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_745.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #333333;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_745.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_745 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_745.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_745.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_745.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_745.bgImageOn .theDivider1 img {
	display: block;
}





#stacks_in_759 h4,#stacks_in_759 h4 a,#stacks_in_759 p,#stacks_in_759 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_759 p a:hover, #stacks_in_759 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_759 {
	padding: 50px 0px 0px 0px;
}

#stacks_in_761 {
	padding: 30px 0px 0px 0px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_748 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_748  a:link,
#cardlinkstacks_in_748  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_748 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_748 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_748 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}





#stacks_in_750 h4,#stacks_in_750 h4 a,#stacks_in_750 p,#stacks_in_750 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_750 p a:hover, #stacks_in_750 h4 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_750 {
	padding: 50px 15px 0px 15px;
}




#stacks_in_752 h3,#stacks_in_752 h3 a,#stacks_in_752 p,#stacks_in_752 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_752 p a:hover, #stacks_in_752 h3 a:hover{
	color:rgba(204, 204, 204, 1.00);
}









#stacks_in_752 {
	padding: 30px 0px 50px 0px;
}
/* -- Start Shady Each css Template -- */

#stacks_in_765,#stacks_in_765 * {
	overflow: visible !important;
}

#stacks_in_765 img{
	-webkit-filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.5));
	max-width: 100%;
	height: auto;
	transform: translate3d(0,0,0);
}

.stacks_in_765_wrapper {
	box-sizing: border-box;
	padding: 10px;
	padding-right: 10px;
	padding-bottom: 20px;	
	max-width: calc(10000px - 10px);
	margin: 0 auto 0 auto;
}





/* -- End Shady Each css Template -- */
#stacks_in_765 {
	padding: 20px 20px 20px 20px;
}

#stacks_in_279 {
	padding: 0px 20px 0px 20px;
}
#stacks_in_279_24>.s3_row {
	margin: 0 -10px;
}

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

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

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

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








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



}



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


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


}




#stacks_in_279_24 {
	background-color: rgba(135, 135, 135, 1.00);
	border: solid rgba(0, 0, 0, 1.00);
	border-width: 5px 0px 0px 0px;
	padding: 30px 0px 30px 0px;
}




#stacks_in_279_20 h5,#stacks_in_279_20 h5 a,#stacks_in_279_20 p,#stacks_in_279_20 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	font-variant:small-caps;

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_279_20 p a:hover, #stacks_in_279_20 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_279_36 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_279_36 .theDivider1,
#simpleDivider_stacks_in_279_36 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_279_36 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_279_36.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_279_36.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_36 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_279_36.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_279_36.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_279_36.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_36.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_279_36 {
	padding: 0px 40px 0px 40px;
}
/* CustomFont 3.0.6 */

@font-face {
    font-family: '';
        src: url('../resources/fonts/.eot'); /* IE9 Compat Modes */
    src: local('')
           , url('../resources/fonts/.eot?#iefix') format('embedded-opentype') /* IE6-IE8 */
        
          , url('../resources/fonts/.woff') format('woff') /* Modern Browsers */
           , url('../resources/fonts/.ttf') format('truetype') /* Safari, Android, iOS */
           , url('../resources/fonts/.svg#') format('svg') /* Legacy iOS */
        
        ;
    font-stretch: normal;
    font-weight: 100;
    font-style: normal;
}

#stacks_in_279_9, #stacks_in_279_9 h1, #stacks_in_279_9 h2, #stacks_in_279_9 h3, #stacks_in_279_9 h4, #stacks_in_279_9 h5, #stacks_in_279_9 h6, #stacks_in_279_9 p {
    font-family: '', sans-serif !important;
    font-stretch: normal !important;
    font-weight: 100 !important;
    font-style: normal !important;
}
#stacks_in_279_8 {
	line-height: 2em;
}




#stacks_in_279_22 h5,#stacks_in_279_22 h5 a,#stacks_in_279_22 p,#stacks_in_279_22 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	font-variant:small-caps;

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_279_22 p a:hover, #stacks_in_279_22 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_279_37 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_279_37 .theDivider1,
#simpleDivider_stacks_in_279_37 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_279_37 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_279_37.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_279_37.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_37 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_279_37.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_279_37.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_279_37.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_37.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_279_37 {
	padding: 0px 40px 0px 40px;
}
/* CustomFont 3.0.6 */

@font-face {
    font-family: '';
        src: url('../resources/fonts/.eot'); /* IE9 Compat Modes */
    src: local('')
           , url('../resources/fonts/.eot?#iefix') format('embedded-opentype') /* IE6-IE8 */
        
          , url('../resources/fonts/.woff') format('woff') /* Modern Browsers */
           , url('../resources/fonts/.ttf') format('truetype') /* Safari, Android, iOS */
           , url('../resources/fonts/.svg#') format('svg') /* Legacy iOS */
        
        ;
    font-stretch: normal;
    font-weight: normal;
    font-style: normal;
}

#stacks_in_279_14, #stacks_in_279_14 h1, #stacks_in_279_14 h2, #stacks_in_279_14 h3, #stacks_in_279_14 h4, #stacks_in_279_14 h5, #stacks_in_279_14 h6, #stacks_in_279_14 p {
    font-family: '', sans-serif !important;
    font-stretch: normal !important;
    font-weight: normal !important;
    font-style: normal !important;
}
#stacks_in_279_13 {
	line-height: 2em;
}




#stacks_in_279_28 h5,#stacks_in_279_28 h5 a,#stacks_in_279_28 p,#stacks_in_279_28 p a{
	color:rgba(0, 0, 0, 1.00);
	-webkit-font-smoothing: antialiased;
	transition:  color 0.2s ease-in-out;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	font-weight: bold ;
	
	
	
	font-variant:small-caps;

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

}

#stacks_in_279_28 p a:hover, #stacks_in_279_28 h5 a:hover{
	color:rgba(204, 204, 204, 1.00);
}








/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_279_38 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_279_38 .theDivider1,
#simpleDivider_stacks_in_279_38 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_279_38 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_279_38.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_279_38.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_38 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_279_38.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_279_38.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_279_38.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_279_38.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_279_38 {
	padding: 0px 40px 0px 40px;
}
/* CustomFont 3.0.6 */

@font-face {
    font-family: '';
        src: url('../resources/fonts/.eot'); /* IE9 Compat Modes */
    src: local('')
           , url('../resources/fonts/.eot?#iefix') format('embedded-opentype') /* IE6-IE8 */
        
          , url('../resources/fonts/.woff') format('woff') /* Modern Browsers */
           , url('../resources/fonts/.ttf') format('truetype') /* Safari, Android, iOS */
           , url('../resources/fonts/.svg#') format('svg') /* Legacy iOS */
        
        ;
    font-stretch: normal;
    font-weight: normal;
    font-style: normal;
}

#stacks_in_279_32, #stacks_in_279_32 h1, #stacks_in_279_32 h2, #stacks_in_279_32 h3, #stacks_in_279_32 h4, #stacks_in_279_32 h5, #stacks_in_279_32 h6, #stacks_in_279_32 p {
    font-family: '', sans-serif !important;
    font-stretch: normal !important;
    font-weight: normal !important;
    font-style: normal !important;
}