@font-face {
	font-family: 'Merriweather';
	font-display: swap;
	src: url('https://www.languageisavirus.com/assets/fonts/Merriweather-Regular.otf'),
	url('https://www.languageisavirus.com/assets/fonts/Merriweather-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Merriweather';
	font-display: swap;
	src: url('https://www.languageisavirus.com/assets/fonts/Merriweather-Bold.otf'),
	url('https://www.languageisavirus.com/assets/fonts/Merriweather-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: bold;
}

@font-face {
	font-family: 'Merriweather';
	font-display: swap;
	src: url('https://www.languageisavirus.com/assets/fonts/Merriweather-Italic.otf'),
	url('https://www.languageisavirus.com/assets/fonts/Merriweather-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Merriweather';
	font-display: swap;
	src: url('https://www.languageisavirus.com/assets/fonts/Merriweather-BoldItalic.otf'),
	url('https://www.languageisavirus.com/assets/fonts/Merriweather-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}

/*
	Halcyonic by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #D4D9DD url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg03.jpg");
	color: #000;
	font-size: 13.5pt;
	font-family: 'Merriweather', serif!important;
	line-height: 1.85em;
	font-weight: 300;
}

html,
body {
	scroll-behavior: smooth;
}

input, textarea, select {
	color: #474f51;
	font-size: 13.5pt;
	font-family: 'Merriweather', serif!important;
	line-height: 1.85em;
	font-weight: 300;
}

textarea {
	height: 100%!important;
	width: 100%!important;
	min-height: 300px;
}

input[type=text], textarea, select {
	border: 1px solid #999;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0;
	padding: 5px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(6%, #eee), to(#fff));
	background: -moz-linear-gradient(top, #fff, #eee 2px, #fff 25px);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
}
input[type=text]:hover, textarea:hover, select:hover, input[type=text]:focus, textarea:focus, select:focus {
	border-color: #333;
	background: #fff;
}


	ul, ol, p, dl {
		margin: 0 0 2em 0;
	}

	a {
		text-decoration: underline;
	}

		a:hover {
			text-decoration: none;
		}

	section > :last-child,
	section:last-child,
	.last-child {
		margin-bottom: 0 !important;
	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1200px;
	}

		@media screen and (max-width: 1680px) {

			.container {
				width: 1200px;
			}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: calc(100% - 40px);
			}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: calc(100% - 50px);
			}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: calc(100% - 40px);
			}

		}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0px;
			margin-left: 0px;
		}

			.row.gtr-0 > * {
				padding: 0px 0 0 0px;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0px;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0px;
				}

		.row.gtr-25 {
			margin-top: -6.25px;
			margin-left: -6.25px;
		}

			.row.gtr-25 > * {
				padding: 6.25px 0 0 6.25px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -6.25px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 6.25px;
				}

		.row.gtr-50 {
			margin-top: -12.5px;
			margin-left: -12.5px;
		}

			.row.gtr-50 > * {
				padding: 12.5px 0 0 12.5px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -12.5px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 12.5px;
				}

		.row {
			margin-top: -25px;
			margin-left: -25px;
		}

			.row > * {
				padding: 25px 0 0 25px;
			}

			.row.gtr-uniform {
				margin-top: -25px;
			}

				.row.gtr-uniform > * {
					padding-top: 25px;
				}

		.row.gtr-150 {
			margin-top: -37.5px;
			margin-left: -37.5px;
		}

			.row.gtr-150 > * {
				padding: 37.5px 0 0 37.5px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -37.5px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 37.5px;
				}

		.row.gtr-200 {
			margin-top: -50px;
			margin-left: -50px;
		}

			.row.gtr-200 > * {
				padding: 50px 0 0 50px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -50px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 50px;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xlarge {
					order: -1;
				}

				.row > .col-1-xlarge {
					width: 8.33333%;
				}

				.row > .off-1-xlarge {
					margin-left: 8.33333%;
				}

				.row > .col-2-xlarge {
					width: 16.66667%;
				}

				.row > .off-2-xlarge {
					margin-left: 16.66667%;
				}

				.row > .col-3-xlarge {
					width: 25%;
				}

				.row > .off-3-xlarge {
					margin-left: 25%;
				}

				.row > .col-4-xlarge {
					width: 33.33333%;
				}

				.row > .off-4-xlarge {
					margin-left: 33.33333%;
				}

				.row > .col-5-xlarge {
					width: 41.66667%;
				}

				.row > .off-5-xlarge {
					margin-left: 41.66667%;
				}

				.row > .col-6-xlarge {
					width: 50%;
				}

				.row > .off-6-xlarge {
					margin-left: 50%;
				}

				.row > .col-7-xlarge {
					width: 58.33333%;
				}

				.row > .off-7-xlarge {
					margin-left: 58.33333%;
				}

				.row > .col-8-xlarge {
					width: 66.66667%;
				}

				.row > .off-8-xlarge {
					margin-left: 66.66667%;
				}

				.row > .col-9-xlarge {
					width: 75%;
				}

				.row > .off-9-xlarge {
					margin-left: 75%;
				}

				.row > .col-10-xlarge {
					width: 83.33333%;
				}

				.row > .off-10-xlarge {
					margin-left: 83.33333%;
				}

				.row > .col-11-xlarge {
					width: 91.66667%;
				}

				.row > .off-11-xlarge {
					margin-left: 91.66667%;
				}

				.row > .col-12-xlarge {
					width: 100%;
				}

				.row > .off-12-xlarge {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-uniform > * {
							padding-top: 25px;
						}

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-large {
					order: -1;
				}

				.row > .col-1-large {
					width: 8.33333%;
				}

				.row > .off-1-large {
					margin-left: 8.33333%;
				}

				.row > .col-2-large {
					width: 16.66667%;
				}

				.row > .off-2-large {
					margin-left: 16.66667%;
				}

				.row > .col-3-large {
					width: 25%;
				}

				.row > .off-3-large {
					margin-left: 25%;
				}

				.row > .col-4-large {
					width: 33.33333%;
				}

				.row > .off-4-large {
					margin-left: 33.33333%;
				}

				.row > .col-5-large {
					width: 41.66667%;
				}

				.row > .off-5-large {
					margin-left: 41.66667%;
				}

				.row > .col-6-large {
					width: 50%;
				}

				.row > .off-6-large {
					margin-left: 50%;
				}

				.row > .col-7-large {
					width: 58.33333%;
				}

				.row > .off-7-large {
					margin-left: 58.33333%;
				}

				.row > .col-8-large {
					width: 66.66667%;
				}

				.row > .off-8-large {
					margin-left: 66.66667%;
				}

				.row > .col-9-large {
					width: 75%;
				}

				.row > .off-9-large {
					margin-left: 75%;
				}

				.row > .col-10-large {
					width: 83.33333%;
				}

				.row > .off-10-large {
					margin-left: 83.33333%;
				}

				.row > .col-11-large {
					width: 91.66667%;
				}

				.row > .off-11-large {
					margin-left: 91.66667%;
				}

				.row > .col-12-large {
					width: 100%;
				}

				.row > .off-12-large {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -5px;
					margin-left: -5px;
				}

					.row.gtr-25 > * {
						padding: 5px 0 0 5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 5px;
						}

				.row.gtr-50 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-50 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 10px;
						}

				.row {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-uniform > * {
							padding-top: 20px;
						}

				.row.gtr-150 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-150 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-200 {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row.gtr-200 > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 40px;
						}

		}

		@media screen and (max-width: 1007px) {
			.sidenav .fa, .sidenav .downbtn {display: none;}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-medium {
					order: -1;
				}

				.row > .col-1-medium {
					width: 8.33333%;
				}

				.row > .off-1-medium {
					margin-left: 8.33333%;
				}

				.row > .col-2-medium {
					width: 16.66667%;
				}

				.row > .off-2-medium {
					margin-left: 16.66667%;
				}

				.row > .col-3-medium {
					width: 25%;
				}

				.row > .off-3-medium {
					margin-left: 25%;
				}

				.row > .col-4-medium {
					width: 33.33333%;
				}

				.row > .off-4-medium {
					margin-left: 33.33333%;
				}

				.row > .col-5-medium {
					width: 41.66667%;
				}

				.row > .off-5-medium {
					margin-left: 41.66667%;
				}

				.row > .col-6-medium {
					width: 50%;
				}

				.row > .off-6-medium {
					margin-left: 50%;
				}

				.row > .col-7-medium {
					width: 58.33333%;
				}

				.row > .off-7-medium {
					margin-left: 58.33333%;
				}

				.row > .col-8-medium {
					width: 66.66667%;
				}

				.row > .off-8-medium {
					margin-left: 66.66667%;
				}

				.row > .col-9-medium {
					width: 75%;
				}

				.row > .off-9-medium {
					margin-left: 75%;
				}

				.row > .col-10-medium {
					width: 83.33333%;
				}

				.row > .off-10-medium {
					margin-left: 83.33333%;
				}

				.row > .col-11-medium {
					width: 91.66667%;
				}

				.row > .off-11-medium {
					margin-left: 91.66667%;
				}

				.row > .col-12-medium {
					width: 100%;
				}

				.row > .off-12-medium {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

					.row.gtr-uniform {
						margin-top: -25px;
					}

						.row.gtr-uniform > * {
							padding-top: 25px;
						}

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@media screen and (max-width: 930px) {
			.sidenav {
				padding: 25px 0 0 5px;
			}
			.sidenav .sidebar-links {
				padding: 10px!important;
			}
			html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
				/*font-size: 98%;*/
			}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-small {
					order: -1;
				}

				.row > .col-1-small {
					width: 8.33333%;
				}

				.row > .off-1-small {
					margin-left: 8.33333%;
				}

				.row > .col-2-small {
					width: 16.66667%;
				}

				.row > .off-2-small {
					margin-left: 16.66667%;
				}

				.row > .col-3-small {
					width: 25%;
				}

				.row > .off-3-small {
					margin-left: 25%;
				}

				.row > .col-4-small {
					width: 33.33333%;
				}

				.row > .off-4-small {
					margin-left: 33.33333%;
				}

				.row > .col-5-small {
					width: 41.66667%;
				}

				.row > .off-5-small {
					margin-left: 41.66667%;
				}

				.row > .col-6-small {
					width: 50%;
				}

				.row > .off-6-small {
					margin-left: 50%;
				}

				.row > .col-7-small {
					width: 58.33333%;
				}

				.row > .off-7-small {
					margin-left: 58.33333%;
				}

				.row > .col-8-small {
					width: 66.66667%;
				}

				.row > .off-8-small {
					margin-left: 66.66667%;
				}

				.row > .col-9-small {
					width: 75%;
				}

				.row > .off-9-small {
					margin-left: 75%;
				}

				.row > .col-10-small {
					width: 83.33333%;
				}

				.row > .off-10-small {
					margin-left: 83.33333%;
				}

				.row > .col-11-small {
					width: 91.66667%;
				}

				.row > .off-11-small {
					margin-left: 91.66667%;
				}

				.row > .col-12-small {
					width: 100%;
				}

				.row > .off-12-small {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -5px;
					margin-left: -5px;
				}

					.row.gtr-25 > * {
						padding: 5px 0 0 5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 5px;
						}

				.row.gtr-50 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-50 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 10px;
						}

				.row {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-uniform > * {
							padding-top: 20px;
						}

				.row.gtr-150 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-150 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-200 {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row.gtr-200 > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 40px;
						}

		}

/* Multi-use */

	.link-list li {
		padding: 0.2em 0 0.2em 0;
	}

		.link-list li:first-child {
			/*padding-top: 0 !important;*/
			/*border-top: 0 !important;*/
		}

		.link-list li:last-child {
			/*padding-bottom: 0 !important;*/
			border-bottom: 0 !important;
		}

	.quote-list li {
		padding: 1em 0 1em 0;
		overflow: hidden;
	}

		.quote-list li:first-child {
			padding-top: 0 !important;
			border-top: 0 !important;
		}

		.quote-list li:last-child {
			padding-bottom: 0 !important;
			border-bottom: 0 !important;
		}

		.quote-list li img {
			float: left;
		}

		.quote-list li p {
			margin: 0 0 0 90px;
			font-size: 1.2em;
			font-style: italic;
		}

		.quote-list li span {
			display: block;
			margin-left: 90px;
			font-size: 0.9em;
			font-weight: 400;
		}

	.check-list li {
		padding: 0.7em 0 0.7em 45px;
		/*font-size: 1.2em;*/
		background: url("https://www.languageisavirus.com/assets-halcyonic/css/images/icon-checkmark.png") 0px 1.05em no-repeat;
	}

		.check-list li:first-child {
			padding-top: 0 !important;
			border-top: 0 !important;
			background-position: 0 0.3em;
		}

		.check-list li:last-child {
			padding-bottom: 0 !important;
			border-bottom: 0 !important;
		}

	.feature-image {
		display: block;
		margin: 0 0 2em 0;
		outline: 0;
	}

		.feature-image img {
			display: block;
			width: 100%;
		}

	.bordered-feature-image {
		display: block;
		background: #fff url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg04.png");
		padding: 10px;
		box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
		margin: 0 0 1.5em 0;
		outline: 0;
	}

		.bordered-feature-image img {
			display: block;
			width: 100%;
		}

	.button-large {
		background-image: -moz-linear-gradient(top, #ed391b, #ce1a00);
		background-image: -webkit-linear-gradient(top, #ed391b, #ce1a00);
		background-image: -ms-linear-gradient(top, #ed391b, #ce1a00);
		background-image: linear-gradient(top, #ed391b, #ce1a00);
		display: inline-block;
		background-color: #ed391b;
		color: #fff;
		text-decoration: none;
		font-size: 1.75em;
		height: 2em;
		line-height: 2.125em;
		font-weight: 300;
		padding: 0 45px;
		outline: 0;
		border-radius: 10px;
		box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
		text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.5);
	}

		.button-large:hover {
			background-image: -moz-linear-gradient(top, #fd492b, #de2a10);
			background-image: -webkit-linear-gradient(top, #fd492b, #de2a10);
			background-image: -ms-linear-gradient(top, #fd492b, #de2a10);
			background-image: linear-gradient(top, #fd492b, #de2a10);
			background-color: #fd492b;
			box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
		}

		.button-large:active {
			background-image: -moz-linear-gradient(top, #ce1a00, #ed391b);
			background-image: -webkit-linear-gradient(top, #ce1a00, #ed391b);
			background-image: -ms-linear-gradient(top, #ce1a00, #ed391b);
			background-image: linear-gradient(top, #ce1a00, #ed391b);
			background-color: #ce1a00;
			box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
		}

/* Header */

	#header {
		position: relative;
		background: #3B4346 url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg01.jpg");
		border-bottom: solid 1px #272d30;
		box-shadow: inset 0px -1px 0px 0px #51575a;
		text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.75);
	}

		#header > .container {
			position: relative;
			min-height: 100px;
			z-index: 1;
		}

		#header .h1 { /*LOGO*/
			display: inline-block;
			/*position: absolute;*/
			/*left: 0;*/
			/*bottom: -8px;*/
			font-size: 3.5em;
		}

		#header .h1 a { /*LOGO*/
			color: #fff;
			font-weight: normal;
			text-decoration: none;
		}

		#header nav {
			display: inline-block;
			position: absolute;
			right: 0;
			bottom: 23px;
			font-weight: 200;
		}

			#header nav a {
				color: #c6c8c8;
				text-decoration: none;
				font-size: 1.1em;
				margin-left: 60px;
				outline: 0;
			}

				#header nav a:hover {
					color: #f6f8f8;
				}

		.subpage #header > .container {
			/*height: 155px;*/
			height: 100px;
		}

/* Banner */

	#banner {
		border-top: solid 1px #222628;
		box-shadow: inset 0px 1px 0px 0px #3e484a;
		padding: 35px 0 35px 0;
		color: #fff;
	}

		#banner .bordered-feature-image {
			margin-bottom: 0;
		}

		#banner p {
			font-size: 2em;
			font-weight: 200;
			line-height: 1.25em;
			padding-right: 1em;
			margin: 0 0 1em 0;
		}

/* Features */

	#features {
		background: #353D40 url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg02.jpg");
		border-bottom: solid 1px #272e31;
		padding: 45px 0 45px 0;
		text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.75);
		color: #a0a8ab;
	}

		#features h2 {
			font-size: 1.25em;
			color: #fff;
			/*margin: 0 0 0.25em 0;*/
			margin: 40px 0;
		}

		#features a {
			color: #e0e8eb;
		}

		#features strong {
			color: #fff;
		}

