<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a.headerlink {
	padding-left: 5px;
}

section#parameters p {
	margin-left: 40px;
}

.docs_content_column h2 {
	margin-top: 55px;
}

.docs_content_column h3 {
	margin-bottom: 0px;
}

img.img-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

table.docTable, table.doxtable {
	border: 2px solid /*#000000*/;
	background-color: #F3F3F3;
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

table.docTable p, table.doxtable p {
	margin: 0px;
}

table.docTable td, table.docTable th, table.doxtable td, table.doxtable th {
	border: 1px solid #AAAAAA;
	padding-top: 8px;
	padding-left: 7px;
	padding-right: 2px;
	padding-bottom: 8px;
}

table.docTable tr:nth-child(even), table.doxtable tr:nth-child(even) {
	/*background: #EBDADA;*/
	background: #cdcdcd;
}

table.docTable thead, table.doxtable thead, table.doxtable tbody th {
	/*background: #ED1C24;*/
	background: #000000;
}

table.docTable thead th, table.doxtable thead th, table.doxtable tbody th {
	font-size: 16px;
	font-weight: bold !important;
	color: #FFFFFF;
	text-align: left;
	border-left: 1px solid #000000;
	height: 30px;
}
table.docTable thead th:first-child, table.doxtable thead th:first-child {
	border-left: none;
}

table.docTable thead em {
	font-style: normal;
}

table.docTable tfoot td, table.doxtable tfoot td {
	font-size: 13px;
}
table.docTable tfoot .links, table.doxtable tfoot .links {
	text-align: right;
}
table.docTable td.text-center, table.docTable th.text-center {
	text-align: center;
}

table.doxtable td, table.doxtable th {
	padding-left: 5px;
	padding-top: 19px;
	padding-bottom: 19px;
}

table.scrollable-table {
	overflow-x: scroll;
	position: relative;
	display: block;
}
table.scrollable-table::before {
	content: "Scroll &gt;&gt;&gt;&gt;";
	font-weight: bold;
	animation-name: highlight-bounce;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 10;
	color: black;
	background-color: #dcdcdcbf;
	padding-left:5px;
	padding-right:5px;
}

table.scrollable-table:hover::before {
	display: none;
}

div.scrollable-table table {
	overflow-x: scroll;
	position: relative;
	display: block;
}
div.scrollable-table table::before {
	content: "Scroll &gt;&gt;&gt;&gt;";
	font-weight: bold;
	animation-name: highlight-bounce;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 10;
	color: black;
	background-color: #dcdcdcbf;
	padding-left:5px;
	padding-right:5px;
}

div.scrollable-table table:hover::before {
	display: none;
}

@keyframes highlight-bounce {
	0% {
		margin-left:0px
	}
	20% {
		margin-left:5px
	}
	40% {
		margin-left:0px
	}
	80% {
		margin-left:0px
	}
}

.highlight {
	position: relative;
}

.code-header{
	background-color: #FFF0;
	width: fit-content;
	padding-bottom: 3px;
	padding-top: 3px;
	position: absolute;
	z-index:10;
	opacity:0%;
	transition: opacity 0.3s ease-out;
	right: 15px;
}

.code-header p {
	margin: 0px;
	padding: 0px;
	padding-left: 0px;
	color: white;
	padding-left: 10px;
	font-size: 0.9em;
	
}

.code-header + pre[class*="language-"] {
	margin-top: 0em;
	border-radius: 0em;
}

.code-header .copy-button-wrapper a.copy-button-link{
	padding: 1px 12px;
	text-align: center;
	transition: all .3s;
	display: inline-block;
	background-color: #FFF0;
	border-radius: 3px;
	border-color: white;
	border-style: solid;
	border-width: 1.5px;
	color: white;
	cursor: pointer;
	
}

div[class*="highlight-"]:hover div.code-header {
	opacity: 100%;
	transition: opacity 0.3s ease;
}

.code-header .copy-button-wrapper a.copy-button-link:hover{
	background-color: #64646478;
	color: white;
}

.code-header .copy-button-wrapper{
	margin-top:5px;
}


.code-header .copy-button-content-wrapper {
	display: flex;
	justify-content: center;
	-webkit-align-content: center;
	display: ms-flexbox;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
}

.code-header .copy-button-icon {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}

.code-header .copy-button-text {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
	display: inline-block;
	font-size: 0.9em;
}

.code-header~pre[class*="language-"]{
	margin-top: 0;
	border-radius: 0px;
}

/*.code-header ~ pre code {
	display: flex;
}*/

.code-copied{
	padding-right: 2px;
	margin-top: 5px;
	opacity: 0;
	color: white;
	font-size: 1.2em;
}

.code-copied p {
	margin-top: 2px;
	margin-bottom: 2px;
}

.code-copied.animated{
	opacity: 1;
	-webkit-animation: fadeinout 2s linear forwards;
		animation: fadeinout 2s linear forwards;
}

@-webkit-keyframes fadeinout {
	0%,100% { opacity: 0; }
	50% { opacity: 1; }
}

@keyframes fadeinout {
	0%,100% { opacity: 0; }
	50% { opacity: 1; }
}


#doc-toc {min-width:200px;}

/* Hiding stray BR at top of LHS */
#lhsmenu &gt; div &gt; div &gt; div.header.doctitle &gt; li &gt; br
{display:none;}

#lhsmenu &gt; div &gt; div &gt; div.header.doctitle &gt; li &gt; span.toc_h.first-title &gt; svg
{
	/*padding-left: 5px;*/
	margin-top: 0px;
	/*padding-right: 3px;*/
}

#lhsmenu &gt; div &gt; div &gt; div.header.doctitle &gt; li &gt; span.toc_h.first-title
{margin-bottom:-2px;}

.doc-toc .header span{
		display: flex;
		/*white-space: pre-wrap;*/
		white-space: -moz-pre-wrap;
		white-space: -pre-wrap;
		white-space: -o-pre-wrap;
		word-wrap: break-word;
}

.doc-toc li {
	display: flex;
	/*white-space: pre-wrap;*/
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}

.doc-toc a.reference.internal
{
	flex: 1;
}

.doc-toc .t_b
{
	padding-left:20px;
}

.doc-toc .toc_hover:hover, .doc-toc .toc_h:hover
{
 /* background-color: #fff;
	border-radius:2px;*/
}


.doc-toc li.current&gt;.toc_hover:hover, .doc-toc li.current&gt;.toc_h:hover
{
		background-color: #ed1c24 !important;
	
}

.doctitle &gt; li &gt; span.toc_h.first-title &gt; a
{
	padding-left:5px;
	margin-top: -5px;
		font-size: 16px;
	margin-left:5px;
}

/* "all manuals"*/
.header.doctitle &gt; li &gt; span:nth-child(1) &gt; a
{
	display:none;
	
}

header.doctitle &gt; li &gt; br
{display:none;}

div.header.doctitle &gt; li &gt; br
{display:none;}

.doc-toc .doctitle a b {
		font-size: 1.2em;
	padding-left:3px;
}


.doc-toc .toc_hover, .doc-toc .toc_h
{
		overflow: hidden;
	/*padding-right:15px;*/
	/* fix italic bug */
	padding-right:1px;
	margin-right:-1px;
		white-space: nowrap;
		text-overflow: ellipsis;
	/*padding-top:2px;*/
}

.doc-toc .header li {
	flex-direction: column;
}


.container {
		width:104%;
		border:0px solid #d3d3d3;
}

.container div {
	padding-right:1px;
		 
}


.doc-toc .container .header .current {
		 background-color:#ed1c24 ; border-radius:2px;
		 color: #ffffff !important;
		 padding: 2px;
	 /*margin-bottom:-2px;*/
}

.sphinx-tabs {
	width:100%;
}

.doc-toc .container {
	word-break: break-all;
}

.doc-toc .fas {
	color: #000000;
	/*padding-left:5px;*/
	padding-left:0px;
	margin-left: 5px;
	flex-shrink:0;
	margin-top:2px;
}

.new_toc_menu .doc-toc .fas {
	padding-left:0px !important;
	margin-top:0px !important;
}





.doc-toc .reference:hover {

background-color: #fff;
		border-radius: 2px;
		padding-left: 2px;
		padding-right: 2px;
	transition: all .3s;
}

.doc-toc a.current:hover {
	background-color: transparent;
}

.doc-toc .reference {
	
	display:block;
	margin-top: 0px;
	margin-left:5px;
	padding-left: 2px;
	padding-right: 2px;
	overflow-x:hidden;
	text-overflow:ellipsis;
	/*margin-right: -5px;*/
	/*margin-top:-2px;*/
		
}

#lhsmenu &gt; div &gt; div &gt; div.content.opened.current &gt; ul:first-child, #lhsmenu &gt; div &gt; div &gt; div.content.opened &gt; ul:first-child  {
	margin-top: -5px;
}

