@charset "UTF-8";

main {
	max-width: 1096px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

body {
	font-family: 'Alegreya', serif;
}

hr {
	border-top: 1px solid #cccccc;
}

sup, sub {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
}
sub { 
	top: 0.4em; 
}

iframe {
	border: none;
}

audio {
	text-indent: 0px;
	margin-top: 30px;
	margin-bottom: 20px;
	width: 100%;
	color: red;
	z-index: 9999;
	background-color: var(--col-bg-box);
	/*background-color: rgba(0,0,0,0.5);
	background: rgba(0,0,0,0.5);*/
}
audio:focus {
	outline: none;
}

audio::-webkit-media-controls-current-time-display {
	font-family: 'Roboto Mono', monospace;
	font-size: 12px;
}
audio::-webkit-media-controls-time-remaining-display {
	font-family: 'Roboto Mono', monospace;
	font-size: 12px;
}

video {
	width: 100%    !important;
	height: auto   !important;
	margin: 20px 0 30px;
}
video:focus {
	outline: none;
}

#audioPlayer {
	/*position: -webkit-sticky;
	position: sticky;
	top: 0;*/
}



.centertext {
	text-align: center;
	text-indent: 0px;
}

.centertext p {
	text-align: center;
	text-indent: 0px !important;
}

.allcaps {
	text-transform: uppercase;
}
.smallcaps {
	font-variant: small-caps;
}





.document-body {
	margin: auto;
	max-width: 700px;
	
	font-size: 18px;
	color: var(--col-text);
	
	/*font-variant-ligatures: common-ligatures;*/
}

p {
	margin: 0px;
	hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;

	-webkit-font-feature-settings: "liga";
	-moz-font-feature-settings: "liga=1";
	-moz-font-feature-settings: "liga";
	-ms-font-feature-settings: "liga" 1;
	-o-font-feature-settings: "liga";
	font-feature-settings: "liga";
	
	/*text-rendering: optimizeLegibility; */
	
	line-height: 190%;
	text-indent: 50px;
	font-size: 22px;
	letter-spacing: 0;
}

p a {
	transition: 0.5s;
	color: var(--col-accent);
	text-decoration: none;
}

p a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}




.paragraph-group {
	margin: 30px 0;
}

.paragraph-group:last-child {
	margin-bottom: 0;
}






.all-indent {
	margin: 0 50px;
	text-indent: 0px;
}


blockquote {
	margin: 20px 0px;
	background-color: var(--col-bg-box);
	border-left: 2px solid var(--col-bg-box-bg);
	padding: 5px 47px;
	font-size: 18px;
	line-height: 200%;
}

blockquote p {
	font-size: 18px;
	line-height: 200%;
}

blockquote a {
	transition: 0.5s;
	color: var(--col-blockquote-link);
	text-decoration: none;
}

blockquote a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

blockquote .byline {
	text-align: right;
	line-height: 120%;
	padding-bottom: 10px;
}



.verse p {
	padding-left: 2em;
	text-indent: -2em !important;
}






.chapter-header {
	border-top: 1px solid var(--col-bg-box);
	border-bottom: 1px solid var(--col-bg-box);
	margin: 50px 0;
	padding: 20px 0;
	text-indent: 0;
}

.chapter-number {
	text-align: center;
	font-size: 20px;
	text-indent: 0;
}

.chapter-title {
	text-align: center;
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.075em !important;
	text-indent: 0;
}

.chapter-number-box {
	background-color: var(--col-accent);
	color: var(--col-text-inverted);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 30px;
}

.chapter-subtitle-spaced {
	letter-spacing: 0.1em;
}




.series-buttons {
	height: 80px;
	margin: 30px auto 15px;
	max-width: 650px;
}

.button {
	width: 170px;
	height: 50px;
	line-height: 50px;
	
	font-family: 'Dosis', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	
	color: var(--col-text-inverted);
	background-color: var(--col-header-bg);
	transition: 1.1s;
	
	border: none;
}

