/*<meta />*/
/* [Kofax] 2019-Jan-24 MAS: Updated colors to new branding. For bug 1234394. */
*{
	box-sizing:border-box;
}
html, body{
	margin: 0;
	padding: 0;
}
body
{
display: flex;
/*flex: 1 1 auto;*/
flex-direction: column;
height: 100%;
min-height: 100vh;
font-family: Arial;
font-size: 10pt;
margin: 0px;
line-height: 1.7em;
position:relative;
z-index:0;
}
.body-content{
	position: relative;
	flex-basis: 100%;
	padding: 0 25px;
}
.spinner,
.spinner::after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
}

.spinner {
  position:absolute;
  top:14px;
  right: 30px;
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  font-size: 5px;
/* Use even numbered pixels. em units and odd numbered pixels cause color overlap.*/
  border-top: 4px solid #efeff6;
  border-right: 4px solid #efeff6;
  border-bottom: 4px solid #efeff6;
  border-left: 4px solid #5a5a64;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: rotation 1.1s infinite linear;
  animation: fadein 2s, rotation 1.1s infinite linear;
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Kofax color palette*/
.red{
	color:#c4202f
}
.light-red{
	color:#ffedef
}
.warm-yellow{
	color:#eeb111
}
.light-yellow{
	color:#fff6df
}
.green{
	color:#00c425
}
.light-green{
	color:#efffe5
}
.blue{
	color:#1c64b4
}
.accent-blue{
	color:#159be5
}
.light-blue{
	color:#e9f8ff
}
.purple{
	color:#884fad
}
.grey1{
	color:#f4f4f8
}
.grey2{
	color:#efeff6
}
.grey3{
	color:#cacacd
}
.mid-grey{
	color:#5a5a64
}
.grey4{
	color:#3e3e47
}
.dark-grey{
	color:#32323c
}
/* prevent empty space in IE11 for bug 1353733 */
header[role=banner]{
 flex: none;
}
/* Contains the body and the footer */
div#wrapper {
position: relative;
display: flex;
flex: 1 0 auto;
flex-direction: row;
flex-wrap: nowrap;
}
footer{
	flex: none;
}
/* Positions the TOC */
nav[role=toc]
{
-webkit-transition: all .25s ease-out;
-o-transition: all .25s ease-out;
transition: all .2s ease-out;
border-right: 1px solid #f3f3f3;
position: relative;
flex-basis: min-content;
width:0;
min-width: auto;
padding: 10px 0;
}
nav[role=toc] ul{
	margin-left: 0px; 
}
nav[role=toc] ul:first-child{
	display:none;
}

/* Footer formatting */
.footer{
display: block;
padding: 20px;
font-size: .85em;
border-top: 1px solid #e3e3e3;
}

/* Removes the outline from specific buttons when they have focus */
button.dropdownbutton:focus, button.exampleTitle:focus
{
	outline: 0px; 
}

/* Sets the color of links within the TOC and breadcrumbs */
nav[role=toc] a, nav[role=toc] li.active ul li a, .breadcrumbs a
{
color: #75787B;
}

/* [Kofax] 2017-Dec-19 MAS: Adds space for button. For bug 957781. */
span.toc_toggle_button {
height: 20px;
width: 20px;
display:inline-block;
/* 2018-Mar-16 MiSm: Align triangle. For bug 1108358 */
vertical-align:middle;
}
.toc_toggle_button button{
	cursor:pointer;
}
/* [Kofax] 2017-Dec-08 MAS: Display drop-down button when heading is expanded. For bug 957781. 
[Kofax] 2019-Aug-14 MiSm: Style according to Kofax style guide for bug 1122381 */
button.toc_toggle_expanded
{
background:transparent url("../images/dropdownopen.png") no-repeat;
display: block;
border: 0;
height: 20px;
width: 20px;
}

/* [Kofax] 2017-Dec-08 MAS: Display drop-down button when heading is expanded. For bug 957781. 
[Kofax] 2019-Aug-14 MiSm: Style according to Kofax style guide for bug 1122381 */
button.toc_toggle_contracted
{
background:transparent url("../images/dropdownclose.png") no-repeat;
display: block;
border: 0;
height: 20px;
width: 20px;
}