/* Content */

	#content {
		background: #f7f7f7 url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg04.png");
		border-top: solid 1px #fff;
		/*padding: 45px 0 45px 0;*/
		padding: 15px 0 45px 0;
	}

		#content section {
			background: #fff;
			padding: 0px 30px 45px 30px;
			/*padding: 40px 30px 45px 30px;*/
			box-shadow: 2px 2px 2px 1px rgba(128, 128, 128, 0.1);
			margin: 0 0 25px 0;
		}

		#content h2 {
			font-size: 1.8em;
			color: #373f42;
			/*margin: 0 0 0.25em 0;*/
			margin: 40px 0;
		}

		#content h3 {
			font-size: 1.25em;
			font-weight: bold;
			text-align: center;
			margin: 40px 0;
		}

		#content h4 {
			margin: 40px 0;
		}

		#content a {
			color: #ED391B;
		}

		#content header {
			margin: 0 0 2em 0;
		}

		#content .quote-list li {
			border-bottom: solid 1px #e2e6e8;
		}

		#content .link-list li {
			border-bottom: solid 1px #e2e6e8;
			margin-right: 10px;
		}

		#content .check-list li {
			border-bottom: solid 1px #e2e6e8;
		}

/* Footer */

	#footer {
		padding: 45px 0 45px 0;
		color: #000;
	}

		#footer h2 {
			font-size: 1.25em;
			color: #000;
			margin: 0 0 1em 0;
		}

		#footer a {
			color: #000;
		}

