body {
	font-family: "SegoeUI", "Segoe UI", "SFUIText-Light", "HelveticaNeue-Light", sans-serif, "Droid Sans Fallback";
	font-size: 1.02em;
	padding: 0;
	line-height: 22px;
	word-wrap: break-word;
	margin: 0;
}
section {
	margin: 0 2em;
}
footer {
	background-color: rgb(10, 14, 17);
	min-height: 150px;
	margin: 0;
}

img {
	max-width: 100%;
	max-height: 100%;
}

a {
	color: #4080D0;
	text-decoration: none;
	font-weight: bold;
}

a:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 1px solid -webkit-focus-ring-color;
	outline-offset: -1px;
}

hr {
	border: 0;
	height: 2px;
	border-bottom: 2px solid;
}

h1 {
	padding-bottom: 0.3em;
	line-height: 1.2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	font-size: 2em;
}

h1, h2, h3 {
	font-weight: bold;
}

h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
	font-size: inherit;
	line-height: auto;
}

a:hover {
	color: #4080D0;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
}

table > thead > tr > th {
	text-align: left;
	border-bottom: 1px solid;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
	padding: 5px 10px;
	min-width: 4em;
}

table > tbody > tr + tr > td {
	border-top: 1px solid;
}

blockquote {
	margin: 0 7px 0 5px;
	padding: 5px 16px 5px 10px;
	border-left: 5px solid;
}
blockquote > p {
	font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
	font-size: 1.1em;
}

code {
	font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
	font-size: 1em;
	line-height: 19px;
}
span.var {
	font-weight: bold;
	font-size:1.02em;
	color: rgb(47, 107, 219);	
}
span.string {
	font-weight: bold;
	font-size:1.02em;
	color: rgb(222, 115, 53);
}
span.statement {
	font-weight: bold;
	font-size:1.02em;
	color: rgb(168, 4, 160);	
}

pre code span {
	font-weight: bold;
	font-size:1.02em;
	color: firebrick;
}

body.wordWrap pre {
	white-space: pre-wrap;
}

.mac code {
	font-size: 12px;
	line-height: 18px;
}

pre:not(.hljs),
pre.hljs code > div {
	padding: 16px;
	border-radius: 3px;
	overflow: auto;
}

pre {
	background-color: #f8f8f8;
	border: 1px solid #cccccc;
	border-radius: 3px;
	overflow-x: auto;
	white-space: pre-wrap;
	overflow-wrap: break-word;
}

pre:not(.hljs) {
	padding: 23px;
	line-height: 19px;
}

blockquote {
	background: rgba(127, 127, 127, 0.1);
	border-color: rgba(0, 122, 204, 0.5);
}

.emoji {
	height: 1.4em;
}

/* for inline code */
:not(pre):not(.hljs) > code {
	color: #C9AE75; /* Change the old color so it seems less like an error */
	font-size: inherit;
	font-weight: bold;
	font-size:1.1em;
	color: firebrick;	
}
span.ActionButton {
	/* Vertical align text using line-height = regular height */
	text-align: center;
	border-radius: 10px;
	padding: 5px;
	
}
span.Added, 
span.Removed,
span.Fixed,
span.Updated {
	text-align: center;
	font-size: 0.8em;
	color: azure;	
}
span.Added::after {
	border: 1px solid;
	border-radius: 10px;	
	padding: 3px 5px;
	background-color: rgb(6, 113, 6);
	content: 'Added';
}
span.Removed::after {
	border: 1px solid;
	border-radius: 10px;	
	padding: 3px 5px;	
	background-color: rgb(150, 10, 10);
	content: 'Removed';	
}
span.Fixed::after {
	border: 1px solid;
	border-radius: 10px;	
	padding: 3px 5px;	
	background-color: #bc1cf1;
	content: 'Fixed';	
}
span.Updated::after {
	border: 1px solid;
	border-radius: 10px;	
	padding: 3px 5px;	
	background-color: #4682B4;
	content: 'Updated';	
}