/*[Kofax] 2017-Dec-12 MAS: Contract all TOC entries by default. For bug 957781. */ 
nav[role=toc] ul li ul {
    display: none;
}

/* 2018-Mar-16 MiSm: Prevent indents on sub lists in TOC. For bug 1108358 */
nav[role=toc] ul:not(:first-child){
	padding-left:0;
}

/* [Kofax] 2017-Dec-20 MAS: If the selected topic is in a list, the list is expanded by default. For bug 957781. */
nav[role=toc] .ulExpanded {
    display: block;
}

/* Sets the hover and active colors of links within the TOC */
nav[role=toc] a:hover, nav[role=toc] li.active a
{
/* [Kofax] 2017-Jan-11 MAS: Apply corporate branding.*/
color: #00558c;
text-decoration: none;
}

/* TOC list item formatting */
nav[role=toc] li
{
list-style: none;
text-indent: -20px;
padding: 3px 0 0 0;
margin-left: 5px;
margin-bottom: 0px; 
/* [Kofax] 2018-Apr-02 MAS: Break long strings in the TOC. For bug 1133082. */
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}

/* Formatting for the navigation bar on the top of the page */
nav[role=navigation]{
	display: block;
	position: relative;
	background-color: #00558c;
	padding: 0 20px;
	color: #ffffff; 
	font-size: 11pt;
	line-height: 35px;
}
/* clearfix */
nav[role=navigation]:after {
  content: "";
  display: table;
  clear: both;
}
.helpTitle{
	padding: 0 30px 0 0;
	font-weight:700;
	white-space: nowrap;
}
nav[role=navigation] ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav[role=navigation] li {
	display: block;
	float: left;
	margin: 0;
	position: relative;
	transition-duration: 0.2s;
}
nav[role=navigation] li a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  padding: 0 15px;
}
nav[role=navigation] ul li ul li{
  padding: 0;
}
nav[role=navigation] ul li ul li a {
  color: #53565a;
}
nav[role=navigation] ul li ul {
    background: #f3f3f3;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
    visibility: hidden;
	opacity: 0;
	min-width: 5rem;
    position: absolute;
	transition: all 0.2s ease;
    left: 0;
	z-index: 1000;
	display: none;
}
nav[role=navigation] > ul > li:not(.helpTitle):hover, nav[role=navigation] > ul > li:hover > a{
	background: #e1e1de;
	color: #00558c;
}
nav[role=navigation] ul li ul li:hover, nav[role=navigation] ul li ul li:hover a{
    background: #fff;
	color: #00558c;
}
nav[role=navigation] ul li:hover > ul,
nav[role=navigation] ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
nav[role=navigation] ul li ul li {
  clear: both;
  width: 100%;
}

/* Formatting for examples */
.dropdown-menu.example
{
	position: relative; 
	border-radius: 0px; 
	-webkit-box-shadow: 0 0px 0px rgba(0,0,0,0);
	box-shadow: 0 0px 0px rgba(0,0,0,0);
	/* [Kofax] 2017-Nov-03 MAS: Adjust spacing after Example heading. For bug 972973. */
	/*padding: 10px;*/
	padding-left: 25px; 
	font-size: 10pt;
	margin: 0px; 
	float: none;
	background-color: #ffffff;
	border: 0px solid #ffffff;
	border-bottom: 1px solid #D9D9D6;
	margin-bottom: -1px;
}

/* Removes the top margin from the first paragraph inside an example */
.dropdown-menu.example p:first-child
{
	margin-top: 0px; 
}

/* Removes the bottom margin from the last paragraph inside an example */
.dropdown-menu.example p:last-child
{
	margin-bottom: 0px; 
}

/* General button formatting. */
button.exampleTitle
{
	border: 0px;
	border-top: 1px solid #D9D9D6;
	border-bottom: 1px solid #D9D9D6;
	background-color: #ffffff;
	padding: 5px;
	width: 100%;
	-webkit-box-shadow: none;
	font-weight: 600;
	text-align: left;
	margin-bottom: -1px;
}
button.exampleTitle.collapsed:before{
	font-family: 'Action-Icons-Library';
	content: "\E03C";
	margin-right:6px;
}

