<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.banner {
	position: relative;
	width: 100%;
	overflow: auto;

	font-size: 1em;
	line-height: 1.5em;
	text-align: center;

	color: #fff;
	/*text-shadow: 0 0 1px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.3);*/

	background: #ffffff;
/*shadow at the bottom of the sliding banner 
	box-shadow: 0 1px 2px rgba(0,0,0,.25);*/
	}
	
.banner ul {
	list-style: none;
	width: 300%;
	margin: 0;
	padding: 0;
	}

.banner ul li {
	display: block;
	float: left;
	width: 33%;
	min-height: 320px;

	
	background: no-repeat left center; background-size: cover;
	/*-o-background-size: 100% 100%;
	-ms-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	background-size: cover 100%; */

/*shadow at the top of the sliding banner
	box-shadow: inset 0 -3px 6px rgba(0,0,0,.1);
*/ 	}

/*padding w/in banner image for text/message content - set to 350px */
.banner .inner { /*align message middle*/
	padding: 175px 0 175px;
	}

.banner .inner2 { /*align message top*/
	padding: 0px 0px 0px;
	}
	
.banner .inner3 {/*align message bottom*/
	padding:250px 0px 0px;
	}

.swap-message{ /*dark blue swap message container*/
	/*background-color:rgba(0,66,128,0.87);*/
    width:33%;
	padding:50px 20px 20px 20px;
	float:right;
	min-height: 320px;
	}

.banner h1, .banner h2 {
	visibility: hidden;
	font-size: 2em;
	line-height: normal;
	color: #fff;
	}

.banner p{
	margin-top:10px;
	font-size: 1.15em;
	line-height: 1.5em;
	color: #fff;
	}

 @media only screen and (min-width: 280px) and (max-width: 759px) {

.swap-message{
	width:90%;
	/*background-color:rgba(0,66,128,0.67);*/
	
	margin-left: 10%;
	min-height: 100px;
	}

.banner h1, .banner h2 { 
	visibility: visible;
	font-size: 3rem; 
	line-height: 1.25; 
	letter-spacing: -.1rem; 
	color: #fff;
	text-align: center;
	margin-top:90px;
	/*background-color:rgba(0,66,128,0.87);*/
	display:block;
	padding:10px 10px 10px 20px;
	}

.banner p{
	margin-top:10px;
	margin-left:55px; 
	margin-right:35px;

}

.banner ul li {
	display: block;
	float: center;
	width: 33%;
	min-height: 320px;
	
	background: no-repeat top right; background-size: cover;
}

}
/* banner links */

.banner a:link {text-decoration:none; color:#fff;}
.banner a:visited {text-decoration:none; color:#fff;}
.banner a:hover {text-decoration:underline; color:#DFF9FC;}


/*buttons w/in banner text */
.banner .btn {
	display: inline-block;
	margin: 25px 0 0;
	padding: 9px 22px 7px;
	clear: both;
	color:fff;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid #ffffff;
	border-radius: 5px;
	}
.banner .btn:hover {
	background: rgba(255,255,255,0.84);
	color:#004280;
	text-decoration:none;
	}
.banner .btn:active {
	-webkit-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
	-moz-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
	-ms-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
	-o-filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
	filter: drop-shadow(0 -1px 2px rgba(0,0,0,.5));
	}

.banner .btn, .banner .dot {
	-webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	-o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
	}

/*Selection dots */

.banner .dots {
		position: absolute;
		left: 67%;
		right: 0;
		width: 33%; 		
		bottom: -20px; /*move dots to the very bottom */
		
		/*background-color:#fff; /*make button background white*/
		
	}
.banner .dots li {
	display: inline-block;
	
	
  *display: inline;
	zoom: 1;
	width: 8px;
	height: 8px;
	line-height: 10px;
	margin: 0px 6px;
	text-indent: -999em;
  *text-indent: 0;
	background-color: #fff; /*make dot centers white*/
	border: 2px solid #fff; /*make dot borders white*/
	border-radius: 6px;
	cursor: pointer;
	opacity: .9;
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
	}

.banner .dots li.active {
	background: #6dcff6; /*make active dot solid light blue*/
	border: 2px solid #6dcff6; /*make dot border solid light blue*/
	opacity: 1;
	}

/*mobile dots */
@media only screen and (min-width: 280px) and (max-width: 759px) {
.banner .dots {
		position: absolute;
		left: 5%;
	    width: 80%;
}
/*direction arrows */
.banner .arrows {
	position: absolute;
	bottom: 20px;
	right: 20px;
	color: #fff;
	}
.banner .arrow {
	display: inline;
	padding-left: 10px;
	cursor: pointer;
	}
}</pre></body></html>