.first-title:after {
    
    margin-top: -5px !important;
    margin-left: 5px;
}

.doc-toc li {
		margin-left:5px;
}

.doc-toc .t_b:last-child {margin-bottom:2px;}

.doc-toc li:last-child {
	margin-bottom:2px;
}

.container .header {
 
		padding: 0px;
		cursor: pointer;
		/*margin-top:5px;*/
		margin-bottom:5px;
	/*margin-right:-15px;*/

}
.container .content {
		display: none;
		padding-left : 5px;
		padding-top :0px;
		padding-bottom :0px;
		padding-right: 0px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: clip;
		overflow:visible;
}

.doc-toc li {
		 list-style-type: none;
		
}



.container .opened {
		margin-bottom: 0px !important;
		
}

.doc-toc li {
	 /* width:100% !important;*/
		padding-right: 0px !important;
	color:black !important;
		font-weight:400;
}



.doc-toc a {color:black !important;}

.doc-toc li a {color:black !important;
						font-size: 14px ;
						letter-spacing: -0.02em !important;
}

/* Main Level */
.doc-toc ul{
	/*width: 95%;*/
	padding-left:2px;
	
 /* margin-bottom:5px;*/
		/*margin-top:-5px;*/
	
	list-style-type: none;

}

#lhsmenu div:not(.new_toc_menu) &gt; ul {
	width: 95%;
}

