<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*MAIN */

#page_wrapper {
	width: 50%;
	margin: 0 auto;
	padding: 80px 0 100px 0;
}

.heading {
	text-align: left;
	margin: 0 0 30px 0;
}

/*END MAIN*/

/*TOP: TITLE, DESCRIPTION*/

#top {
	text-align: center;
}

#description {
	color: grey;
	margin-bottom: 30px;
}

/*END TOP: TITLE, DESCRIPTION*/

/* SEARCH */
.search_container {

	width: 75%;
	position: relative;

	display: -webkit-box;  
	display: -ms-flexbox;  
	display: flex;  
	-webkit-box-align: center;  
	-ms-flex-align: center;  
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	margin: 0 auto 30px auto;
}

.search_container form {
	position: relative;
	width: 100%;
}

#autocomplete {

	height: 50px;
	width: 100%;
	position: relative;
	background-color: var(--background-color);
	border-radius: 10px;
	padding-left:50px;
	outline: none;
	border: 1px solid silver;
}

#autocomplete:focus {
	outline: none;
    border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

body.night_mode #autocomplete {
	color: var(--text-default);
}

#search_icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	width: 20px;
	height: 20px;
}

#reset_search {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	display: none;
}

/* Search button */
#search_button {

	position: relative;
	width: 60px;
	height: 50px;

	display: -webkit-box;  
	display: -ms-flexbox;  
	display: flex;  
	-webkit-box-align: center;  
	-ms-flex-align: center;  
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	font-size: 1.0em;
	color: var(--text-inverse);
	font-weight: 500;
	padding: 5px 10px;
	margin-left: 10px;

	border-radius: 5px;
	outline: none;

	border: 1px solid #1181c6;

	/* fallback */
	background-color: #1da1f2;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1b99e6), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1b99e6);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1b99e6);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1b99e6);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1b99e6);
}

#search_button:hover {
	
	border: 1px solid #1181c6;
	
	/* fallback */
	background-color: #1069bc;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1069bc), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1069bc);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1069bc);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1069bc);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1069bc);

}


/* END SEARCH */

/*GOOGLE MAP*/

#map_container {
	position: relative;
	width: 100%;
	height: 400px;

}

#map {
	position: relative;
	width: 100%;
	height: 100%;

}

#map_school_info {
	position: absolute;
	top: 60px;
	left: 10px;
	width: 25%;
	height: 100px;
	background: rgba(255,255,255,0.6);
	color: var(--text-default);
}

/*END GOOGLE MAP*/

/*BOTTOM*/
#bottom {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

#bottom_left {
	width: 60%;
	margin-right: 5%;
}

#bottom_right {
	width: 35%;
}

/*BOTTOM LEFT: RESULTS AND MEMBER PROMO*/

.result_item {

	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;

	margin-bottom: 20px;
	border: 1px solid silver;
	border-radius: 10px;
	padding: 15px 10px;
	font-size: 0.875em;
}

.result_item_left {

	width: 50%;
	text-align: left;
}

.result_item_right {

	width: 50%;
	text-align: right;
	padding-top: 23px;
}

.result_item_name {
	font-weight: 500;
	margin-bottom: 8px;
}

.result_item_small {
	line-height: 1.4em;
}

.result_item_phone {

}

.result_item_website {
	overflow-wrap: break-word;
}

.result_item_website a {
	text-decoration: none;
	color: #686868;
}

.result_item_website a:hover {
	color: dodgerblue;
}

/*RESULTS CONTROLLER (CONTROLS AND SHOWS INFO ABOUT WHICH RESULTS ARE SHOWING)*/

.results_controller {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

#results_controller_info {
	margin-bottom: 10px;
}

.results_control_box {

	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	cursor:default;

	width: 35px;
	height: 35px;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.box_active {
	background: #4eff4e;
}

.box_inactive {
	background: #fafafa;
}

.box_inactive:hover {
	background: #ebebeb;
}

body.night_mode .box_inactive,
body.night_mode .box_active {
	color: black;
}

.results_control_box_spacer {

	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	width: 35px;
	height: 45px;
}

/* Search button */
#control_box_next {

	position: relative;
	width: 80px;
	height: 35px;

	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	cursor: default;

	font-size: 1.0em;
	color: white;
	padding: 5px 10px;
	margin-left: 10px;

	border-radius: 5px;
	outline: none;

	border: 1px solid #1181c6;

	/* fallback */
	background-color: #1da1f2;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1b99e6), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1b99e6);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1b99e6);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1b99e6);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1b99e6);
}

#control_box_next:hover {
	
	border: 1px solid #1181c6;
	
	/* fallback */
	background-color: #1069bc;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1069bc), to(#1da1f2));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #1da1f2, #1069bc);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #1da1f2, #1069bc);

	/* IE 10 */
	background: -ms-linear-gradient(top, #1da1f2, #1069bc);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #1da1f2, #1069bc);

}


/*END RESULTS CONTROLLER*/

/* PROMO - SIGNUP */
.promo_signup {
	width: 100%;
	margin-top: 30px;
	border-top: 1px solid black;
	text-align: left;
}

.promo_signup ul {
	padding-left: 0;
}

.promo_signup li {
	list-style-position:inside;
	font-weight: 500;
}

.devices_image {
	margin: 20px 0;
	width: 100%;
}

.devices_image img {
	width: 100%;
}

#btn_promo_signup {

	display: block;
	font-weight: bold;
	padding: 20px;
	margin-top: 30px;
	text-align: center;
	border-radius: 10px;
	border: 2px solid #33cc33;
	cursor: pointer;
	text-decoration: none;
	color: var(--text-default);

	/* fallback */
	background-color: #66ff66;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33ff33), to(#66ff66));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #66ff66, #33ff33);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #66ff66, #33ff33);

	/* IE 10 */
	background: -ms-linear-gradient(top, #66ff66, #33ff33);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #66ff66, #33ff33);
	
}

#btn_promo_signup:hover {

	border: 2px solid #339933;

	/* fallback */
	background-color: #33cc33;

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33cc33), to(#66ff66));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #66ff66, #33cc33);

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #66ff66, #33cc33);

	/* IE 10 */
	background: -ms-linear-gradient(top, #66ff66, #33cc33);

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #66ff66, #33cc33);
	
}

/*END BOTTOM LEFT: RESULTS AND MEMBER PROMO*/

/* BOTTOM RIGHT: SITE PROMO */

/* PROMO - SITE */
.promo_site {
	width: 100%;
}

.promo_site_title {
	margin-top: 30px;
}

.promo_site_link {
	width: 100%;
	margin-bottom: 20px;
}

.promo_site_link a {
	text-decoration: none;
	color: #666666;
}

body.night_mode .promo_site_link a {
	color: #ccc;
}

.promo_site_link a:hover {
	color: dodgerblue;
}

.promo_site_link a img {
	width: 100%;
	margin-bottom: 5px;
}

.promo_site_link a div {
	text-align: left;
}

.promo_site_link:hover a img {
	-webkit-filter: brightness(90%); /* Safari 6.0 - 9.0 */
    filter: brightness(90%);
}

/* ENE BOTTOM RIGHT: SITE PROMO */

/*END BOTTOM*/

/********************

	MEDIA QUERIES

*********************/
 /* Larger Devices, Wide Screens */
@media only screen and (max-width : 1450px) {

	#page_wrapper {
		width: 60%;
	}

}

 /* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

	#page_wrapper {
		width: 70%;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

	#page_wrapper {
		width: 80%;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

	#page_wrapper {
		width: 90%;
	}

	.search_container {
		width: 90%;
	}

	#bottom_left, #bottom_right {
		width: 100%;
		margin: 0;
	}

	#bottom_right {
		margin-top: 40px;
	}

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

	#page_wrapper {
		width: 95%;
		padding: 70px 0 70px 0;
	}

	.search_container {
		width: 100%;
	}

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

/********************

	END MEDIA QUERIES

*********************/</pre></body></html>