.button:hover {
	background-color: var(--col-header-button);
	border: none;
	transition: 0.5s ease-out;
}

.left {
	float: left;
}

.right {
	float: right;
}

.icon {
	font-family: 'FontAwesome'
}





figure {
	text-indent: 0px;
	text-align: center;
	margin: 30px 50px 35px;
}

figure img {
	border-radius: 6px;
}

figure a img:hover {
	opacity: 0.6;
	transition: 0.3s;
	cursor: zoom-in;
}

figcaption {
	margin-top: 4px;
	text-align: center;
	line-height: 170%;
	font-size: 16px;
}

figcaption a {
	color: var(--col-accent);
	text-decoration: none;
	transition: 0.5s;
}
figcaption a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

figcaption p {
	font-size: 16px;
}





table {
	font-family: sans-serif;
}

table a {
	transition: 0.3s;
	color: var(--col-accent);
	text-decoration: none;
}
table a:hover {
	transition: 0.3s;
	color: var(--col-higlight);
}

th, td {
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

.table-discussion {
	font-family: 'Alegreya', serif;
	line-height: 160%;
}
.table-discussion td:first-child {
	text-align: right;
	width: 200px;
}

.table-arcology-stats {
	margin: auto;
	width: 70%;
	font-size: 14px;
	margin-bottom: 15px;
}
.table-arcology-stats thead {
	background-color: var(--col-bg-box);
}
.table-arcology-stats th, .table-arcology-stats td {
	padding: 5px;
}
.table-arcology-stats tr {
	border-bottom: 1px solid var(--col-bg-box);
}
.table-arcology-stats a {
	transition: 0.5s;
	color: var(--col-accent);
	text-decoration: none;
}
.table-arcology-stats a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

li {
	padding: 8px 25px 8px 25px;
	font-size: 22px;
	line-height: 190%;
	hyphens: auto;
}

ol, ul {
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 175%;
}


ol ol {
	margin: 0 0 0 20px;
}

ol a {
	transition: 0.5s;
	color: var(--col-accent);
	text-decoration: none;
}

ol a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

ul a {
	transition: 0.5s;
	color: var(--col-accent);
	text-decoration: none;
}

ul a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

hr {
	border: 0;
	height: 1px;
	width: 100%;
	color: #b8bec7;
	background-color: var(--col-bg-box);
	margin: 35px 0;
	text-indent: 0;
}


mark {
	background-color: var(--col-quote);
	color: var(--col-quote-text);
	/* padding: 0 3px; */
	box-shadow: 5px 0 0 var(--col-quote), -5px 0 0 var(--col-quote);
	transition: 0.3s ease;
}
mark:hover {
	background-color: var(--col-bg);
	color: var(--col-text);
	box-shadow: none;
}
mark.noviz {
	background-color: var(--col-bg);
	color: var(--col-text);
	box-shadow: none;
}
mark.clickable {
	cursor: pointer;
}
mark.clickable::before {
	content: '\F028';

	margin-right: 8px;
	margin-left: 4px;

	position: relative;
	top: -2px;
	
	font-size: 65%;
	font-family: 'FontAwesome';
}




a.reference-author::before {
	content: '\F007';

	margin-right: 8px;
	margin-left: 4px;

	position: relative;
	top: -0px;
	
	font-size: 85%;
	font-family: 'FontAwesome';
}
a.reference-book::before {
	content: '\F02D';

	margin-right: 8px;
	margin-left: 4px;

	position: relative;
	top: -0px;
	
	font-size: 85%;
	font-family: 'FontAwesome';
}
a.reference-text::before {
	content: '\F15C';

	margin-right: 8px;
	margin-left: 4px;

	position: relative;
	top: -0px;
	
	font-size: 85%;
	font-family: 'FontAwesome';
}

a.reference-author.noviz::before {
	content: '';
	margin: 0;
}a.reference-book.noviz::before {
	content: '';
	margin: 0;
}a.reference-text.noviz::before {
	content: '';
	margin: 0;
}

a.noviz {
	color: var(--col-text) !important;
	cursor: default;
	pointer-events: none;
}
a.noviz:hover {
	color: var(--col-text) !important;
	cursor: default;
	pointer-events: none;
}



blockquote mark:hover {
	background-color: var(--col-bg-box);
	color: var(--col-text);
	box-shadow: none;
	transition: 0.3s ease;
}

dfn {
	background-color: #dcdfe5;
	padding: 0 4px;
	border-radius: 5px;
	cursor: pointer;
}
dfn::after {
	content: " *";
}


i em {
	font-style: normal;
}

.chapter-header hr {
	margin:  20px 0;
}

.editors-note {
	margin-left: 9px;
	margin-top: 10px;
	background-color: #f2f2f2;
	margin-bottom: 20px;
	border-left: 2px solid lightgray;
	padding: 5px 45px 5px 45px;
	font-size: 18px;
	text-indent: 0;
	line-height: 200%;
}
.editors-note h4 {
	margin-bottom: 15px;
	font-family: "Dosis";
	font-weight: 500;
	font-size: 22px;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.editors-note p {
	text-indent: 0;
	font-size: 18px;
}

.editors-note mark:hover {
	background-color: #f2f2f2;
	color: black;
	box-shadow: none;
	transition: 0.3s ease;
	cursor: none;
}

.editors-note .icon {
	width: 30px;
	text-align: center;
	margin-left: -30px;
	padding-right: 5px;
}



#stats {
	text-align: center;
	margin: 10px auto;
	width: 400px;
	color: gray;
	/* display: grid; */
	/* grid-template-columns: 1fr 1fr; */
}

.stat-box {
	/* background-color: #ededed; */
	margin: 5px;
	padding: 5px;
}

#upvote-button {
	cursor: pointer;
	padding-left: 2px;
	font-family: 'FontAwesome';
	transform: scale(1.0, 1.0);
}

