.widthWrapper {
	overflow: revert;
}
	
.articleBox {
	position: relative;
	height: 100%;
}

.sticky {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
}

.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;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1em;
}

.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: 0 5px;
	 z-index: 10;
	 /* font-size: small; */
	 background-color: whitesmoke;
}

ol.versions {
	list-style-type: none;
	margin-block-start: 0.25em;
	margin-block-end: 0.25em;"
}

.buttonBox + p {
	padding-bottom: 0;
}

/* Balances right side as dropdown details box is out of the flow */
.spacer {
	margin-bottom: 3em;
}