/* Copyright */

	#copyright {
		text-align: center;
		padding: 45px 0 80px 0;
		color: #8d9ca3;
	}

		#copyright a {
			color: #8d9ca3;
		}

/* Large */

	@media screen and (max-width: 1280px) {

		/* Multi-use */

			.check-list li {
				/*font-size: 1em;*/
				line-height: 2em;
			}

			.quote-list li {
				padding: 1em 0 1em 0;
			}

				.quote-list li img {
					width: 60px;
				}

				.quote-list li p {
					margin: 0 0 0 80px;
					font-size: 1em;
					font-style: italic;
					line-height: 1.8em;
				}

				.quote-list li span {
					display: block;
					margin-left: 80px;
					font-size: 0.8em;
					font-weight: 400;
					line-height: 1.8em;
				}

			.feature-image {
				margin: 0 0 1em 0;
			}

			.button-large {
				font-size: 1.5em;
			}

		/* Banner */

			#banner p {
				font-size: 1.75em;
			}

		/* Header */

			#header nav a {
				font-size: .7em;
			}

		/* Content */

			#content h2 {
				font-size: 1.4em;
			}

			#content h3 {
				font-size: 1.1em;
			}

			#content header {
				margin: 0 0 1.25em 0;
			}

	}

/* Medium */

	#navPanel, #titleBar {
		display: none;
	}

	@media screen and (max-width: 1124px) {
		#header .h1 {
			font-size: 2.75em;
		}
	}

	@media screen and (max-width: 1032px) {
		#header .h1 {
			font-size: 1.75em;
		}
		#header nav a {
			font-size: .8em;
		}

	}

	@media screen and (max-width: 980px) {

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

		/* Header */

			#header {
				text-align: center;
			}

				#header > .container:first-child {
					display: none;
				}

		/* Content */

			#content {
				padding: 25px 0;
			}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
				padding-top: 44px;
			}

			#titleBar {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 44px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				color: #fff;
				background: url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg04.jpg");
				box-shadow: inset 0px -20px 70px 0px rgba(200, 220, 245, 0.1), inset 0px -1px 0px 0px rgba(255, 255, 255, 0.1), 0px 1px 7px 0px rgba(0, 0, 0, 0.6);
				text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.75);
			}

				#titleBar .title {
					display: block;
					text-align: center;
		
					font-size: 1.8em;
					font-weight: 400;
					line-height: 48px;
				}

				#titleBar .toggle {
				/*	position: absolute;*/
				/*	left: 0;*/
				/*	top: 0;*/
				/*	width: 80px;*/
				/*	height: 60px;*/
				}

					#titleBar .toggle:after {
					/*	content: '';*/
					/*	display: block;*/
					/*	position: absolute;*/
					/*	top: 6px;*/
					/*	left: 6px;*/
					/*	color: #fff;*/
					/*	background: rgba(255, 255, 255, 0.025);*/
					/*	box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05), inset 0px -8px 10px 0px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.25);*/
					/*	text-shadow: -1px -1px 1px black;*/
					/*	width: 49px;*/
					/*	height: 31px;*/
					/*	border-radius: 8px;*/
					}

					#titleBar .toggle:before {
					/*	content: '';*/
					/*	position: absolute;*/
					/*	width: 20px;*/
					/*	height: 30px;*/
					/*	background: url("https://www.languageisavirus.com/assets-halcyonic/css/images/mobileUI-site-nav-opener-bg.svg");*/
					/*	top: 15px;*/
					/*	left: 20px;*/
					/*	z-index: 1;*/
					/*	opacity: 0.25;*/
					}

					#titleBar .toggle:active:after {
					/*	background: rgba(255, 255, 255, 0.05);*/
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				background: url("https://www.languageisavirus.com/assets-halcyonic/css/images/bg04.jpg");
				box-shadow: inset -1px 0px 0px 0px rgba(255, 255, 255, 0.25), inset -2px 0px 25px 0px rgba(0, 0, 0, 0.5);
				text-shadow: -1px -1px 1px black;
			}

				#navPanel .link {
					display: block;
					color: #fff;
					text-decoration: none;
					font-size: 1.25em;
					line-height: 2em;
					padding: 0.625em 1.5em 0.325em 1.5em;
					border-top: solid 1px #373d40;
					border-bottom: solid 1px rgba(0, 0, 0, 0.4);
				}

					#navPanel .link:first-child {
						border-top: 0;
					}

					#navPanel .link:last-child {
						border-bottom: 0;
					}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #titleBar {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navPanel {
			/*	-moz-transform: translateX(0);*/
			/*	-webkit-transform: translateX(0);*/
			/*	-ms-transform: translateX(0);*/
			/*	transform: translateX(0);*/
			}

	}

