/* EAMON.WORLD */
/* main css: Site-wide styles */

/* Fonts ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* (NB: "Almendra SC" is imported from Google in pageHead.php) */
@font-face {
	font-family: "Athelas";
	src: url("../fonts/athelas-regular.woff2") format("woff2"),
		 url("../fonts/athelas-regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

/* Variables ~~~~~~~~~~~~~~~~~~~~~~~~~*/
:root {
	--primary: #a43030;
	--secondary: #200c0c;
	--pageBackground: #ffffff;
	--pageText: #404040;
	--pageTextInverse: #ffffff;
	--navBackground: #a43030 url("../images/chrome/leather.jpg") left top;
	--navText: #ffffff;
	--articleBackground: #e6dcb9 url("../images/chrome/parchment2.jpg") right top;
	--articleText: #404040;
	--articleTag: #666666;
	--asideBackground: #ddeeff;
	--asideBorder: #eeeeee;
	--asideText: #444444;
	--tableHead: rgba(0,0,0,0.05);
	--tableBorder: #dddddd;
	--inputBackground: #ffffff;
	--inputBorder: #666666;
}

/* Generals ~~~~~~~~~~~~~~~~~~~~~~~~~~*/
*, *::before, *::after {
	box-sizing: border-box;
}
body, html {
	background: var(--pageBackground);
	color: var(--pageText);
	font-family: "Athelas", "Garamond", serif;
	height: 100%;
	font-size: 1rem;
	margin: 0;
	overflow: hidden;
	padding: 0;
	overflow-x: hidden;
}
h1 {
	color: var(--primary);
	font-family: "Almendra SC", sans-serif;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: -1px;
	margin: 0;
}
h2 {
	color: var(--secondary);
	font-size: 1.875rem;
	line-height: 1;
	margin: 0.5rem 0;
}
h3 {
	font-size: 1.375rem;
	margin: 0.5rem 0;
}
h4 {
	margin: 0.5rem 0 0 0;
}
p {
	font-family: "Athelas", serif;
	line-height: 1.2;
	margin: 0.2rem 0 0.5rem 0;
}
a {
	color: var(--primary);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a.externalLink {
	border-bottom: 1px dotted var(--primary);
}
a.externalLink::after {
	background-image: url("../images/icons/externalRed.png");
	content: "";
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
}
h2 a.externalLink {
	border-bottom: none;
}
blockquote {
	border-left: 1px solid var(--primary);
	display: block;
    margin-inline-start: 0;
    margin-inline-end: 0;
	padding-left: 0.5rem;
	position: relative;
}
button {
	background: none;
	border: none;
	cursor: pointer;
	font-family: "Athelas", serif;
	padding-inline: 0;
}
button img {
	width: 1rem;
}
dd, li {
	color: var(--pageText);
	line-height: 1.2;
}
#contentBody li {
	margin: 0.25rem 0;
	padding: 0.25rem 0;
}
dl>div {
	break-inside: avoid-column;
}
.timeline {
	border-left: 1px solid var(--primary);
	padding-left: 0.875rem;
	position: relative;
}
.timeline.origin::before {
	content: "";
	position: absolute;
	background: var(--pageBackground);
	top: 0;
	left: -1px;
	width: 2px;
	height: 1rem;
}
.timeline dt,
.eventYear {
	color: var(--primary);
	font-size: larger;
	font-weight: bold;
	margin: 0.25rem 0;
	position: relative;
}
.timeline dt::before {
	content: "►";
	color: var(--primary);
	font-family: "Arial", sans-serif;
	font-size: 0.675rem;
	position: absolute;
	left: -1rem;
	top: 0.25rem;
}
.timeline dd {
	margin-left: 0;
}
.timeline small {
	font-size: 0.875rem;
}
.timeline p {
	margin-top: 0;
}
.faq dt {
	font-weight: bold;
}
ul {
	padding-left: 1.5rem;
	margin: 0.5rem 0;
}
.clear {
	clear: both;
}
.italic {
	font-style: italic;
}
mark {
	background-color: transparent;
	color: inherit;
	font-weight: bold;
}
aside {
	color: var(--asideText);
	font-size: 0.9375rem;
	height: 0;
	overflow: hidden;
	position: relative;
}
aside p {
	margin: 0.75rem 1rem !important;
}
aside::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: -0.5rem;
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-bottom: 0.5rem solid var(--asideBackground);
}
body.notes aside {
	background-color: var(--asideBackground);
	border: 1px solid var(--asideBorder);
	border-radius: 0.25rem;
	height: auto;
	margin-bottom: 1rem;
	overflow: visible;
}
#article aside {
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.articleLink {
	cursor: pointer;
}
.cap {
	color: var(--primary);
	float: left;
	font-family: "Almendra SC", sans-serif;
	font-size: 4.25rem;
	font-weight: normal !important;
	line-height: 1;
	margin: -0.5rem 0.25rem -1rem 0;
	top: -0.375rem;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: gold;
}
.center,
.centered {
	text-align: center;
}
#settings {
	display: none;
	position: fixed;
	background: rgba(0,0,0,0.33);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0;
	width: 100%;
	z-index: 90;
}
#settings>.modal {
	background: var(--pageBackground);
	border-radius: 0.25rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
	margin: 0 auto 0 auto;
	padding: 1rem 2rem 2rem 2rem;
	position: relative;
	top: 40%;
	transform: translateY(-40%);
	width: 22rem;
	max-width: 80%;
}
#settings dt {
	font-weight: bold;
}
#settings dd {
	margin-left: 1.5rem;
}
#toggle-modal {
	cursor: pointer;
	font-size: 2rem;
	font-weight: bold;
	padding: 1rem 1.5rem;
	position: absolute;
	top: 0;
	right: 0;
}
#settings.max {
	display: block;
}
#settings label {
	display: inline-block;
	vertical-align: text-top;
}
.audio {
	cursor: pointer;
	display: inline-block;
	font-size: 0.75rem;
	height: 0.75rem;
	width: 0.75rem;
	margin: 0 0.1875rem 0 0;
	filter: brightness(0%);
}
.audio:hover {
	filter: brightness(50%);
}