/* Formatting for example titles */
button.exampleTitle:hover
{
	border: 0px;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	cursor:pointer;
}
button.exampleTitle:focus, .dropdown.example.open button.exampleTitle
{
	-webkit-box-shadow: none;
	box-shadow: none;
}
/* [Kofax] 2018-Oct-18 MiSm: button.exampleTitle:not(.collapsed) added to display icon when text is not collapsed. For bug 1191667. */ 
.dropdown.example.open button.exampleTitle:before, .dropdown.example.open button.exampleTitle:hover:before, button.exampleTitle:not(.collapsed):before
{
	font-family: 'Action-Icons-Library';
	content: "\E03A";
	margin-right:6px;
}

/* Contains the search button and search input field */
.searchInput
{
position:relative;
padding:10px 20px;
width: 30%;
min-width: 195px;
}
.searchInput.ready::after{
	content: "\e8B6";
	font-family: Kofax-Action-Icons;
	position: absolute;
	right: 27px;
	line-height: 28px;
	color: #ccc;
	font-size: 22px;
}
/* Formatting for the search text input field */
#searchbox {
	border: solid 2px #e7e7e7;
	width: 100%;
	line-height: 1; 
	padding: 5px; 
}
#searchbox::-ms-clear {
    display: none;
    height: 0;
    width: 0;
}
input::placeholder {
  color: #999;
}
.dropdown-menu.tips p
{
	margin-top: 0px; 
	margin-bottom: 2px; 
	padding-left: 5px; 
}

/* Formatting for all input fields */
input
{
	vertical-align: top;
}

/* Formatting for the search results */
.searchResults 
{
	padding: 10px; 
	padding-top: 20px; 
	color: #75787B;
}

/* Formatting for no search results */
.noResults
{
	padding: 5px; 
	margin: 5px; 
}

/* Contains search results. Fallbacks for icon fonts which can appear in search results */
#searchList div
{
	margin-top: 10px; 
	margin-bottom: 20px;
	font-family: Arial,'Kofax-Action-Icons','Action-Icons-Library'
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in{
    animation: fadeIn .9s forwards;
}

/* Contains search tips and search heading */
#searchTips
{
	margin: 0px; 
	width: 100%;
	margin-top: 25px;
	border-top: 1px solid #e3e3e3;
	padding-top: 15px;
}

/* Formatting for the topic links in the search results */
.searchlink
{
	text-decoration: underline;
	font-size: 16px;
}

/* Formatting for the search heading */
h1.searchContainerTitle
{
	color: #75787B;
	font-size: 15pt;
	margin-bottom: 15px; 
	display: inline-block;
}

/* Formatting for the short description inside search results */
div.summary
{
	font-size: 13px; 
	color: #75787B;
	margin: 2px 0; 
	width: 100%;
}

/* Contains the logo, search bar, and show/hide TOC buttons */
div.headcontainer
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	/*padding: 10px 20px;*/
}
.logo{
	margin:10px 20px;
}
/* Formatting for the breadcrumbs */
div.breadcrumbs
{
font-size: 9pt;
color: #75787B;
padding-top: 10px; 
}

/* General heading formatting */
h1,
h2,
h3,
h4,
h5,
h6
{
font-weight: normal;
/*color: #53565A;*/
/* [Kofax] 2017-Jan-11 MAS: Apply corporate branding.*/
color:#00558c;
display: block;
margin-top: 10px;
}

/* Topic title */
h1
{
font-size: 20pt;
line-height: 25pt;
margin-top: 15px;
}

/* Section title */
/* [Kofax] 2017-Jan-11 MAS: Apply corporate branding.*/
h2
{
color: #00558c;
font-size: 15pt;
}

/* Definition list title */
/* [Kofax] 2017-Jan-11 MAS: Apply corporate branding.*/
h3
{
color: #75787B;
font-size: 14pt;
}