#upvote-button:hover {
	color: #9e64ed;
}





#toc {
	margin: 30px 0 60px;
	text-indent: 0;
}

#toc table {
	width: 100%;
	border-collapse: collapse;
}
#toc table tr:hover {
	background-color: var(--col-bg-box);
	transition: 0.3s;
}
#toc table tr td {
	vertical-align: middle;
	padding-top: 5px;
	padding-bottom: 5px;
}
#toc table tr td:first-child {
	font-family: 'Alegreya', serif;
	font-size: 13px;
	text-align: right;
	width: 25%;
	padding-right: 20px;
}
#toc table tr td:last-child {
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em !important;
	padding-left: 20px;
}
#toc table tr td:last-child:hover {
	/* cursor: pointer; */
}

#toc table a {
	color: var(--col-accent);
	text-decoration: none;
	transition: 0.3s;
}
#toc table a:hover {
	color: var(--col-highlight);
}

.toc-title {
	border-top: 1px solid #b8bec7;
	border-bottom: 1px solid #b8bec7;
	margin-bottom: 20px;
	padding: 10px 0;
	text-align: center;
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em !important;
	text-indent: 0;
}

.toc-chapter-description {
	font-family: 'Alegreya', serif;
	font-size: 14px;
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0;
	line-height: 130%;
	text-indent: 0;
	margin-bottom: 8px;
	margin-top: 2px;
}
ol.toc-chapter-description li {
	padding: 0;
}



#toc-v2 {
	width: 100%;
	text-align: center;
}


#toc-v2 h1 {
	border-top: 1px solid var(--col-bg-box);
	border-bottom: 1px solid var(--col-bg-box);
	margin-bottom: 20px;
	padding: 10px 0;
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em !important;
	text-indent: 0;
}

#toc-list-container {
	display: grid;
	justify-content: center;
}