/* Inputs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
input[type=text],
select,
textarea {
	background: var(--inputBackground);
	border: 1px solid var(--inputBorder);
	color: var(--inputColor);
	min-width: 1rem;
	padding: 0.25rem;
	width: 100%;
}
label {
	color: var(--primary);
	display: block;
	font-size: 0.75rem;
	font-weight: bold;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}
.switch {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 17px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.25s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 13px;
	width: 13px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	transition: 0.25s;
}
input:checked + .slider {
	background-color: var(--primary);
}
input:focus + .slider {
	box-shadow: 0 0 1px var(--primary);
}
input:checked + .slider:before {
	-webkit-transform: translateX(13px);
	-ms-transform: translateX(13px);
	transform: translateX(13px);
}
.slider.round {
	border-radius: 17px;
}
.slider.round:before {
	border-radius: 50%;
}

/* Sections ~~~~~~~~~~~~~~~~~~~~~~~~~~*/
section>.liner {
	padding: 1.25rem;
}

/* Nav ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#nav {
	background: var(--navBackground);
	box-shadow: 0 0 0.625rem rgba(0,0,0,0.25);
	color: var(--navText);
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 0;
	transition: width 0.25s;
	z-index: 30;
}
#veil {
	background: rgba(0,0,0,0.1);
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 25;
}
#nav.max+#veil {
	display: block;
}
#nav>.liner {
	padding: 0.675rem 0.875rem;
}
#nav.min {
	width: 3.25rem;
}
#nav.max {
	width: 25rem;
}
#navHead {
	margin-bottom: 0.5rem;
}
#navToggle {
	background-repeat: no-repeat;
	background-size: 1.25rem;
	background-position: 0.125rem center;
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
}
#nav.min #navToggle {
	background-image: url("../images/icons/barsWhite.svg");
}
#nav.max #navToggle {
	background-image: url("../images/icons/xWhite.svg");
	width: 100%;
}
#nav.min #navToggle:hover {
	top: 1px;
}
#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#nav li {
	min-height: 2rem;
	margin: 0 0 0.25rem 0;
	padding: 0;
	white-space: nowrap;
}
#nav li a {
	color: var(--navText);
	cursor: pointer;
	display: inline-block;
	font-size: 1.125rem;
	height: 2rem;
	position: relative;
	text-align: left;
}
#navFoot a,
#navFoot p {
	color: var(--navText);
}
#nav a:hover {
	text-decoration: underline;
}
#nav.min a:hover img {
	top: 1px;
}
#nav a span {
	margin-left: 1rem;
}
#nav.min a span,
#nav.min input {
	display: none;
}
#nav img {
	position: relative;
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
}
#nav ul ul {
	height: 0;
	margin-left: 2.375rem;
	overflow: hidden;
}
#nav.min ul ul {
	height: 0 !important;
	overflow: hidden;
}
#nav li.max ul {
	height: auto;
}
#nav ul ul li {
	margin-bottom: -0.5rem;
	min-height: auto;
}
#nav ul ul li a {
	font-size: 1rem;
	font-weight: normal;
	width: 100%;
}
.expander {
	cursor: pointer;
	display: inline-block;
	padding: 0 0.5rem;
	position: relative;
	top: -1px;
}
.expander:hover {
	background: radial-gradient(rgba(255,255,255,0.1) 0, rgba(255,255,255,0) 75%);
}
.expander img {
	width: 0.75rem !important;
}
#nav.min .expander {
	display: none;
}
#nav li.max .expander img {
	transform: rotate(180deg);
}
#nav li.pending {
	opacity: 0.4;
}
#navFoot {
	display: block;
	font-size: smaller;
	margin-top: 1rem;
    text-align: center;
	opacity: 0.5;
	position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
}
#nav.min #navFoot {
	display: none;
}
#navFoot p {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: hidden;
}
#metaSection {
	white-space: pre-wrap;
}

/* Main ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#main {
	margin: 0 0 0 3.25rem;
	position: relative;
	z-index: 20;
}

/* Content ~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#content {
	overflow: auto;
	width: calc(100%);
	transition: width 0.5s ease;
}
#content.articleShown {
    width: calc(100% - 24.75rem);
}
#content.map.articleShown {
    width: auto;
}
#contentHead {
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	padding: 0;
}
#contentHead>.liner {
	padding: 0.375rem 1.25rem 0.625rem 1.25rem;
}
#contentBody {
	height: calc(100vh - 3.125rem);
	overflow-x: hidden;
	overflow-y: auto;
	margin-right: 0.75rem;
	padding: 0 1.25rem;
}
#home #contentBody,
#map #contentBody {
	height: calc(100vh - 0.125rem);
	margin-right: 0.25rem;
}
#contentFoot {
    background: white;
	bottom: 0;
	position: absolute;
	text-align: center;
    width: 100%;
}
#contentBody>.liner {
	margin: 0 auto;
	max-width: 800px;
	padding: 0.5rem 0 3rem 0
}
#map #contentBody>.liner {
	max-width: 100%;
}
.flavor {
	font-size: 1.125rem;
	font-style: italic;
	font-weight: bold;
	color: var(--primary);
	margin: 1.5rem 15% 1.75rem 15%;
	text-align: center;
}
hr {
	margin: 1rem 0 0.875rem 0;
	opacity: 0.333;
	position: relative;
}
hr.major {
	background-image: url("../images/chrome/rule.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border: 0;
	height: 8px;
	margin: 2.5rem 0;
	opacity: 1;
	overflow: visible;
	position: relative;
}
hr.major::after {
	content: "";
	background-color: var(--pageBackground);
	background-image: url("../images/chrome/gems.svg");
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: -5px;
	left: 50%;
	height: 18px;
	width: 44px;
	transform: translate(-50%, 0%);
}

/* Custom scrollbar */
#contentBody::-webkit-scrollbar,
.articleBody::-webkit-scrollbar {
	width: 0.25rem;
}
#contentBody::-webkit-scrollbar-button,
.articleBody::-webkit-scrollbar-button {
	display: none;
}
#contentBody::-webkit-scrollbar-thumb,
.articleBody::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 0.125rem;
}
#contentBody::-webkit-scrollbar-thumb:hover,
.articleBody::-webkit-scrollbar-thumb:hover {
	background: #b30000; 
}
#contentBody::-webkit-scrollbar-track,
.articleBody::-webkit-scrollbar-track {
	background: var(--pageBackground);
	border-radius: 0.125rem;
}