/* Small */

	@media screen and (max-width: 736px) {
		.sidenav {
			padding: 10px!important;
		}
		.sidenav .dropdown-btn, .sidenav a {
			font-size: 12px!important;
		}

		/* Basic */

			body, input, textarea, select {
				/*font-size: 13pt;*/
				/*line-height: 1.4em;*/
			}

		/* Multi-use */

			.link-list li {
				padding: 0.75em 0 0.75em 0;
			}

			.quote-list li p {
				margin-bottom: 0.5em;
			}

			.check-list li {
				/*font-size: 1em;*/
			}

			.button-large {
				width: 100%;
			}

		/* Banner */

			#banner p {
				font-size: 1.25em;
				font-weight: 200;
				line-height: 1.25em;
				margin: 0 0 1em 0;
			}

		/* Content */

			#content section {
				padding: 30px 20px;
			}

			#content h2 {
				font-size: 1.25em;
			}

			#content h3 {
				font-size: 1em;
			}

			#content header {
				margin: 0 0 1.25em 0;
			}

		/* Footer */

			#footer .link-list {
				margin: 0 0 10px 0 !important;
			}

		/* Copyright */

			#copyright {
				padding: 20px 30px;
			}

	}

	@media screen and (max-width: 690px) {
		.dropdown-container {
			padding-left: 0!important;
		}
	}

	@media screen and (max-width: 630px) {
		.sidenav li {
			margin: 10px 0 10px 0;
			background: #efefef;
			/* border: 1px solid #ddd; */
			padding: 3px!important;
		}
		.sidenav a, .dropdown-btn {
			text-align: center!important;
		}
	}

	@media screen and (max-width: 530px) {
		.sidenav {
			padding: 5px!important;
		}
		.sidenav li {
			margin: 5px 0 10px 0;
		}
	}