#toc-v2 a {
	transition: 0.3s;
	border-radius: 7px;
}
#toc-v2 a:hover {
	background-color: var(--col-bg-box);
}
#toc-v2 a:hover > .toc-chapter-title {
	color: var(--col-highlight);
}

.toc-chapter-link {
	text-decoration: none;
	display: grid;
	grid-template-columns: 120px 1fr;
	align-items: center;
}

.toc-chapter-link-single-line {
	text-decoration: none;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}

.toc-chapter-number {
	padding: 6px 5px 4px;
	color: var(--col-text);
	font-family: 'Alegreya', serif;
	font-size: 14px;
	text-indent: 0px;
}

.toc-chapter-title {
	padding: 6px 20px 4px;
	color: var(--col-accent);
	font-family: 'Dosis', Verdana, sans-serif;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em !important;
	line-height: 120%;
	transition: 0.3s;
	text-indent: 0px;
	text-align: left;
}

.toc-chapter-link-single-line .toc-chapter-title {
	text-align: center;
}




.foreign {
	font-style: italic;
}

.roman-numerals {
	font-feature-settings: 'ss01';
}

.mirrored {
	-moz-transform:    scaleX(-1); /* Gecko */
	-o-transform:      scaleX(-1); /* Opera */
	-webkit-transform: scaleX(-1); /* Webkit */
	transform:         scaleX(-1); /* Standard */
	filter: FlipH;                 /* IE 6/7/8 */
}

.aside {
	color: rgb(180, 180, 180);
	font-family: 'Roboto mono', monospace;
	padding: 0 5px;
}



audio.anchor-to-top {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0 auto;
	box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.25);
	border: none;
	border-radius: 0px;
	/*background-color: var(--col-bg-box);*/
}

video.anchor-to-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 200px;
	height: 200px;
	margin: 0 auto;
	box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.25);
	border: none;
	background-color: var(--col-bg);
}

#videoWrapperId.anchor-to-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 350px;
	margin: 0 auto;
	border: none;
	background-color: var(--col-bg);
}

.ytEmbeddedVideo {
	margin-bottom: 20px;
	width: 700px;
	height: 600px;
	max-height: none;
}


.footnote-list {
	hyphens: auto;
}

.footnote-list li p {
	text-indent: 0;
}

.footnote {
	text-indent: 0;
	margin: 14px 0;
	line-height: 130%;
}

.footnote-link {
	vertical-align: super;
	font-size: 50%;
	line-height: 0;
	font-family: 'Roboto Mono', monospace;

	background-color: var(--col-bg-box);
	color: var(--col-text-inverted);
	border-radius: 10px;
	padding: 2px 6px;
	margin: 0px 3px 0px 2px;

	transition: 0.3s ease-out;
}
.footnote-link:hover {
	background-color: var(--col-accent);
	color: var(--col-text-inverted) !important;
}

blockquote .footnote-link {
	background-color: var(--col-bg-box-bg);
}

.bibliography-list {
	list-style: none;
}
.bibliography-list li {
	padding: 5px 8px;
}
.bibliography-list li p {
	margin-left: 40px;
	text-indent: -40px;
	font-size: 16px;
	line-height: 150%;
}
.bibliography-list li p:not(:first-of-type)::before {
	content: "\2014\2014 ";
	letter-spacing: -0.25px;
}





#playback-speed-dialog {
	margin: 20px;
	padding: 15px 20px;
	position: fixed;
	bottom: 0;
	right: 0;
	display: none;

	box-shadow: 0 0 20px 0px rgba(0, 0, 0, .2);
	background-color: var(--col-bg-box);
	border-radius: 4px;

	font-family: 'Roboto Mono', monospace;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
}






.timestamped-lecture {
	border-collapse: collapse;
	width: 775px;
	margin-left: -75px;
}

.timestamped-lecture tr {
	padding: 0;
}