/* Articles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#article {
	background: var(--articleBackground);
	box-shadow: -3px 0 10px rgba(0,0,0,0.2);
	border-radius: 8px 0 0 8px;
	color: var(--articleText);
	display: block;
	position: fixed;
	top: 0.375rem;
	bottom: 0.375rem;
	padding: 0;
	width: 25rem;
	z-index: 100;
}
#scroll {
	background: var(--articleBackground);
	border-radius: 0.375rem;
	cursor: pointer;
	position: absolute;
	top: -3px;
	bottom: -3px;
	left: 0;
	width: 1.75rem;
	box-shadow: inset 16px 0 16px -8px rgba(0,0,0,0.2),
				inset -16px 0 16px -8px rgba(0,0,0,0.4),
				12px 0 12px rgba(0,0,0,0.4);
	transition: width 0.5s ease;
	z-index: 90;
}
#article::after {
	background-image: url("../images/chrome/curl-top.png"), url("../images/chrome/curl-bottom.png");
	background-size: 70px 140px, 70px 140px;
	background-position: top left, bottom left;
	background-repeat: no-repeat, no-repeat;
	content: "";
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 70;
	opacity: 0;
	pointer-events: none;
}
#article {
	right: -24.5rem;
	transition: right 0.5s ease;
}
#content.articleShown #article {
	box-shadow: -4px 3px 8px rgba(0,0,0,0.2);
	border-radius: 0;
	right: 0rem;
}
#article>.liner {
	display: flex;
	flex-direction: column;
	height: calc(100vh - 4rem);
	margin: 1.5rem 1rem 1.5rem 2rem;
}
#article .articleControls {
	position: absolute;
	top: 0.35rem;
	right: 3.25rem;
	z-index: 999;
}
#article .articleControls button {
	height: 24px;
	overflow: hidden;
	position: relative;
}
#article .articleControls button:hover {
	top: 1px;
}
#article .articleControls button img {
	margin: 0.25rem;
}
#article .articleControls button.hidden {
	display: none;
}
#article .articleHead {
	padding-right: 0.75rem;
}
#article h2 {
	margin: 0.625rem 0 0.5rem 0;
}
.articleCategory {
	font-size: 0.75rem;
	font-weight: bold;
	opacity: 0.9;
	text-transform: uppercase;
}
#article .articleBody {
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 1.125rem;
}
#content.articleShown #scroll {
	width: 0;
	transition: width 0.5s ease;
}
#content.articleShown::after {
	opacity: 1;
}
#articleToggle {
	background: var(--primary);
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	color: var(--pageTextInverse);
	padding: 0.1rem 0.25rem 0.15rem 0;
	position: absolute;
	top: 0.75rem;
	right: -1px;
	z-index: 101;
}
#articleToggle img {
	height: 0.875rem;
	margin: 0 0.25rem;
	position: relative;
	top: 0.125rem;
}
#articleToggle img:last-child {
	display: none;
}
#content.articleShown #articleToggle img:first-child {
	display: none;
}
#content.articleShown #articleToggle img:last-child {
	display: inline;
}
#articleToggle:hover {
	right: 0;
}
#articleToggle::before,
#articleToggle::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: -0.75rem;
	border-left: 0.75rem solid transparent;
	border-right: 0.75rem solid transparent;
}
#articleToggle::before {
	border-top: 0.75rem solid var(--primary);
	top: 0;
}
#articleToggle::after {
	border-bottom: 0.75rem solid var(--primary);
	bottom: 0;
}
#article .legend td {
	height: 1.5rem;
}
#article .legend td:nth-child(1) {
	text-align: left;
}
#article .legend td:nth-child(2) {
	text-align: center;
}
#article .legend td:nth-child(2) span {
	font-family: sans-serif;
	font-weight: bold;
	font-size: 1.5rem;
}
#article .legend img {
	height: 22px;
}
#article img {
	max-width: 100%;
}
#articleHome {
	color: var(--primary);
}
#article aside {
	margin: 1rem 0.25rem 0.325rem 0.25rem;
}
#article .articleTag {
	color: var(--articleTag);
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
#article .articleTag span {
	border-bottom: 1px dotted rgba(164,48,48,0.5);
	cursor: help;
}
#article .articleTag small {
	cursor: help;
}
#article .articleTag a {
	cursor: pointer;
}
.categoryList {
	list-style-type: none;
	padding: 0;
}
.categoryList li {
    margin: 0 !important;
    padding: 0.25rem 0 !important;
}

#searchPanel {
	background: var(--articleBackground);
	height: calc(100vh - 4rem);
    margin: 1.25rem 2rem 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
}
#searchPanel>.liner {
	width: 100%;
}
#searchBox,
#searchResults {
	width: calc(100% - 1rem);
}
#searchBox {
	padding: 0.5rem;
}
#searchClear {
	cursor: pointer;
    left: calc(100% - 3rem);
	position: absolute;
    top: 0.125rem;
	height: 2rem;
	width: 2rem;
	padding: 0.5rem;
}
#searchClear img {
	height: 100%;
	width: 100%;
}
#searchResults {
	list-style: none;
	padding: 0;
	margin-top: 0.5em;
}

/* Figures and figcaptions  ~~~~~~~~~ */
figure {
	break-inside: avoid-column;
	margin: 0 0 1rem 0;
	padding: 0;
	position: relative;
	text-align: center;
}
figure img {
	width: 100%;
}
figcaption {
	font-size: 0.875rem;
	font-style: italic;
	line-height: 1.2;
	margin: 0 0 1.75rem 0;
	opacity: 0.85;
	text-align: center;
}
figure:hover figcaption {
	opacity: 1;
	transition: opacity 0.5s;
}
figure.third {
	width: 33%;
}
figure.right {
	float: right;
}
figure.left {
	float: left;
}
#splash {
	margin: 0 -1.25rem 0.5rem -1.25rem;
}