/* General link formatting */
a
{
color: #00558C;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}

/* General list formatting */
ol,
ul,
ol ol,
ol ul
{
margin-left: 10px; 
}
ol,ul
{
padding: 0 5px 0 25px;
margin-bottom: 0px;
}
ol ol,
ol ul
{
margin-top: 5px;
}
li
{
vertical-align: top;
margin-bottom: 8px;
}
li img
{
vertical-align: top;
}
ol
{
	list-style: none;
	counter-reset: section;
}
ol li::before {
  counter-increment: section;
  content: counter(section) ".";
  font-weight: 700;
  float: left;
  margin-left: -20px; 
}

/* [Kofax] 2017-Nov-06 MAS: Change substeps to lower-case letters. For bug 838469. */
ol ol > li::before {
  counter-increment: section;
  content: counter(section, lower-alpha) ".";
  font-weight: 700;
  float: left;
  margin-left: -20px; 
}

/* [Kofax] 2017-Feb-02 MAS: Add numbered lists after bulleted items. For bug 842497. */
ul ol li::before {
  counter-increment: section;
  content: counter(section) ".";
  font-weight: 700;
  float: left;
  margin-left: -20px; 
}

ol li ol li::before
{
  color: #75787B;
}
ul
{
	list-style: disc;
}
ul li::before
{
	counter-increment: none;
	content: none;
}

/* Formatting for lists within tables */
table ol,
table ul
{
margin-left: 5px; 
}

/* Used for codeblocks when prism isn't in effect */
pre
{
color: #000000;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px;
background-color: #D9D9D6;
}

.wrap{
	/* To break REALLY long strings */
	word-break: break-all;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Link to Kofax-Action-Icons fonts. */
@font-face {
  font-family: 'Kofax-Action-Icons';
  src:  url('../fonts/Kofax-Action-Icons.eot?unt1e2');
  src:  url('../fonts/Kofax-Action-Icons.eot?unt1e2#iefix') format('embedded-opentype'),
    url('../fonts/Kofax-Action-Icons.ttf?unt1e2') format('truetype'),
    url('../fonts/Kofax-Action-Icons.woff?unt1e2') format('woff'),
    url('../fonts/Kofax-Action-Icons.svg?unt1e2#Kofax-Action-Icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Link to Action-Icons-Library fonts. */
@font-face {
  font-family: 'Action-Icons-Library';
  src:  url('../fonts/Action-Icons-Library.ttf?unt1e2') format('truetype'),
    url('../fonts/Action-Icons-Library.woff?unt1e2') format('woff'),
    url('../fonts/Action-Icons-Library.svg?unt1e2#Kofax-Action-Icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Apply Kofax Action Icons font to icons. */
.icon{
   /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Kofax-Action-Icons' !important;
}
/* Apply Action Icons Library font to ReadSoft icons. */
.rsicon{
   /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Action-Icons-Library' !important;
}
.icon, .rsicon{
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enlarge font when it is in a table. */
td p span.rsicon {
	font-size: 200%;
}

/* [Kofax] 2018-Mar-08 MAS: Change formatting of draft comments to match PDFs. For bug 1116449. */
.draft-comment
{
background-color: #99FF99; 
color: black; 
border: 1pt black solid;
}

/* Used for codeblocks when prism isn't in effect */
pre
{
border: 0px solid;
border-radius: 0px; 
}

/* Margins for paragraphs and divs that are within topic text */
p,
div.context,
div.postreq,
div.prereq,
div.result,
div.shortdesc
{
margin-top: 10px;
margin-bottom: 10px;
}

/* Margins for paragraphs within divs that are within topic text */
div.context p,
div.postreq p,
div.prereq p,
div.result p,
div.shortdesc p
{
	margin-top: 0px;
	margin-bottom: 2px; 
}

/* Formatting for step results and step examples */
div.stepresult,
div.stepxmp
{
font-style: normal;
list-style: none;
padding-left: 8px;
display: block;
text-indent: 0px;
margin-left: 0px;
padding-left: 0px;
}

/* Formatting for notes */
div.note,
div.noteImportant
{
font-style: normal;
list-style: none;
padding-left: 8px;
display: block;
text-indent: 0px;
margin-left: 0px;
padding-left: 0px;
/* [Kofax] 2017-Nov-03 MAS: Add background color to notes. For bug 957774. */
background-color: #D9D9D6;
}

/* Formatting for the label on notes */
.notecaption
{
	margin-right: 3px; 
}

/* Margins for paragraphs within list items */
li p
{
	margin-bottom: 0px; 
	margin-top: 2px; 
}

/* Formatting for the result element */
.result
{
font-style: normal;
margin-bottom: 5px;
}

/* General table formatting */
table
{
display: table;
border: solid 0px;
border-color: #53565A;
border-collapse: collapse;
margin: 20px 0;
table-layout: fixed;
width: 100%;
}

/* Formatting for tables that are within lists */
ol table,
ul table
{
text-indent: 0px;
}

/* General table formatting */
thead,
tbody
{
width: 100%;
}
table tr,
table tr td,
table colgroup thead tr th,
.table>thead>tr>th,
td,
th
{
border: solid 1px;
border-color: #53565A;
border-collapse: collapse;
vertical-align: top;
padding: 10px;
/* [Kofax] 2019-Jan-25 MAS: Fix spacing in tables. */
font-size: 10pt;
line-height: 1.7em;
}
th
{
text-align: left;
font-weight: bold;
font-size: 11pt;
vertical-align: middle;
color: #000000;
background-color: #D9D9D6;
}

/* Formatting for choice-tables */
table.choicetable
{
	margin-bottom: 15px;
}
.choicetable tbody th
{
	font-size: 10pt; 
	background-color: #ffffff;
}

/* Formatting for merged columns in tables that act as headings */
td[colspan="2"], td[colspan="3"], td[colspan="4"], td[colspan="5"]
{
	font-weight: 700;
	background-color: #D9D9D6;
	color: #53565A
}

/* General table formatting */
table p, table ol, table ul
{
	margin: 0px; 
}
table p
{
	padding: 0px; 
}

/* Formatting for codeblocks within tables - forces word breaks */
table pre
{
	margin-left: 10px;
	margin-right: -10px;
	word-break: keep-all;
	word-wrap: break-word;
}

/* Definition list formatting. */
dt
{
font-weight: 700;
display: block;
margin-top: 10px;
padding-bottom: 5px;
}

dt.dl_wrap
{
	float: left;
	margin-top: 0px; 
	padding-bottom: 0px; 
	display: inline;
	margin-right: 5px;
	margin-left: 12px;	
	padding-left: 5px;
}

dd
{
	margin-left: 12px;
	padding-left: 5px; 
}

dd p
{
	margin-top: 5px; 
	margin-bottom: 5px; 
}

dl
{
margin-top: 6px;
margin-bottom: 6px;
}

/* Makes specific elements bold */
ol.step span.wintitle,
ol.step span.uicontrol,
span.menucascade span.uicontrol,
table.choicetable span.uicontrol,
table.choicetable span.wintitle,
ul.steps-unordered span.uicontrol,
ul.steps-unordered span.wintitle,
span.notecaption,
span.group,
span.action
{
font-weight: 700;
}

/* Overrides uicontrol bolding when uicontrol is within a heading */
h1 .uicontrol,
h2 .uicontrol,
h3 .uicontrol,
h4 .uicontrol,
h5 .uicontrol,
h6 .uicontrol
{
font-weight: normal;
}

/* Makes specific elements italic */
span.em
{
	font-style: italic;
}

/* [Kofax] 2018-Jan-24 MAS: Set font to monospace to match PDF. 
 * Updated 2018-Mar-29 MAS to add cmdname for bug 1131056.*/
span.filepath,
span.varname,
span.codeph,
span.cmdname,
pre,
span.systemoutput,
span.userinput,
span.msgph
{
	font-family: 'Courier New', monospace;
}

/* Stops images inside a figure from being over 470px wide */
figure img
{
max-width: 470px;
}
img, table {
	max-width: 100%;
	height: auto;
}

/* Keeps notes inline with the info element */
div.info div.note,
div.info div.noteImportant
{
display: inline-block;
}

/* Bolds elements with a class of strong */
.strong
{
	font-weight: 700;
}

/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */
/**
 * prism.js for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
 
/* General prism formatting */
code[class*="language-"],
pre[class*="language-"] 
{
	color: black;
	background: none;
	font-family: 'Courier New', monospace;
	line-height: 1.5;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	text-shadow: 0 1px white;	
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection, 
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: 0 1px white;
	background: #f3f3f3;
}
@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: 0 1px white;
	}
}
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f3f3f3;
}
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

/* Formatting for color changes within codeblocks */
/*  [Kofax] 2019-Jan-25 MAS: Tokens for code in codeblocks is not changed to Kofax standards. These colors are
 * based on developer expectations. */
.token.comment,
.token.cdata 
{
	color: #00ad21;
}
.token.doctype 
{
	color: #000000;
}
.token.prolog {
	color: #0061de;
}
.token.punctuation {
	color: #000;
}

.namespace {
}
.token.tag,
.token.constant,
.token.symbol,
.token.deleted,
.token.selector {
	color: #0061de;
}
.token.number,
.token.attr-name
{
color: #d1202f;
}
.token.string,
.token.char,
.token.builtin,
.token.inserted,
.token.function
 {
	color: #7e7e85;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.regex,
.token.important,
.token.variable
 {
	color: #000000;
}
.token.property,
.token.atrule,
.token.attr-value,
.token.keyword,
.token.boolean {
	color:  #00558C;
}

.token.attr-value
{
	color:  #884fad;
	font-weight: 700;
}
.token.property,
.token.keyword,
.token.boolean
{
	font-weight: 700;
}
.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}
span.highlight
{
	display: inline-block;
	background-color: #D9D9D6;
}
.toggle-highlight{
	display:none;
	float:right;
	margin-top:10px;
	cursor:pointer;
	color: #ccc;
}
.toggle-highlight:hover{
	color: #00558c;
}
.toggle-highlight::after{
	content: "\e957";
	font-family: Kofax-Action-Icons;
	line-height: 28px;
	font-size: 20px;
}
a:hover span.highlight{
    text-decoration: inherit;
}
nav[role=toc].open{
	min-width:300px;
	position: absolute;
	background: #fff;
	z-index: 99;
	height: 100%;
	box-shadow: 5px 0 6px -2px rgba(0,0,0,0.2);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
	nav[role=toc].open{
		height: auto;
	}
}
.body-content.tocopen{
 /*prevent text from shifting when toc opens */
 margin:0 0 0 1px;
}
nav[role=toc].open ul:first-child{
	display:block;
}

/* menu icon */
header .menu-icon {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 5px 10px 5px 0;
  position: relative;
  user-select: none;
}
header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
header .menu-icon .navicon::before,
header .menu-icon .navicon::after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
header .menu-icon .navicon::before {
  top: 5px;
}
header .menu-icon .navicon::after {
  top: -5px;
}
/* menu btn */
header .menu-btn {
  display: none;
}
header .menu-btn:checked ~ .menu {
  max-height: 240px;
}
header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
header .menu-btn:checked ~ .menu-icon .navicon::before {
  transform: rotate(-45deg);
}
header .menu-btn:checked ~ .menu-icon .navicon::after {
  transform: rotate(45deg);
}
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::after {
  top: 0;
}

/* Everything below this point is responsive formatting. Edit at your own risk! */

@media only screen and (min-width: 992px) {
	header .menu-icon{
		display:none;
	}
	nav[role=toc]{
	flex-basis: 20%;
	min-width:300px;
	}
	nav[role=toc] ul:first-child{
		display:block;
	}
	.body-content {
		flex-basis: 80%;
	}
	
	th
	{
		font-size: 12pt;
	}
	
}
/* begins responsive formatting for screens below 768px */
@media screen and (max-width: 767px) {

/* Positioning for show/hide TOC */
	nav.related-links.active
	{
	display: none;
	}

} 

/* responsive formatting for screens below 480px */
@media only screen and (max-width: 480px){
	
	/* Search section formatting that displays only in this screen size and below */
	.searchInput
	{
	width: 100%;	
	background-color: #f3f3f3;
	}
}