.search-form {
	padding-left:10px;
}

.doc-toc ul.current {
/*	padding-bottom: 5px;*/
/*	padding-top:3px;*/
}

/* Second Level */
.doc-toc &gt; ul &gt; ul{
	padding-left:5px;
		margin-bottom:5px;
		margin-top:-5px;
}

/* Third Level */
.doc-toc &gt; ul &gt; ul &gt; ul{
	padding-left:5px;
		margin-bottom:5px;
		margin-top:-5px;
}

/* Fourth Level */
.doc-toc &gt; ul &gt; ul &gt; ul &gt; ul {
	padding-left:5px;
		margin-bottom:5px;
		margin-top:-5px;
}


/* Sphinx tabs */
.group-tab:hover, .sphinx-tabs-tab:hover {
	cursor: pointer;
}

.sphinx-tabs-panel {
	padding-right:1em !important;
}

.sphinx-tabs-tab {
	font-family: inherit !important;
	color: #27282b !important;
}

@media (prefers-color-scheme: dark) {
	.rst-content .sphinx-tabs-tab {

		color: #dedede !important;
	}

	.rst-content .sphinx-tabs-panel {
		background: #0e0f10  !important;
	}

	.rst-content .sphinx-tabs-tab[aria-selected="true"] {
		background:#0e0f10 ;
		border-bottom: 1px solid #0e0f10 ;
	}
}

.sphinx-tabs-tab {
	border-radius: 5px 5px 0 0 !important;
}

.wy-side-nav-search, .wy-nav-top {
    background: #ffffff;
    }

.wy-nav-side {
    background: #000000;
    }

.wy-menu-vertical header, .wy-menu-vertical p.caption {
    color: #ed1c24;
    }

ueb-blueprint {
    margin-bottom: 10px;
}

.mobile-blueprint-image {  
    display: none !important;  
}  
/* CSS for screens with width less than 1025 pixels */  
@media (max-width: 1025px) {  
    /* Hide the &lt;ueb-blueprint&gt; tag */  
    ueb-blueprint {  
      display: none !important;  
    }  
    .blueprint-image-fallback{
      display:none !important;
    }
    /* Show the PNG image */  
    .mobile-blueprint-image {  
      display: block !important;  
    }  
  }  

/* container backgrounds */

/*
.toct-1 {
	background-color:#dcdcdc;
}

.toct-2 {
	background-color:#cbcbcb;
}

.toct-3 {
	background-color:#bababa;
}

.toct-4 {
	background-color:#a9a9a9;
}

.toct-5 {
	background-color:#989898;
}


.toct-6 {
	background-color:#989898;
}


.toct-7 {
	background-color:#989898;
}


.toct-8 {
	background-color:#989898;
}*/

.page-content, .current  {
	/*width: 100%;*/
	/*width: 97%;*/
}

/*.new_toc_menu .current,*/ .new_toc_menu {
	width:inherit;
}

.docs_content_column, .docutils {
	width: 100%;
}



.current.level-1 {
	background-color: #dcdcdc;
}

.current.level-2 {
	background-color: #cbcbcb;
}

.current.level-3 {
	background-color: #bababa;
}

.current.level-4 {
	background-color: #a9a9a9;
}

.current.level-5 {
	background-color: #989898;
}

.current.level-6 {
	background-color: #989898;
}

.current.level-7 {
	background-color: #989898;
}

.current.level-8 {
	background-color: #989898;
}

/* centering solitary top level index items without expansions */

ul &gt; li &gt; .toc_h {
	margin-top: -5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.content.opened &gt; ul &gt; li &gt; div.toct-0 {
	width:97%;
}

div.content &gt; ul &gt; li &gt; div.toct-1 {

	width:100%;
}

div.content &gt; ul &gt; li &gt; div.toct-2 {

	width:100%;
}

div.content &gt; ul &gt; li &gt; div.toct-3 {

	width:100%;
}

div.content &gt; ul &gt; li &gt; div.toct-4 {

	width:100%;
}

div.content &gt; ul &gt; li &gt; div.toct-5 {

	width:100%;
}


div.content &gt; ul &gt; li &gt; div.toct-6 {

	width:100%;
}


div.content &gt; ul &gt; li &gt; div.toct-7 {

	width:100%;
}


div.content &gt; ul &gt; li &gt; div.toct-8 {

	width:100%;
}

.current div.content.opened &gt; ul &gt; li &gt; div.toct-0 {
	
}

div.content.opened &gt; ul &gt; li &gt; div.toct-1 {
	background-color:#dcdcdc;
	
}

.current div.content.opened &gt; ul &gt; li &gt; div.toct-2 {
	background-color:#cbcbcb;
	
}

.current div.content.opened &gt; ul &gt; li &gt; div.toct-3 {
	background-color:#bababa;
	
}

.current div.content.opened &gt; ul &gt; li &gt; div.toct-4 {
	background-color:#a9a9a9;
	
}

.current div.content.opened &gt; ul &gt; li &gt; div.toct-5 {
	background-color:#989898;
	
}


.current div.content.opened &gt; ul &gt; li &gt; div.toct-6 {
	background-color:#989898;
	
}


.current div.content.opened &gt; ul &gt; li &gt; div.toct-7 {
	background-color:#989898;
	
}


.current div.content.opened &gt; ul &gt; li &gt; div.toct-8 {
	background-color:#989898;
	
}



/* Initially hide the elements */
.content {
	max-height: 0;
	/*overflow: hidden;*/
	transition: max-height 0.5s ease-out;
}

/* Show the elements when the "opened" class is added */
.content.opened {
	max-height: 9000px; /* Adjust as needed */
	/*overflow: hidden;*/
	transition: max-height 0.5s ease-in;
}

span.toc_h.t_b &gt; a.reference.internal
{
	font-style:italic !important;
}

.oxy-search-form input:nth-of-type(1){
	width:80%;
}
.oxy-search-form input:nth-of-type(2){
	display:none;
}
.searchwp-live-search-result, .search-result-tags{
	display:flex;
}
.search-thumbnail{
	margin-right: 1rem;
	width: 100px;
	max-width: 100px;
	min-width: 100px;
}
.searchwp-live-search-results-showing{
	padding: min(max(0.84rem, calc(0.84rem + ((1vw - 0.32rem) * 0.45))), 1.2rem);
}
.searchwp-live-search-result a.search-result-title{
	white-space: break-spaces;
}
.search-thumbnail img{
	height: auto;
	max-height: 600px;
	max-width: 100%;
}

// Relevanssi AJAX search overrides

/* visual styles */

.relevanssi-live-search-results {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #fff;
	-webkit-box-shadow: 0 0 2px 0 rgba(30, 30, 30, 0.4);
	box-shadow: 0 0 2px 0 rgba(30, 30, 30, 0.4);
	border-radius: 2px;
	width: 315px;
	height: auto !important;
	min-height: 0px !important;
	max-height: 600px !important;
}

.relevanssi-live-search-no-min-chars .spinner {
	opacity: 0.3;
}

.relevanssi-live-search-result p,
.relevanssi-live-search-result-status p {
	font-size: 0.9em;
	letter-spacing: -0.02em !important;
	padding: 0.5em !important;
	margin: 0;
	border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.relevanssi-live-search-result-status p {
	font-size: 0.8em;
	padding: 0 1em;
}

.relevanssi-live-search-result a:hover {
	color: #ed1c24 !important;
}

.relevanssi-live-search-result--focused {
	background: #ddd;
}

.relevanssi-live-search-result--focused a {
	color: #000;
}

.relevanssi-live-search-result:last-of-type p {
	border-bottom: 0;
}

.relevanssi-live-search-result a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Bullet proof Screen Reader Only text */
.relevanssi-live-search-instructions {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

@keyframes relevanssi-spinner-line-fade-more {
	0%,
	100% {
		opacity: 0; /* minimum opacity */
	}
	1% {
		opacity: 1;
	}
}

@keyframes relevanssi-spinner-line-fade-quick {
	0%,
	39%,
	100% {
		opacity: 0.25; /* minimum opacity */
	}
	40% {
		opacity: 1;
	}
}

@keyframes relevanssi-spinner-line-fade-default {
	0%,
	100% {
		opacity: 0.22; /* minimum opacity */
	}
	1% {
		opacity: 1;
	}
}


@media (prefers-color-scheme: dark) {
	
	table.docTable, table.doxtable {
		background-color: #0E0F10;
	}
	
	table.docTable tr:nth-child(2n), table.doxtable tr:nth-child(2n) {
		background: #27282b;
	}
	
	.doc-toc a {
		color: #ffffff !important;
	}
	
	.doc-toc .fas::before {
		color: #ffffff !important;
	}
	
	.doc-toc .fas	{
		fill: #ffffff !important;
	}
	
	.doc-toc li a {
		color: #ffffff !important;
	}
	
	.doc-toc li a:hover {
		color: #000000 !important;
		fill: #000000 !important;
	}
	
	.doc-toc &gt; div {
		background-color: #0E0F10 !important;
	}
	
	.toc_hover i.fas, .toc_h i.fas, .toc_h svg.fas, .toc_hover svg.fas {
		color: #000000 !important;
	}
	
	.toc_hover:hover, .toc_h:hover, .toc_hover.svg:hover, .toc_h.svg:hover, doc-toc .fas:hover, .doc-toc li a:hover 
	{
		background-color: #999999 !important;
	}

	

	
	/* container backgrounds (dark) */

	.toct-1 {
		background-color:#121212 !important;
	}

	.toct-2 {
		background-color:#232323 !important;
	}
	
	.toct-3 {
		background-color:#343434 !important;
	}

	.toct-4 {
		background-color:#454545 !important;
	}

	.toct-5 {
		background-color:#565656 !important;
	}

	
	.doc-breadcrumbs div {
		color: white;
	}
	
	.doc-search input {
		color: #ffffff;
		background-color: #0e0f10;
		border-color: #0e0f10;
	}
	
	.doc-search .relevanssi-live-search-results {
		background-color: #0e0f10;
		border-color: #67686d;
		border-width: 1px;
		border-style: solid;
	}
	
	blockquote {
			background: #191919 !important;
	}
}

/* Codeblocks */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	/*color: slategray;*/
	color: #66a22e;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	/*color: #f92672;*/
	color: #c586c0;
}

.footnote p {
	font-size: 0.83em;
}

a.footnote-reference {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
	font-size: 0.83em;
}
.footnote p {
	display: inline;
}

p.katex-p {
	overflow-x: auto;
}

.imported-authors p {
	line-height: 1.7em;
}

@media (max-width: 767px) {
	table.docTable thead th, table.doxtable thead th, table.doxtable tbody th {
 	 word-break: break-word;
	}	
}
/* Pygments (native css) */
code[class*="language-"],
pre[class*="language-"] {
	color: #f8f8f2 ;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;
	overflow:auto;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Fixing color of links surrounding codesnippets */
a code.codesnippet {
	/*color: var( --e-global-color-primary );*/
	text-decoration: underline;
}

a code.codesnippet:hover {
	/*color: var( --e-global-color-dc3bdd9 );*/
	color: var( --e-global-color-primary );
}

/* Styling for page TOCs */
.doc-toc a.current {
	color: white !important;
	background-color: #ed1c24;
    border-radius: 2px;
    color: #ffffff !important;
    padding: 2px;
    /* margin-bottom: -2px; */
}

.doc-toc .__mPS2id {
	font-style: italic;
}

span.activeyy &gt; a {
	font-weight:800;
	
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em;
	font-size: 14px;
}

pre[class*="language-"] a {
	color: white !important;
}

:not(pre) &gt; code[class*="language-"],
pre[class*="language-"] {
	background: #272822;
}

#code &gt; div &gt; div &gt; pre &gt; code &gt; a:nth-child(100) &gt; spanpre { line-height: 125%; }
/*
td.linenos .normal { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #6e7681 !important; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #6e7681 }*/
.highlight { background: #0d1117; color: #e6edf3;  }
.sphinx-tabs-panel &gt; div &gt; .highlight, .admonition &gt; div &gt; .highlight {margin-left:12px; margin-top:12px;}
.admonition &gt; div &gt; .highlight {margin-right:12px;}
td.linenos .normal { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #505153 }
.highlight .c { color: #8b949e; font-style: italic } /* Comment */
.highlight .err { color: #f85149 } /* Error */
.highlight .esc { color: #e6edf3 } /* Escape */
.highlight .g { color: #e6edf3 } /* Generic */
.highlight .k { color: #ff7b72 } /* Keyword */
.highlight .l { color: #a5d6ff } /* Literal */
.highlight .n { color: #e6edf3 } /* Name */
.highlight .o { color: #ff7b72; font-weight: bold } /* Operator */
.highlight .x { color: #e6edf3 } /* Other */
.highlight .p { color: #e6edf3 } /* Punctuation */
.highlight .ch { color: #8b949e; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #8b949e; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #8b949e; font-weight: bold; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #8b949e; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #8b949e; font-style: italic } /* Comment.Single */
.highlight .cs { color: #8b949e; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight .gd { color: #ffa198; background-color: #490202 } /* Generic.Deleted */
.highlight .ge { color: #e6edf3; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #ffa198 } /* Generic.Error */
.highlight .gh { color: #79c0ff; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #56d364; background-color: #0f5323 } /* Generic.Inserted */
.highlight .go { color: #8b949e } /* Generic.Output */
.highlight .gp { color: #8b949e } /* Generic.Prompt */
.highlight .gs { color: #e6edf3; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #79c0ff } /* Generic.Subheading */
.highlight .gt { color: #ff7b72 } /* Generic.Traceback */
.highlight .g-Underline { color: #e6edf3; text-decoration: underline } /* Generic.Underline */
.highlight .kc { color: #79c0ff } /* Keyword.Constant */
.highlight .kd { color: #ff7b72 } /* Keyword.Declaration */
.highlight .kn { color: #ff7b72 } /* Keyword.Namespace */
.highlight .kp { color: #79c0ff } /* Keyword.Pseudo */
.highlight .kr { color: #ff7b72 } /* Keyword.Reserved */
.highlight .kt { color: #ff7b72 } /* Keyword.Type */
.highlight .ld { color: #79c0ff } /* Literal.Date */
.highlight .m { color: #a5d6ff } /* Literal.Number */
.highlight .s { color: #a5d6ff } /* Literal.String */
.highlight .na { color: #e6edf3 } /* Name.Attribute */
.highlight .nb { color: #e6edf3 } /* Name.Builtin */
.highlight .nc { color: #f0883e; font-weight: bold } /* Name.Class */
.highlight .no { color: #79c0ff; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #d2a8ff; font-weight: bold } /* Name.Decorator */
.highlight .ni { color: #ffa657 } /* Name.Entity */
.highlight .ne { color: #f0883e; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #d2a8ff; font-weight: bold } /* Name.Function */
.highlight .nl { color: #79c0ff; font-weight: bold } /* Name.Label */
.highlight .nn { color: #ff7b72 } /* Name.Namespace */
.highlight .nx { color: #e6edf3 } /* Name.Other */
.highlight .py { color: #79c0ff } /* Name.Property */
.highlight .nt { color: #7ee787 } /* Name.Tag */
.highlight .nv { color: #79c0ff } /* Name.Variable */
.highlight .ow { color: #ff7b72; font-weight: bold } /* Operator.Word */
.highlight .pm { color: #e6edf3 } /* Punctuation.Marker */
.highlight .w { color: #6e7681 } /* Text.Whitespace */
.highlight .mb { color: #a5d6ff } /* Literal.Number.Bin */
.highlight .mf { color: #a5d6ff } /* Literal.Number.Float */
.highlight .mh { color: #a5d6ff } /* Literal.Number.Hex */
.highlight .mi { color: #a5d6ff } /* Literal.Number.Integer */
.highlight .mo { color: #a5d6ff } /* Literal.Number.Oct */
.highlight .sa { color: #79c0ff } /* Literal.String.Affix */
.highlight .sb { color: #a5d6ff } /* Literal.String.Backtick */
.highlight .sc { color: #a5d6ff } /* Literal.String.Char */
.highlight .dl { color: #79c0ff } /* Literal.String.Delimiter */
.highlight .sd { color: #a5d6ff } /* Literal.String.Doc */
.highlight .s2 { color: #a5d6ff } /* Literal.String.Double */
.highlight .se { color: #79c0ff } /* Literal.String.Escape */
.highlight .sh { color: #79c0ff } /* Literal.String.Heredoc */
.highlight .si { color: #a5d6ff } /* Literal.String.Interpol */
.highlight .sx { color: #a5d6ff } /* Literal.String.Other */
.highlight .sr { color: #79c0ff } /* Literal.String.Regex */
.highlight .s1 { color: #a5d6ff } /* Literal.String.Single */
.highlight .ss { color: #a5d6ff } /* Literal.String.Symbol */
.highlight .bp { color: #e6edf3 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #d2a8ff; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #79c0ff } /* Name.Variable.Class */
.highlight .vg { color: #79c0ff } /* Name.Variable.Global */
.highlight .vi { color: #79c0ff } /* Name.Variable.Instance */
.highlight .vm { color: #79c0ff } /* Name.Variable.Magic */
.highlight .il { color: #a5d6ff } /* Literal.Number.Integer.Long */

blockquote {
	background: #f9f9f9;
	border-left: 5px solid #ccc;
	margin: 1.5em 10px;
	/*padding: 0.5em 10px;*/
	padding: 1em;
}

@media (prefers-color-scheme: dark) {
		.single-manuals .page_white {
				background-color: black !important;
		}

		.single-manuals .page_white .e-con-boxed {
				background-color: black !important;
		}

		.single-manuals .page_white .elementor-widget-theme-post-content .elementor-widget-container {
				background-color: black !important;
		}

		.single-manuals img[alt~="invert"] {
				filter: invert(100%);
		}
	
	img[alt~="invert"] {
				filter: invert(100%);
		}
}

.lang-loader {
	border: 4px solid #f3f3f3;	 
	border-top: 4px solid #3498db;	 
	border-radius: 50%;	 
	width: 20px;	 
	height: 20px;	 
	animation: lang-loader-spin 2s linear infinite;	 
}

.align-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

section#fidelityfx-breadcrumbs section#enumerations {
	overflow-x: auto;
}

section#internal-frame-persistent-resources {
		overflow-x: auto;
}

section#shader-passes {
		overflow-x: auto;
}

@keyframes lang-loader-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.flex-table {
	display: flex;
	flex-direction: row;
}

.flex-table img {
	max-width: 50%;
}

@media (max-width: 768px) {
	.flex-table {
		flex-direction: column !important;
	}
	
	.flex-table img {
		max-width: 100%;
	}
}


/* RST / Breathe CSS */



.admonition, .admonition-todo, .attention, .caution, .danger, .error, .hint, .important, .note, .seealso, .tip, .warning,.wy-alert {	
	background: #ededed;
	/*padding-top: 10px;*/
	padding-bottom: 10px;
	line-height: 24px;
	margin-top: 20px;
	/*margin-bottom: 24px;*/
	margin-bottom: 12px;
}

.admonition &gt; p, .admonition-todo &gt; p, .attention &gt; p, .caution &gt; p, .danger &gt; p, .error &gt; p, .hint &gt; p, .important &gt; p, .note &gt; p, .seealso &gt; p, .tip &gt; p, .warning &gt; p,.wy-alert &gt; p {	
	padding-left: 10px;
	padding-right:10px;

}

/*.rst-content .admonition-title,.wy-alert-title {*/
.admonition-title,.wy-alert-title {
	font-weight: 700;
	display: block;
	color: #fff;
	background: #27282b;
	padding: 6px 12px;
	
}
/*.rst-content .admonition-title,.wy-alert-title {
	margin: -12px -12px 12px
}*/



@media (prefers-color-scheme: dark) {

		.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title {
			background: #191919;
		}

		.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning {
			background: #191919;
		}

		.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title {
			background: #191919;
		}

		.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info {
			background: #191919;
		}


		.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info {
			background: #191919 ;
		}

		.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger {
			background: #191919;
		}

.admonition, .admonition-todo, .attention, .caution, .danger, .error, .hint, .important, .note, .seealso, .tip, .warning,.wy-alert {	
	background: #191919;
}


		.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title {
			background: #191919;
		}

		.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning {
			background: #191919;
		}

		.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title {
			background: #191919;
		}
	}
} 






.rst-content code,.rst-content tt,code,kbd,pre,samp {
	/*font-family: monospace,serif;
	_font-family: courier new,monospace;*/
	font-size: 1em
}


@media screen and (max-width: 768px) {
	.rst-versions {
		width:85%;
		display: none
	}

	.rst-versions.shift {
		display: block
	}
}

.rst-content .toctree-wrapper&gt;p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6 {
	margin-bottom: 24px
}

.rst-content img {
	max-width: 100%;
	height: auto
}

.rst-content div.figure,.rst-content figure {
	margin-bottom: 24px
}

.rst-content div.figure .caption-text,.rst-content figure .caption-text {
	font-style: italic
}

.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption {
	margin-bottom: 0
}

.rst-content div.figure.align-center,.rst-content figure.align-center {
	text-align: center
}

.rst-content .section&gt;a&gt;img,.rst-content .section&gt;img,.rst-content section&gt;a&gt;img,.rst-content section&gt;img {
	margin-bottom: 24px
}

.rst-content abbr[title] {
	text-decoration: none
}

.rst-content.style-external-links a.reference.external:after {
	font-family: FontAwesome;
	content: "\f08e";
	color: #b3b3b3;
	vertical-align: super;
	font-size: 60%;
	margin: 0 .2em
}

.rst-content blockquote {
	margin-left: 24px;
	line-height: 24px;
	margin-bottom: 24px
}



@media print {
	.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre {
		white-space: pre-wrap
	}
}

.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning {
	clear: both
}


.rst-content .section ol li&gt;:first-child,.rst-content .section ul li&gt;:first-child,.rst-content .toctree-wrapper ol li&gt;:first-child,.rst-content .toctree-wrapper ul li&gt;:first-child,.rst-content section ol li&gt;:first-child,.rst-content section ul li&gt;:first-child {
	margin-top: 0;
}

.rst-content .line-block {
	margin-left: 0;
	margin-bottom: 24px;
	line-height: 24px
}

.rst-content .line-block .line-block {
	margin-left: 24px;
	margin-bottom: 0
}

.rst-content .topic-title {
	font-weight: 700;
	margin-bottom: 12px
}

.rst-content .toc-backref {
	color: #404040
}

.rst-content .align-right {
	float: right;
	margin: 0 0 24px 24px
}

.rst-content .align-left {
	float: left;
	margin: 0 24px 24px 0
}

.rst-content .align-center {
	margin: auto
}

.rst-content .align-center:not(table) {
	display: block
}



.rst-content .btn:focus {
	outline: 2px solid
}

.rst-content table&gt;caption .headerlink:after {
	font-size: 12px
}

.rst-content .centered {
	text-align: center
}

.rst-content .highlighted {
	background: #f1c40f;
	box-shadow: 0 0 0 2px #f1c40f;
	display: inline;
	font-weight: 700
}

.rst-content .citation-reference,.rst-content .footnote-reference {
	vertical-align: baseline;
	position: relative;
	top: -.4em;
	line-height: 0;
	font-size: 90%
}

.rst-content .citation-reference&gt;span.fn-bracket,.rst-content .footnote-reference&gt;span.fn-bracket {
	display: none
}

.rst-content .hlist {
	width: 100%
}

.rst-content dl dt span.classifier:before {
	content: " : "
}

.rst-content dl dt span.classifier-delimiter {
	display: none!important
}



.rst-content table.docutils th {
	border-color: #e1e4e5
}

.rst-content table.docutils th {
	border: 1px solid #e1e4e5
}

.rst-content table.docutils td&gt;p, .rst-content table.docutils th&gt;p {
	line-height: 1rem;
	margin-bottom: 0;
	font-size: .9rem
}

.rst-content table.docutils td .last,.rst-content table.docutils td .last&gt;:last-child {
	margin-bottom: 0
}

.rst-content table.field-list,.rst-content table.field-list td {
	border: none
}

.rst-content table.field-list td p {
	line-height: inherit
}

.rst-content table.field-list td&gt;strong {
	display: inline-block
}

.rst-content table.field-list .field-name {
	padding-right: 10px;
	text-align: left;
	white-space: nowrap
}

.rst-content table.field-list .field-body {
	text-align: left
}


.rst-content dl {
	margin-bottom: 24px
}

.rst-content dl dt {
	font-weight: 700;
	margin-bottom: 12px
}

.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul {
	margin-bottom: 12px;
	margin-top: 0px;
}

.rst-content dl dd {
	margin: 0 12px 12px 24px;
	line-height: 24px;
}

.rst-content dl dd&gt;ol:last-child,.rst-content dl dd&gt;p:last-child,.rst-content dl dd&gt;table:last-child,.rst-content dl dd&gt;ul:last-child {
	margin-bottom: 0
}

.rst-content dl:not(.docutils), .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) {
	margin-bottom: 24px
}

/*.rst-content dl, .rst-content ol, .rst-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none
}*/

.rst-content .codesnippet {
	font-size: 13px;
}

.rst-content table {
	max-width:100%;
	width: inherit;
}

.rst-content table.docTable td, .rst-content table.docTable th, .rst-content table.doxtable td, .rst-content table.doxtable th {
	border: 1px solid #AAAAAA;
	padding-top: 8px;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
}

.rst-content .toctree-l1 {
	margin-top: 5px;
}

/*.rst-content li {
	list-style: none
}*/

.rst-content dd {
	margin: 0
}

.rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple):not(.docutils)&gt;dt {
	display: table;
	margin: 6px 0;
	font-size: 95%;
	line-height: normal;
	background: #ededed;
	color: #27282b;
	border-top: 3px solid #dedede;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	padding-right: 6px;
	position: relative
}

.rst-content p.rubric {
	margin-bottom: 12px;
	font-weight: 700
}




</pre></body></html>