/* Page-specific customizations ~~~~~ */

/* Home */
#home #contentHead {
	display: none;
}

/* Map */
#map body {
	margin: 0;
	padding: 0;
}
#map #contentHead {
	display: none;
}
#map #contentBody {
	height: calc(100vh);
	padding: 0;
}
#map #contentBody>.liner {
	padding-bottom: 0;
	height: calc(100vh);
}
#mapMask {
	background: black;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 999;
}
#mapMask h2 {
	position: relative;
	text-align: center;
	top: 45%;
	z-index: 200;
	color: #444;
}
#mapWrap {
	background-color: black;
}
#mapControls {
	border-radius:2px;
	bottom: 1rem;
	display: inline-block;
	left: 1rem;
	position: absolute;
	width: 2.5rem;
}
#mapControls button {
	background: var(--primary);
	border-radius: 0.25rem;
	color: #fff;
	cursor: pointer;
	font-family: "Athelas", serif;
	font-size: 1.75rem;
	line-height: 1.375rem;
	margin-top: 0.25rem;
	min-width: 2.25rem;
	padding: 0 0.5rem 0.25rem 0.5rem;
	text-align: center;
}
#mapControls button#exportCoords {
	font-size: 1rem;
}
#scaleBar {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 0.5rem;
	pointer-events: none;
	position: relative;
	height: 120px;
	width: 40px;
}
#scaleBarVisual {
	background: var(--primary);
	bottom: 0;
	left: 0;
	position: absolute;
	width: 4px;
}
#scaleBarVisual::before {
    content: "Miles";
    position: absolute;
    top: -1.375rem;
}
#scaleBarTicks {
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
#scaleBarTicks .tick {
	background: var(--primary);
	left: 0;
	position: absolute;
	width: 10px;
	height: 1px;
}
#scaleBarTicks .tick::after {
	content: attr(data-label);
	left: 14px;
	top: -7px;
	position: absolute;
	white-space: nowrap;
}
@keyframes flash {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
.highlight {
	animation: flash 0.2s linear 10;
}

/* Media rules ~~~~~~~~~~~~~~~~~~~~~~ */
@media (max-width: 820px) {
	h1 {
		font-size: 1.75rem;
		margin-left: 1rem;
	}
	#nav.min {
		background: none;
		box-shadow: none;
	}
	#nav.min>.liner {
		margin-top: 1rem;
		padding: 0 1rem;
	}
	#nav.min #navToggle {
		background-image: url("../images/icons/barsRed.svg");
		background-size: 0.875rem;
	}
	#nav.min ul {
		display: none;
	}
	#main {
		margin: 0;
	}
	.flavor {
		margin: 1.5rem 10% 1.75rem 10%;
	}
	#content.articleShown {
		width: auto;
	}
	#contentHead {
		padding: 0.5rem 0.75rem 0 0.75rem;
	}
	#home #contentHead {
		display: block;
	}
	#contentBody {
		height: calc(100vh - 4rem);
		padding: 0 0.75rem;
	}
	#contentBody>.liner {
		padding-bottom: 8.5rem;
	}
	#home #splash {
		margin: 0 -0.75rem 1.25rem -0.75rem;
	}
	#home #splash p {
		max-width: 95%;
	}
	#map #contentBody>.liner {
		height: calc(100vh);
	}
	#map .controls {
		left: 2.75rem;
		top: 1.25rem;
	}
}
@media print {
	body, html {
		overflow: visible;
	}
	::-webkit-scrollbar {
		display: none;
	}
	#nav, #articleToggle {
		display: none;
	}
	#main {
		margin-left: 0;
	}
	#contentBody {
		height: auto;
		overflow: visible;
	}
	#contentBody::-webkit-scrollbar {
		display: none;
	}
	.noprint {
		display: none;
	}
}