.dualContent {
	display: flex;
}

.leftVersion,
.rightVersion  {
	flex: 1 1;      /* flex-basis omitted which defaults to 0 */
}

.leftVersion {
	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: space-between; */
	padding-right: 1em;
}

.rightVersion {
	display: block;
	position: relative;
}

.paragraphMarker {
	font-weight: bold;
	font-size: small;
	display: inline;
	color: teal;
}

.content {
	padding-right: 0;
	margin-right: 0;
}

@media (min-width:84em) {
	.content {
		padding-left: 0;
		margin-left: 0;
	}
}

.close {
    position: absolute;
	z-index: 3;
	right: 0;
	color: grey;
	font-size: 1.25em;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
}

.close:hover {
	color: black;
}

details {
	 position: absolute;
	 border: 1px solid;
	 border-radius: 0.25em;
	 padding: 2px 5px;
	 z-index: 10;
	 background-color: whitesmoke;"
}

ol {
}