.timestamped-lecture tr td:first-child {
	font-family: 'Roboto Mono', monospace;
	padding-top: 13px;
	font-size: 11px;
	width: 75px;

	color: var(--col-accent);
	transition: 0.3s;
	text-align: center;
}
.timestamped-lecture tr td > * {
	display: block;
}
.timestamped-lecture tr td:first-child span:hover {
	color: var(--col-highlight);
	cursor: pointer;
}

.timestamped-lecture tr td {
	padding: 0;
}

.timestamped-lecture tr td:last-child p {
	margin: 0px;
	hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	
	font-family: 'Alegreya', serif;
	line-height: 190%;
	text-indent: 50px;
	font-size: 22px;
	letter-spacing: 0;
}
.timestamped-lecture tr td:last-child p.no-indent {
	text-indent: 0;
}
.timestamped-lecture tr td:last-child a {
	color: var(--col-accent);
	text-decoration: none;
	transition: 0.3s;
}
.timestamped-lecture tr td:last-child a:hover {
	color: var(--col-highlight);
}

.timestamped-lecture tr td:last-child blockquote {
	margin-left: 9px;
	margin-top: 10px;
	background-color: var(--col-bg-box);
	margin-bottom: 20px;
	border-left: 2px solid var(--col-bg-box-bg);
	padding: 5px 38px 5px 38px;
	font-family: 'Alegreya', serif;
	font-size: 18px;
	line-height: 200%;
}
.timestamped-lecture tr td:last-child blockquote p {
	font-size: 18px;
	line-height: 200%;
}
.timestamped-lecture tr td:last-child blockquote a {
	transition: 0.5s;
	color: var(--col-accent);
	text-decoration: none;
}
.timestamped-lecture tr td:last-child blockquote a:hover {
	transition: 0.5s;
	color: var(--col-highlight);
}

.timestamped-lecture tr td:last-child ul {
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 175%;
	font-family: 'Alegreya', serif;
}

.timestamped-lecture tr td figcaption {
	font-family: 'Alegreya', serif;
}

.discussion-speaker {
	color: var(--col-text);
}
.discussion-speaker:hover {
	color: var(--col-text) !important;
	cursor: default !important;
}

.discussion-headshot {
	/*width: 50px;*/
}

.discussion-headshot img {
	object-fit: cover;
	margin-top: 4px;
	margin-bottom: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	filter: grayscale(100%);
}

.interviewer-question {
	background-color: var(--col-bg-box);
	border-radius: 5px;
}
.interviewer-question tr td {
	padding: 4px;
}

.interviewer-question td:first-child {
	border-radius: 7px 0px 0px 7px;
	padding-top: 24px !important;
}

.interviewer-question td:last-child {
	border-radius: 0px 7px 7px 0px;
	padding: 10px 20px 10px 0px;
}

/*tr.interviewer-question + tr td {
	padding-top: 18px;
}
tr.interviewer-question + tr td:first-child {
	padding-top: 30px;
}*/


.chinese-big {
	font-size: 80px;
	text-align: center;
	text-indent: 0;
	font-family: sans-serif;
}

.external-content {
	width: 100%;
	min-height: 0px;
	box-sizing: border-box;
}

.external-content-header {
	width: 100%;
	background-color: #d4d4d4;
	color: black;
	text-align: center;
	font-size: 18px;
	padding: 5px 0 10px 0;
}
.external-content-header a {
	font-family: 'Roboto Mono', monospace;
	font-size: 14px;
	color: black;
	text-decoration-style: dotted;
	padding-top: 2px;
}
.external-content-header a:hover {
	text-decoration-style: solid;
}





#notification-audio-incompatibility {
	display: none;
	padding: 10px;
	background-color: var(--col-bg-box);
	color: var(--col-text);
	margin-top: -26px;
	margin-bottom: 25px;
	font-family: 'Roboto Mono', monospace;
	font-size: 14px;
	text-align: center;
}

#notification-audio-incompatibility p {
	font-size: inherit;
}

.red {
	color: red;
}







.talk, .talk-secondary {
	--meta-column-width: 80px;
	--column-gap: 10px;
	--meta-total-width: calc(var(--meta-column-width) + var(--column-gap));
	box-sizing: border-box;
	display: grid;
	grid-template-columns: var(--meta-total-width) 1fr;
	/*grid-column-gap: 15px;*/
	width: calc(700px + var(--meta-total-width));
	margin-left: calc(var(--meta-total-width) * -1);
}

.new-speaker {
	margin-top: 1.5rem;
}
.new-speaker + p, .new-speaker + div {
	margin-top: 1.5rem;
}

.talk-secondary {
	background-color: var(--col-bg-box);
	border-radius: 7px;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 7px 15px 7px 0px;
}

.talk-meta {
	padding-top: 14px;
	padding-bottom: 14px;
	margin-right: 10px;
}

.talk-timestamp, .talk-name {
	font-size: 11px;
	line-height: 130%;
}

.talk-timestamp {
	text-indent: 0;
	text-align: center;
	font-family: 'Roboto Mono', monospace;
	color: var(--col-accent);
	transition: 0.3s ease-out;
}
.talk-timestamp:hover {
	color: var(--col-highlight);
	cursor: pointer;
}

.talk-name {
	text-indent: 0;
	text-align: center;
	font-family: 'Roboto Mono', monospace;
}

.talk-avatar {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-top: 7px;
	object-fit: cover;
	border-radius: 50%;
	filter: grayscale(100%);
}

.talk p.drop:first-letter {
	color: var(--col-accent);
	padding: 0 .3rem;
	margin: 0 .3rem 0 0;
	font-family: 'Dosis', sans-serif, monospace !important;
	font-weight: 800;
	text-transform: uppercase;

	font-size: 7.5rem;
	float: left;
	line-height: 1;
}




.message-banned-media {
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;

	background-color: tomato;
	color: white;
	font-size: 20px;
	text-align: center;
	font-family: 'Roboto Mono', monospace;
}





@media screen and (max-width: 860px) {

	main {
		max-width: 96vw;
		margin: 0 2vw;
	}

	p {
		font-size: 20px;
		text-indent: 0px;
	}

	blockquote p {
		font-size: 16px;
		line-height: 150%;
	}

	.timestamped-lecture {
		width: 100%;
		margin-left: 0px;
	}
	.timestamped-lecture tr td:last-child p {
		font-size: 16px;
	}
	.timestamped-lecture td:first-child {
		padding-right: 10px;
	}
	.timestamped-lecture tr td:last-child blockquote {
		font-size: 14px;
		margin-left: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
	.timestamped-lecture tr td:last-child blockquote p {
		font-size: 14px;
		line-height: 175%;
	}

	.talk, .talk-secondary {
		margin-left: 0px;
		font-size: 16px;
		width: auto;
		display: block;
	}

	.talk-secondary {
		padding: 7px 15px;
	}

	.talk-meta {
		padding-top: 20px;
	}

	.talk-secondary .talk-meta {
		padding-top: 7px;
	}

	.talk-avatar {
		width: 25px;
		height: 25px;
		margin-top: 4px;
	}

/*	.discussion-headshot {
		width: 30px;
	}
	.discussion-headshot img {
		width: 30px;
		height: 30px;
	}*/

	.document-body {
		max-width: 100%;
	}

	.docHeader {
		padding: 20px 1vw;
	}

	.docHeaderContainer {
		max-width: 100%;
	}

	.docHeaderTitle {
		font-size: 18px;
	}

	.docAuthorImage {
		width: 75px;
	}

	.docAuthorImage img {
		width: 75px;
		height: 75px;
	}

	#stats {
		width: 100%;
	}

	.ytEmbeddedVideo {
		max-width: 100%;
		max-height: 300px;
	}
}