center, .center {
	margin: auto;
	text-align: center;
	-webkit-align-content: center;
	align-content: center;
}
.alignright {
	text-align: right;
}
.alignleft {
	text-align: left;
}
.floatright {
	float: right;
	padding: 5px;
}
.floatleft {
	float: left;
	padding: 5px;
}
.h1,h1 {
	font-weight: normal;
	padding-top: 10px;
	text-align: center;
}
.h1 {
	font-size: 3.5em;
	line-height: 62px;
	margin: 0px auto 20px auto;
}

a.designlink {
	color: #333!important;
	cursor: text;
	font-weight: normal;
	text-decoration: none;
}

hr {
	display: block;
	border: none;
	color: #fff;
	height: 1px;
	background: #000;
	background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 350, from(#000), to(#fff));
	margin: 5px 0 5px 0;
}
.flatbtn,
.flatbtn.input[type=button],
.flatbtn.input[type=submit] {
	#color: #fff;
	color: #000!important;
	#background-color: #6496c8!important;
	background-color: #ccc!important;
	font-family: 'Merriweather', serif!important;
	font-size: 14px!important;
	font-weight: bold!important;
	text-shadow: 0px 0px 0px #ccc!important;
	border: none!important;
	background-image: none!important;
	padding: 5px 10px!important;
	margin: 5px!important;
	border-radius: 0px!important;
	box-shadow: inset 0px 0px 0px 0px #fff!important;
}
.flatbtn:hover,
.flatbtn.hover,
.flatbtn.input[type=button]:hover,
.flatbtn.input[type=submit]:hover {
	#background-color: #346392!important;
	#text-shadow: -1px 1px #27496d!important;
	background-color: #666!important;
	color: #fff!important;
	text-shadow: 0px 0px 0px #666!important;
}
.flatbtn:active,
.flatbtn.active,
.flatbtnactive,
.flatbtnactive.input[type=button],
.flatbtnactive.input[type=submit],
.flatbtnactive.input[type=button]:active,
.flatbtnactive.input[type=submit]:active {
	#background-color: #27496d!important;
	#text-shadow: -1px 1px #193047!important;
	background-color: #000!important;
	color: #fff!important;
	text-shadow: 0px 0px 0px #000!important;
	font-family: 'Merriweather', serif!important;
	font-size: 14px!important;
	font-weight: bold!important;
	border: none!important;
	background-image: none!important;
	padding: 5px 10px!important;
	margin: 5px!important;
	border-radius: 0px!important;
	box-shadow: inset 0px 0px 0px 0px #fff!important;
}

.infobox {
	float: right;
	margin: 5px;
	padding: 5px;
	background-color: #efefef;
	border: 1px solid #ddd;
	font-size: 11px;
}
div.box { /* default */
	background-color: #efefef;
	border:1px solid #ddd;
	margin: 0 auto;
	font-family:ms sans serif;
	font-size:11px;
	padding:3px;
	width:83px;
}
.quotebox {
	height: 180px;
}
a {
	font-weight: bold;
	text-decoration: underline;
}
a:visited,
#content a:visited,
#footer a:visited {
	color: #666;
	font-weight: normal!important;
	text-decoration: none!important;
}

