.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_359 .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_361 .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_363 .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_365 .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_367 .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_115{visibility:hidden}
/* -- Start Skyward Each css Template -- */

.stacks_in_135skyward, .stacks_in_135skywardInner, .stacks_in_135wrapper {
	position: relative;
	z-index: 1;
	overflow: visible;
}


.stacks_in_135skywardInner {
	top: -125px;
	margin-bottom: -125px;
}
	
		@media (max-width: 61.9em) {
			.stacks_in_135skywardInner {
				top: -30px;
				margin-bottom: -30px;
			}
		}
		
		@media (max-width: 47.9em) {
			.stacks_in_135skywardInner {
				top: -10px;
				margin-bottom: -10px;
			}
		}
	





.skywardClearing:after{
	content: "";
    display: table;
    clear: both;
}


/* -- End Skyward Each css Template -- */#stacks_in_125 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_125 .jwresp_col{float:none} #stacks_in_125 #jwresp_col2_stacks_in_125{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_125 #jwresp_col1_stacks_in_125,#stacks_in_125 #jwresp_col3_stacks_in_125{width:9%}#stacks_in_125 #jwresp_col1_stacks_in_125{float:left}#stacks_in_125 #jwresp_col3_stacks_in_125{float:right} @media screen and (max-width:770px){#stacks_in_125 #jwresp_col1_stacks_in_125,#stacks_in_125 #jwresp_col3_stacks_in_125{margin-bottom:20px}#stacks_in_125 #jwresp_col1_stacks_in_125{width:49%}#stacks_in_125 #jwresp_col3_stacks_in_125{width:49%}#stacks_in_125 #jwresp_col2_stacks_in_125{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_125 #jwresp_col1_stacks_in_125,#stacks_in_125 #jwresp_col3_stacks_in_125,#stacks_in_125 #jwresp_col2_stacks_in_125{float:none;width:100%;display:block}#stacks_in_125 #jwresp_col1_stacks_in_125,#stacks_in_125 #jwresp_col3_stacks_in_125{margin-bottom:20px}} 
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_79Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_79Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_79Calligrapher h6, .stacks_in_79Calligrapher h5, .stacks_in_79Calligrapher h4, .stacks_in_79Calligrapher h3, .stacks_in_79Calligrapher h2, .stacks_in_79Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_79Calligrapher, .stacks_in_79Calligrapher h1, .stacks_in_79Calligrapher h2, .stacks_in_79Calligrapher h3, .stacks_in_79Calligrapher h4, .stacks_in_79Calligrapher h5, .stacks_in_79Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_79targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_79Calligrapher a:link{			color: #B6993C !important;			text-decoration: none !important;		}				.stacks_in_79Calligrapher a:visited{			color: #B6993C !important;		}				.stacks_in_79Calligrapher a:active{			color: #B6993C !important;		}				.stacks_in_79Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_80 {
	margin: 0px 20px 20px 20px;
	padding:  20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_123Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_123Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_123Calligrapher h6, .stacks_in_123Calligrapher h5, .stacks_in_123Calligrapher h4, .stacks_in_123Calligrapher h3, .stacks_in_123Calligrapher h2, .stacks_in_123Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_123Calligrapher, .stacks_in_123Calligrapher h1, .stacks_in_123Calligrapher h2, .stacks_in_123Calligrapher h3, .stacks_in_123Calligrapher h4, .stacks_in_123Calligrapher h5, .stacks_in_123Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_123targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_123Calligrapher a:link{			color: #B6993C !important;			text-decoration: none !important;		}				.stacks_in_123Calligrapher a:visited{			color: #B6993C !important;		}				.stacks_in_123Calligrapher a:active{			color: #B6993C !important;		}				.stacks_in_123Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_121 {
	margin: 0px 20px 0px 20px;
}

#stacks_in_122 {
	line-height: 2em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_380shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#titlelogo h1, #tsbanner h1{			font-size: 181% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ #titlelogo h1, #tsbanner h1{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_371targetNote{	display: none;}.stacks_in_371Calligrapher{	display: none;}.stacks_in_371targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_371Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_371Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_371Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_371Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		nav{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: right !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ nav{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_373targetNote{	display: none;}.stacks_in_373Calligrapher{	display: none;}.stacks_in_373targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_373Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_373Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_373Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_373Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#footer{			font-size: 96% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */  #footer{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_375targetNote{	display: none;}.stacks_in_375Calligrapher{	display: none;}.stacks_in_375targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_375Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_375Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_375Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_375Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#rapidweaver_privacy_message{			font-size: 80% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */  #rapidweaver_privacy_message{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_377targetNote{	display: none;}.stacks_in_377Calligrapher{	display: none;}.stacks_in_377targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_377Calligrapher a:link{			color: #FC6FCF !important;			text-decoration: none !important;		}				.stacks_in_377Calligrapher a:visited{			color: #FC6FCF !important;		}				.stacks_in_377Calligrapher a:active{			color: #FC6FCF !important;		}				.stacks_in_377Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */