<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#page_wrapper {
	width: 50%;
	margin: 0 auto;
	text-align: center;
	min-height: 600px;
}

#title {
	font-size: 2em;
	margin-top: 100px;
	margin-bottom: 40px;
}

/* PAGE CONTENT **/

.page_content {
	width: 100%;
	padding-bottom: 80px;
	background-color: var(--background-color);

	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main_content {
	width: 60%;
	text-align: left;
}

.sidebar {
	width: 35%;
	text-align: left;
}

/* MAIN CONTENT */

#question {
	font-weight: 500;
	margin-bottom: 25px;
	font-size: 1.125em;

	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}


#answer {

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#answer ul li, #answer ol li {
	font-size: 1.0em;
}

.readmore {
	background-color: #fff0b2;
	margin: 30px 0;
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid;
	border-color: #f0d500;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.readmore img {
	height: 48px;
	width: 48px;
	min-height: 48px;
	min-width: 48px;
	margin-right: 15px;
}

.readmore a {
	text-decoration: none;
	color: #665a29;
}

.readmore a:hover {
	color: dodgerblue;
}

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

.promo_signup ul {
	padding-left: 0;
}

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

.promo_image {
	margin: 30px 0 40px 0;
	width: 100%;
}

.promo_image img {
	width: 100%;
}

.btn_promo_convert_wrapper {
	text-align: center;
}

.btn_promo_convert {
	display: inline-block;
	font-weight: 500;
	font-size: 1.125em;
	padding: 0.75em;
	margin: 0 auto 0 auto;
	border-radius: 10px;
	cursor: pointer;
	color: var(--text-inverse);
	border: none;
	width: 100%;

	background: #1b99e6; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#1da1f2, #1b99e6); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#1da1f2, #1b99e6); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#1da1f2, #1b99e6); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#1da1f2, #1b99e6); /* Standard syntax */
	
}

.btn_promo_convert:hover {

	background: #1069bc; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#1da1f2, #1069bc); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#1da1f2, #1069bc); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#1da1f2, #1069bc); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#1da1f2, #1069bc); /* Standard syntax */
	
}

/* 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: var(--text-lighter);
}

.promo_site_link a:hover,
body.night_mode .promo_site_link a:hover {
	color: dodgerblue;
}

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

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

/* SIDEBAR */

.more_questions {

	background-color: var(--background-whitesmoke);
 	border-radius: 10px;
 	border: 1px solid silver;
 	padding: 10px;
}

.more_questions a {
	display: block;
	text-decoration: none;
	color: #666666;
	margin: 10px;
}

body.night_mode .more_questions a {
	color: var(--text-lighter);
}

.more_questions a:hover,
body.night_mode .more_questions a:hover {
	color: dodgerblue;
}

#related_questions h3 {
	margin-top: 0;
}

/* END PAGE CONTENT */

#description {
}

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

	MEDIA QUERIES

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

	#page_wrapper {
		width: 55%;
	}

}

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

	#page_wrapper {
		width: 65%;
	}

}

/* 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%;
	}

	.btn_promo_convert {
		font-size: 1.125em;
		width: 100%;

	}

}

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

	#page_wrapper {
		width: 90%;
	}

	.main_content {
		width: 100%;
	}

	.sidebar {
		width: 100%;
	}

	#title {
		margin-top: 80px;
		margin-bottom: 25px;
	}

	.readmore img {
		height: 36px;
		width: 36px;
		min-height: 36px;
		min-width: 36px;
		margin-right: 10px;
	}

	.btn_promo_convert {

		width: 100%;
		margin-bottom: 20px;
		
	}

	.promo_site_title {
		margin-top: 30px;
	}

	#related_questions h3 {
		margin-top: 30px;
	}

}

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

}

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

	END MEDIA QUERIES

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