.link-list li {
	padding: 0.2em 0 0.2em 0;
}
.link-list li:first-child {
	/*padding-top: 0 !important;*/
	/*border-top: 0 !important;*/
}
.link-list li:last-child {
	/*padding-bottom: 0 !important;*/
	border-bottom: 0 !important;
}
.quote-list li {
	padding: 1em 0 1em 0;
	overflow: hidden;
}
.quote-list li:first-child {
	padding-top: 0 !important;
	border-top: 0 !important;
}
.quote-list li:last-child {
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}
.quote-list li img {
	float: left;
}
.quote-list li p {
	margin: 0 0 0 90px;
	font-size: 1.2em;
	font-style: italic;
}
.quote-list li span {
	display: block;
	margin-left: 90px;
	font-size: 0.9em;
	font-weight: 400;
}
.check-list li {
	padding: 0.7em 0 0.7em 45px;
	/*font-size: 1.2em;*/
	background: url("https://www.languageisavirus.com/assets/css/images/icon-checkmark.png") 0px 1.05em no-repeat;
}
.check-list li:first-child {
	padding-top: 0 !important;
	border-top: 0 !important;
	background-position: 0 0.3em;
}
.check-list li:last-child {
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}
.feature-image {
	display: block;
	margin: 0 0 2em 0;
	outline: 0;
}
.feature-image img {
	display: block;
	width: 100%;
}
.bordered-feature-image {
	display: block;
	background: #fff url("https://www.languageisavirus.com/assets/css/images/bg04.png");
	padding: 10px;
	box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
	#margin: 0 0 1.5em 0;
	margin: 10px;
	outline: 0;
}
.bordered-feature-image img {
	display: block;
	width: 100%;
}


.button-big:visited {color: #fff !important;}
.button-big,
input[type=button],
input[type=submit] {
	background-image: -moz-linear-gradient(top, #ed391b, #ce1a00);
	background-image: -webkit-linear-gradient(top, #ed391b, #ce1a00);
	background-image: -ms-linear-gradient(top, #ed391b, #ce1a00);
	background-image: linear-gradient(top, #ed391b, #ce1a00);
	display: inline-block;
	background-color: #ed391b;
	color: #fff!important;
	text-decoration: none;
	font-size: 1.75em;
	font-weight: 300;
	padding: 15px 45px 15px 45px;
	outline: 0;
	border-radius: 10px;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
	text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.5);
	margin: 20px auto 20px auto;
	cursor: pointer;
}
input[type=button].smallred {
	font-size: 16px!important;
	margin: 10px auto 20px auto;
}
@media all and (min-width: 375px) {
	input[type=button].smallred {
		padding: 10px 25px!important;
	}
}
@media all and (max-width: 374px) {
	input[type=button].smallred {
		padding: 10px 16px!important;
	}
}
.button-big:hover {
	background-image: -moz-linear-gradient(top, #fd492b, #de2a10);
	background-image: -webkit-linear-gradient(top, #fd492b, #de2a10);
	background-image: -ms-linear-gradient(top, #fd492b, #de2a10);
	background-image: linear-gradient(top, #fd492b, #de2a10);
	background-color: #fd492b;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
}
.button-big:active {
	background-image: -moz-linear-gradient(top, #ce1a00, #ed391b);
	background-image: -webkit-linear-gradient(top, #ce1a00, #ed391b);
	background-image: -ms-linear-gradient(top, #ce1a00, #ed391b);
	background-image: linear-gradient(top, #ce1a00, #ed391b);
	background-color: #ce1a00;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.75), inset 0px 2px 0px 0px rgba(255, 192, 192, 0.5), inset 0px 0px 0px 2px rgba(255, 96, 96, 0.85), 3px 3px 3px 1px rgba(0, 0, 0, 0.15);
}
.greybtn {
	background-image: -moz-linear-gradient(top, #eee, #ccc)!important;
	background-image: -webkit-linear-gradient(top, #eee, #ccc)!important;
	background-image: -ms-linear-gradient(top, #eee, #ccc)!important;
	background-image: linear-gradient(top, #eee, #ccc)!important;
	background-color: #eee!important;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0), inset 0px 0px 0px 0px rgba(0, 0, 0, 0), inset 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)!important;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0)!important;
	color: #666!important;
	cursor: pointer;
}
.greybtn:hover {
	background-image: -moz-linear-gradient(top, #ccc, #eee)!important;
	background-image: -webkit-linear-gradient(top, #ccc, #eee)!important;
	background-image: -ms-linear-gradient(top, #ccc, #eee)!important;
	background-image: linear-gradient(top, #ccc, #eee)!important;
	background-color: #ccc!important;
}
.greybtn:active {
	background-image: -moz-linear-gradient(top, #ccc, #eee)!important;
	background-image: -webkit-linear-gradient(top, #ccc, #eee)!important;
	background-image: -ms-linear-gradient(top, #ccc, #eee)!important;
	background-image: linear-gradient(top, #ccc, #eee)!important;
	background-color: #ccc!important;
}

.search input[type=text] {
	padding: 10px!important;
	font-size: 18px;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 236px;
}
.search .button-big {
	cursor: pointer;
	font-size: 22px!important;
	padding: 15px 64px!important;
}
.leaderboard {
	width: 738px;
	height: 100px;
	margin: auto;
	text-align: center;
	margin-bottom: 20px;
}
.coltwo {
	display: inline-block;
	margin: 10px;
	padding: 10px;
	width: 45%;
}
.pin {
	background: #efefef;
	border: #ddd;
	margin: 10px;
	padding: 10px;
}
.pin div,
.pin a,
.pin table,
.pin tr,
.pin td {
	font-family: ms sans serif,verdana,arial,helvetica,sans serif;
	font-size: 10px;
	line-height: 22px;
}
.itemtitle {
	background: #ddd;
	padding: 3px;
}
.itemdescription td {
	vertical-align: top;
}
.pin img {	
	padding: 10px 20px 10px 0px;
}

#writing-news .itemtitle {
	background: #fff;
	display: block;
	padding: 10px;
}
#writing-news table {display: table;}
#writing-news tr {display: table-row;} 
#writing-news td {display: table-cell;}
#writing-news div img {
	box-shadow: 1px 1px 3px #666;
	display: inline-block;
	margin: 10px;
	margin-top: 60px;
	padding: 10px;
	width: 80px;
	height: 80px;
}
#writing-news .j img {display: none;}
#writing-news .itemtitleone {display: none;}
#writing-news .itemtitle a {line-height: 16px;}
#writing-news .lh {
	background: #efefef;
	border: 1px solid #ddd;
	margin: 10px;
	padding: 10px;
}
.writing-news-infobox {
	background: #efefef;
	border: 1px solid #ddd;
	font-size: 12px;
	line-height: 22px;
	margin: 10px;
	padding: 10px;
	text-align: center;
}

.myshadowedges, .generated, .userinput {
	background: #efefef;
	border: 1px solid #ddd;
	color: #000;
	margin: 10px;
	padding: 10px;
}
.articles {
	float: right;
	/*width: 400px;*/
	/*height: auto;*/
	/*display: inline-block;*/
	/*margin: 10px;*/
	/*width: 300px;*/
}
.articles img {
	max-width: 300px;
}

.instructions-sm {
	font-size: 14px;
}

.recommended-book {
	float: right;
	font-size: 10px;
	line-height: 18px;
	margin: 10px;
	width: 160px;
}
.recommended-book-box {
	margin: auto;
	text-align: center;
}
.recommended-book-box div {
	float: left;
	font-size: 10px;
	line-height: 22px;
	margin: 5px;
	text-align: center;
	width: 110px!important;
}
.recommended-book-box div a {
	text-decoration: none;
}

.sources {
	background: #efefef;
	border: 1px solid #ddd;
	margin: 10px;
	padding: 10px;
}
.booklink {
	background: #eee;
	float: right;
	margin: 10px;
	padding: 10px;
	text-align: center;
	width: 300px;
}
.booklink img {
	background: #fff;
	border: 1px solid #ccc;
}
.booklink a {
	font-size: 12px;
	line-height: 22px;
}
.booklink:before {
	content: 'Recommended Reading:';
	font-weight: bold;
}
@media (max-width:560px) {
	.booklink {
		max-width: 120px;
	}
	.booklink img {
		max-width: 100px;
	}
}
.amz {
	text-decoration: none;
}
blockquote, q {
	background: #ccc;
	margin: 10px;
	padding: 10px;
	width: 250px;
	float: right;
}
blockquote p {
	margin: 0px;
	font-weight: bold;
	font-size: 14px;
	line-height: 22px;
}
.blockquotelight {
	color: #aaa;
	margin: 10px;
	padding: 10px;
	width: 250px;
	float: right;
	font-weight: bold;
	font-size: 14px;
	line-height: 22px;
}
.caption {
	color: #666;
	font-size: 14px;
	font-style: italic;
	text-align: center;
}
cite, .cite {
	background: #eee;
	color: #000;
	font-style: italic;
	margin: 10px 10px 30px 10px;
	padding: 10px;
}
.cite:before {
	color: #666;
	content: 'Source: ';
	font-style: italic;
}
.bold {font-weight: bold;}

.quote-container {
	margin-top: 0px;
	position: relative;
}

.note {
	color: #333;
	font-family: 'Merriweather', serif!important;
	font-size: 24px;
	position: relative;
	width: 320px;
	margin: 0 auto;
	padding: 20px;
	box-shadow: 0 10px 10px 2px rgba(0,0,0,0.3);
	text-align: center;
}

.note .author {
	display: block;
	margin: 40px 0 0 0;
	text-align: right;
}
.yellow {
	background: #eae672;
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	-o-transform: rotate(2deg);
	-ms-transform: rotate(2deg);
	transform: rotate(2deg);
}
.pin {
	background-color: #aaa;
	display: block;
	height: 32px;
	width: 2px;
	position: absolute;
	left: 50%;
	top: -16px;
	z-index: 1;
}
.pin:after {
	background-color: #A31;
	background-image: radial-gradient(25% 25%, circle, hsla(0,0%,100%,.3), hsla(0,0%,0%,.3));
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.1),
							inset 3px 3px 3px hsla(0,0%,100%,.2),
							inset -3px -3px 3px hsla(0,0%,0%,.2),
							23px 20px 3px hsla(0,0%,0%,.15);
	content: '';
	height: 12px;
	left: -5px;
	position: absolute;
	top: -10px;
	width: 12px;
}
.pin:before {
	background-color: hsla(0,0%,0%,0.1);
	box-shadow: 0 0 .25em hsla(0,0%,0%,.1);
	content: '';

	height: 24px;
	width: 2px;
	left: 0;
	position: absolute;
	top: 8px;

	transform: rotate(57.5deg);
	-moz-transform: rotate(57.5deg);
	-webkit-transform: rotate(57.5deg);
	-o-transform: rotate(57.5deg);
	-ms-transform: rotate(57.5deg);

	transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
}

video {
	max-width: 100%;
	height: auto;
}
iframe,embed,object {max-width: 100%;}
.videocontainer {
	width: 100%;
}
.vendor {
}
.unsupported {
}

ol.number {counter-reset: item;}
ol.number li {
	display: block;
	margin: 10px;
	/*line-height: 26px;*/
}
ol.number li:before {
	content: counter(item) ". ";
	counter-increment: item;
	color: #ccc;
	font-size: 34px;
	font-weight: bold;
}

strong, b {font-weight: bold!important;}

/* Content */

#content .quote-list li {
	border-bottom: solid 1px #e2e6e8;
}
#content .link-list li {
	border-bottom: solid 1px #e2e6e8;
	margin-right: 10px;
}
#content .check-list li {
	border-bottom: solid 1px #e2e6e8;
}
/* Footer */


.theboxad {
	float: right;
	margin: 10px;
}
.bottom-horizontal-navbar {
	margin-top: 20px;
}
.bottom-horizontal-navbar li {
	display: inline-block;
}
.bottom-horizontal-navbar a {
	background: #efefef;
	border: 1px solid #ddd;
	display: block;
	font-size: 14px;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	width: 120px;

}
.bottom-horizontal-navbar a:visited {
	background: #ccc;
}

.bottom-horizontal-navbar a:hover {
	background: #ddd;
}

.breadcrumbs {
	position: relative;
	z-index: 9999;
}
.breadcrumbs li {
	display: inline-block;
	font-size: 12px;
}
.breadcrumbs li a {
	font-weight: normal;
	text-decoration: none;
}
.breadcrumbs li a:hover {
	text-decoration: underline;
}
.breadcrumbs li:after {
	content: '\003E';
	font-size: 10px;
	margin: 0 5px 0 5px;
}
.breadcrumbs li:last-child:after {
	content: '';
}
.clear {
	clear: both;
}

.sidenav {
	z-index: 1;
	overflow-x: hidden;
	#padding-top: 20px;
}

.sidenav a {
	font-size: 14px;
}
.sidenav a, .dropdown-btn {
	font-size: 12px;
	text-decoration: none;
	display: block;
	width:100%;
	text-align: left;
	cursor: pointer;
	outline: none;
}
.sidenav .sidebar-links {
	padding: 0 0 45px 15px!important;
}
.dropdown-container {
	display: none;
	padding-left: 8px;
}
.dropdown-container strong {
	color: #ccc;
}
.dropdown-container li {
	border-bottom: 1px solid #ddd!important;
}
.dropdown-container li a {
	color: #ED391B;
	line-height: 18px;
	margin: 10px 0 10px 0;
}
.dropdown-btn {
	font-size: 16px;
	font-weight: bold;
}
.dropdown-btn:hover,
.dropdown-container li a:hover {
	color: #000!important;
}
.dropdown-container li a:visited {
	color: #666;
}
.fa-caret-down,
.downbtn {
	color: #ccc;
	float: right;
	font-size: 32px!important;
	padding-right: 8px;
}

.table-margin td {		
	margin: 10px;
}
.table-padding td {
	padding: 10px;
}
@media all and (min-width: 320px) and (max-width: 481px) {
	.table-padding td {
		display: inline-block;
	}
}

.poetryguide-links, .poetryguide-links a {
	color: #666!important;
	font-weight: normal;
}
.poetryguide-links p {
	margin: 0;
}

.threecol {
columns: 60px 3;
-webkit-columns: 60px 3; /* Safari and Chrome */
-moz-columns: 60px 3; /* Firefox */
}

@media all and (min-width: 320px) {
	h1 {
		font-family: "Merriweather", serif;
		font-size: 2em;
		padding: 0;
	}

	.tribal, .theboxad, .sidenav, .hidemobile {
		display: none;
	}
}
@media all and (min-width: 481px) {
	h1 {
		padding: 10px 0;
	}
	.sidenav, .hidemobile {
		display: block;
	}
	.tribal, .theboxad {
		display: inline-block;
	}
}

#logo img {
	position: relative;
	top: -5px;
	width: 100%;
	height: auto;
}

#scrolltotopbtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #C4F4DF;
	color: #000;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
}

#scrolltotopbtn:hover {
	background-color: #555;
	color: #fff;
}

@media all and (min-width: 320px) {
	.desktoponly {display: none;}
	.mobileonly {display: block;}
}

@media all and (min-width: 1004px) {
	.desktoponly {display: block;}
	.mobileonly {display: none;}
}