/*<meta />*/

@namespace MadCap url(http://www.madcapsoftware.com/Schemas/MadCap.xsd);

:root
{
	--main-background-color: #ffffff;
	--link-color: #2690f8;
	--warning-color: #DF7239;
	--tip-color: #DE385F;
	/*Brand colours*/
	--Purple1: #c47bf3;
	--Purple2: #dbb0f5;
	--Pink1: #de385F;
	--Pink2: #eb889F;
	--Orange1: #DF7239;
	--Orange2: #ECAA88;
	--Yellow1: #EECF3A;
	--Yellow2: #F5E289;
}

/*Write the font family in the GUI to make these fonts work, e.g. RiformalMedium*/

@font-face 
{
	font-family: 'RiformalMedium';
	src: url(../Fonts/RiformaLLWeb-Medium.woff);
}

@font-face 
{
	font-family: 'RiformalLight';
	src: url(../Fonts/RiformaLLWeb-Light.woff);
}

@font-face 
{
	font-family: 'RiformalReg';
	src: url(../Fonts/RiformaLLWeb-Regular.woff);
}

body
{
	color: #000000;
	font-family: RiformalLight;
	font-size: 1em;
	line-height: 1.7em;
}

.body-container
{
	flex: 1 1;
	padding-top: 0em;
	padding-left: 0em;
	padding-right: 0em;
	overflow: auto;
}

p
{
	margin-top: 0;
	line-height: 18pt;
	margin-bottom: 14px;
	color: #000000;
}

/* CHAT ASSISTANT IMPLEMENTATION START */

#chat-assistant
{
	position: fixed !important;
	right: 20px !important;
	bottom: 20px !important;
	width: 320px !important;
	font-family: sans-serif;
	z-index: 9999 !important;
}

#chat-assistant.minimized #chat-box-wrapper
{
	display: none;
}

#chat-launcher
{
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 40px;
	background: #000;
	color: white;
	border-radius: 8px;
	text-align: center;
	line-height: 40px;
	font-size: 14px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#chat-assistant.minimized #chat-launcher
{
	display: block;
}

#chat-toggle
{
	background: #000;
	color: white;
	padding: 12px;
	border-radius: 12px 12px 0 0;
	font-weight: bold;
	cursor: pointer;
	position: relative;
}

#chat-toggle::after
{
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(to right, #f90, #0ff, #90f);
	margin-top: 6px;
	border-radius: 5px;
}

#chat-toggle button
{
	background: transparent;
	color: white;
	border: none;
	font-size: 12px;
	cursor: pointer;
	margin-left: 6px;
	float: right;
}

#chat-box
{
	background: white;
	border: 1px solid #ccc;
	max-height: 450px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 12px 12px;
	display: flex;
	flex-direction: column;
}

#chat-messages
{
	padding: 10px;
	height: 280px;
	overflow-y: auto;
	font-size: 14px;
}

.message
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

.message.user
{
	flex-direction: row-reverse;
}

.message.user .avatar
{
	margin-left: 6px;
}

.message.user .bubble
{
	background: #e0f7fa;
}

.message.bot .bubble
{
	background: #f1f1f1;
}

.bubble
{
	padding: 8px 10px;
	border-radius: 10px;
	max-width: 80%;
}

.avatar
{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}

#chat-box input
{
	width: 100%;
	padding: 10px;
	border-top: 1px solid #eee;
	border: none;
	outline: none;
	box-sizing: border-box;
}

.typing-indicator
{
	font-style: italic;
	color: gray;
	font-size: 13px;
	margin-left: 38px;
}

/* Modal */

#chat-modal.hidden
{
	display: none;
}

#chat-modal
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.modal-overlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.modal-content
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	height: 80%;
	max-width: 1100px;
	background: white;
	border-radius: 16px;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.modal-header
{
	background: #000;
	color: white;
	padding: 16px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}

.modal-header::after
{
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(to right, #f90, #0ff, #90f);
	margin-top: 8px;
	border-radius: 6px;
}

#modal-close
{
	position: absolute;
	top: 12px;
	right: 16px;
	background: transparent;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

.modal-body
{
	flex-grow: 1;
	padding: 12px;
	overflow-y: auto;
	font-size: 16px;
}

.modal-input
{
	padding: 10px;
	border-top: 1px solid #ddd;
}

.modal-input input
{
	width: 100%;
	padding: 12px;
	font-size: 16px;
	box-sizing: border-box;
	border: none;
	outline: none;
}

/* CHAT ASSISTANT IMPLEMENTATION END */
/* CUSTOMSEARCH IMPLEMENTATION START */
/* Hide original search components, but keep container visible */

/* .search-bar input,
.search-filter-wrapper input,
.search-submit-wrapper
.search-field
.search-field needs-pie {
  display: none !important;
} */

.search-bar
{
	display: block;
}

.search-result
{
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-results-test
{
	margin-top: ;
}

.loader
{
	display: inline-block;
	width: 28px;
	height: 28px;
	border: 4px solid #ccc;
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
} 

/*Search Results */

div.SearchResultsDiv
{
	margin-left: 100px;
	max-width: 60rem;
}

/* CUSTOMSEARCH IMPLEMENTATION END */
/* Headings and dividers */

h1
{
	font-family: RiformalLight;
	font-size: 2em;
	/*font-weight: bold;*/
	mc-heading-level: 1;
	color: #000000;
	margin: 0;
	margin-bottom: 0.67em;
	padding-top: 20px;
}

h2
{
	font-weight: bold;
	mc-heading-level: 2;
	font-size: 1.5em;
	color: #000000;
	margin-top: 60px;
}

h2.home-page
{
	margin-bottom: 4px;
	color: #333333;
	margin-top: 50px;
	margin-bottom: 20px;
	font-size: 16pt;
	font-weight: bold;
}

h3
{
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
}

h4
{
	margin-bottom: 4px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 1em;
	font-weight: bold;
}

p.divider
{
	margin-bottom: 4px;
	color: #595959;
	margin-top: 20px;
	font-size: 0.95em;
	font-weight: bold;
}

p.divider-landingpage
{
	margin-bottom: 4px;
	color: #595959;
	margin-top: 5px;
	margin-bottom: 20px;
	font-size: 0.95em;
	font-weight: bold;
}

p.releasetile
{
	margin: 0px;
}

/*Responsive Side menu fixes*/

.js-off-canvas-exit
{
	box-shadow: 0px 0px 0px 2px #000000;
}

/*Note boxes*/

div.blackcallout
{
	background-color: #fafafa;
	background-image: url('../Images/FA/circle-info-light-grey-30px.svg');
	background-size: 30px;
	background-position: 10px 10px;
	background-repeat: no-repeat;
	line-height: 18px;
	overflow: hidden;
	padding: 15px 60px;
	margin-bottom: 15px;
	border-left: solid 3px #595959;
}

/*Code Block*/

.code
{
	background-color: #f5f5f5;
	font-family: Consolas, Monaco, 'Courier New', monospace;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: #dcdcdc;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: #dcdcdc;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #dcdcdc;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #dcdcdc;
	word-wrap: break-word;
	width: 100%;
	margin-bottom: 15px;
	font-size: 1em;
}

.code p
{
	margin-bottom: 0px;
	clear: right;
}

img.copy
{
	cursor: pointer;
	float: right;
	mc-conditions: 'Default.Screen Only';
	border: none;
}

MadCap|codeSnippetCopyButton
{
	background-image: url('../Images/Skin Images/copy-sharp-light-white.svg');
	display: block;
	height: 26px;
	width: 26px;
	background-repeat: no-repeat;
	font-size: 0px;
}

MadCap|codeSnippet
{
	font-size: 1em;
	margin-bottom: 15px;
	background-color: #000000;
	font-color: #FFFFFF;
	color: #FFFFFF;
	vertical-align: center;
	padding: 1em;
	padding-bottom: 2em;
	border-radius: 10px;
}

MadCap|codeSnippet td
{
	background-color: #f5f5f5;
	border: #000000;
}

MadCap|codeSnippetBody
{
	padding: 0px;
	overflow: visible;
	word-wrap: break-word;
}

div.importantinfowrapper
{
	width: 200%;
	height: 100%;
	position: fixed;
	background-color: rgb(122 129 128 / 54%);
	margin-left: -400px;
	z-index: 99;
}

/* Micro-content */

.micro-content-container .micro-response .micro-content-only	/* In the micro content, shows content that will be hidden in the regular topic. */
{
	display: block;
}

.micro-content-only,
.micro-response .topic-only
/* In the regular topic, hides content flagged as micro-content only. */
/* In the micro-content, hides content flagged as topic only. */
{
	display: none;
}

.micro-content-heading	/* Separate heading for microcontent. Hidden in topics */
{
	font-size: 1em;
	font-weight: bold;
	margin-top: 0px;
	display: none;
	color: white;
	background: black;
	padding: 3px;
	width: max-content;
}

.micro-content-container .micro-response .micro-content-heading	/* Display microcontent heading in microcontent */
{
	display: block;
}

.micro-content-only
{
	mc-heading-level: 0;
}

/* Hyperlinks */

a
{
	color: var(--link-color);
}

/* Images */

img.noborder
{
	border: none;
	max-width: 100%;
}

img
{
	border: 1px solid #888888;
	max-width: 95%;
	/* this is so that it fits inside dropdowns nicely */
}

img.Thumbnail
{
	max-width: 100%;
	max-height: auto;
	border: solid 1px #888888;
	mc-thumbnail: popup;
}

img.Thumbnail-big
{
	mc-thumbnail: popup;
	mc-thumbnail-max-height: 300px;
	border: 1px solid #888888;
}

img.Thumbnail-big-right
{
	mc-thumbnail: popup;
	mc-thumbnail-max-height: 300px;
	border: 1px solid #888888;
	float: right;
	padding: 10px;
	margin-left: 15px;
}

img.icon
{
	border: none;
	max-width: 25px;
	max-height: auto;
}

img.icon-endpointbutton
{
	border: none;
	max-width: 25px;
	max-height: auto;
	padding: 4px;
	vertical-align: bottom;
}

img.spreadsheeticon
{
	border: none;
	max-width: 25px;
	max-height: auto;
	margin-left: 10px;
}

img.homeicon
{
	border: none;
	width: auto;
	height: 50px;
	max-width: 50px;
	max-height: 50px;
}

/*Responsive design */

div.diagram
{
	overflow-x: auto;
	overflow-y: auto;
}

div.Tiles1	/*Used for the tiles on the Home page - 4 tiles per row*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	/*added to make boxes not touch the edge of home screen*/
}

div.Tiles1::before
{
	content: ' ';
	display: table;
}

div.Tiles1::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.Tiles1 > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 200px;
	margin-bottom: 40px;
	border-radius: 0px;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.Tiles1 p
{
	color: #444444;
	padding-top: 1rem;
	padding-left: 10px;
	padding-right: 10px;
	min-height: 64px;
}

div.Tiles1 a
{
	text-decoration: none;
}

div.Tiles1 > div > a
{
	display: block;
	padding: 0px;
	height: 200px;
}

div.Tiles1 > div:nth-child(1)
{
	width: 23.2%;
	margin-left: 0%;
}

div.Tiles1 > div:nth-child(2)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.Tiles1 > div:nth-child(3)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.Tiles1 > div:nth-child(4)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.space	/* This is used for the tiles on the home page */
{
	padding-top: 30px;
	color: #000000;
}

/*Responsive 2x1 tiles*/

div.Tiles2	/*Used for the tiles on the Home page - 2 long tiles per row*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	/*added to make boxes not touch the edge of home screen*/
	padding-left: 175px;
	padding-right: 175px;
}

div.Tiles2::before
{
	content: ' ';
	display: table;
}

div.Tiles2::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.Tiles2 > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 250px;
	margin-bottom: 35px;
	border: 2px solid #000000;
	border-radius: 0px;
	text-align: center;
	background-color: #ffffff;
}

div.Tiles2 p
{
	color: #444444;
	padding-top: 1rem;
	padding-left: 10px;
	padding-right: 10px;
}

div.Tiles2 a
{
	text-decoration: none;
}

div.Tiles2 > div > a
{
	display: block;
	padding: 0px;
	height: 250px;
}

div.Tiles2 > div:nth-child(1)
{
	width: 48.8%;
	margin-left: 0%;
}

div.Tiles2 > div:nth-child(2)
{
	width: 48.8%;
	margin-left: 2.4%;
}

div.FlexContainer	/*Used for the tiles on the Level 1 landing pages - 2 tiles per row*/
{
	display: flex;
	flex-wrap: wrap;
	margin-right: -1em;
	mc-hidden: hidden;
}

div.FlexContainer > div
{
	flex-basis: 15em;
	flex-grow: 1;
	padding: 1em;
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0em 1em 1em 0em;
	border: 1px solid #888888;
	padding-top: 15px;
	mc-hidden: hidden;
}

p.tiles a	/* This is used on the landing pages so that the user guide hyperlink is shown in black */
{
	color: #000000;
	font-weight: bold;
	mc-hidden: hidden;
}

div.MiniTiles	/*Used for the tiles on the documntation intro page - 4 tiles per row*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	/*added to make boxes not touch the edge of home screen*/
	padding-left: 20px;
	padding-top: 60px;
}

div.MiniTiles::before
{
	content: ' ';
	display: table;
}

div.MiniTiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.MiniTiles > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 150px;
	margin-bottom: 35px;
	border: 2px solid #000000;
	border-radius: 0px;
	text-align: center;
	background-color: #000000;
	font-weight: bolder;
	color: #ffffff;
}

div.MiniTiles p
{
	color: #ffffff;
	padding-top: 1rem;
	padding-left: 10px;
	padding-right: 10px;
	min-height: 64px;
}

div.MiniTiles a
{
	text-decoration: none;
}

div.MiniTiles > div > a
{
	display: block;
	padding: 0px;
	height: 200px;
}

div.MiniTiles > div:nth-child(1)
{
	width: 23.2%;
	margin-left: 0%;
}

div.MiniTiles > div:nth-child(2)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.MiniTiles > div:nth-child(3)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.MiniTiles > div:nth-child(4)
{
	width: 23.2%;
	margin-left: 2.4%;
}

div.MiniTiles-child:hover
{
	border: none;
	box-shadow: 0px 0px 2px 5px #000000;
}

MadCap|tocProxy
{
	border-top-style: none;
	border-top-width: 0px;
}

p.TOC1
{
	display: none;
}

MadCap|miniTocProxy
{
	border-top-style: none;
	border-top-color: transparent;
	font-style: normal;
	mc-toc-depth: 1;
}

MadCap|listOfProxy
{
	font-weight: normal;
	border-left: solid 3px;
	border-left-color: var(--link-color);
	padding-top: 0px;
	color: var(--link-color);
	border-top-style: none;
}

/*Tables*/

/*table - default table
{
	width: auto !important;
	padding: 1px;
	overflow-y: auto;
}*/

table
{
	width: 100%;
	border-collapse: collapse;
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	table-layout: fixed;
}

th,
td
{
	border: 1px solid #ddd;
	padding: 10px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

th
{
	background-color: #f4f4f4;
	font-weight: bold;
	text-align: left;
}

tr:nth-child(even)
{
	background-color: #f9f9f9;
}

tr:hover
{
	background-color: #f1f1f1;
}

caption
{
	margin: 10px 0;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}

/* Lists */

li
{
	orphans: 2;
	widows: 2;
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: 0;
	color: #000000;
}

ol
{
	list-style-image: none;
	margin-bottom: 10px;
	color: #000000;
}

ul
{
	list-style-image: none;
	margin-top: 0;
	margin-bottom: 10px;
	color: #000000;
}

li.p
{
	padding: 10px;
}

/* Breadcrumbs */

MadCap|breadcrumbsProxy
{
	border-bottom: none;
	font-size: .7em;
	mc-breadcrumbs-count: 6;
	margin-top: 0.67em;
	padding-top: 10px;
	padding-bottom: 0px;
	mc-breadcrumbs-prefix: ' ';
}

a.MCBreadcrumbsLink
{
	
}

a.MCBreadcrumbsLink:visited
{
	color: #000000;
}

/* Dropdowns */
/*Makes the side menu arrows point in the right directions*/

span.submenu-toggle-container
{
	rotate: 270deg;
}

span.submenu-toggle-container[aria-expanded="false"]
{
	rotate: 270deg;
}

span.submenu-toggle-container[aria-expanded="true"]
{
	rotate: 180deg;
}

MadCap|dropDown
{
	mc-disabled: false;
	mc-closed-image: url('../Images/Skin Images/DD_Closed.png');
	mc-open-image: url('../Images/Skin Images/DD_Open_FNZ.png');
	margin-bottom: 6px;
	margin-top: 6px;
}

MadCap|dropDownBody
{
	mc-disabled: false;
	border-bottom: solid 1px #595959;
}

MadCap|dropDown.SecondLevel
{
	margin-left: 10px;
}

MadCap|dropDownHotspot
{
	font-size: 0.9em;
	font-weight: bold;
	mc-disabled: false;
	color: #000000;
}

MadCap|dropDown.DinoDropdown
{
	mc-disabled: false;
	margin-bottom: 6px;
	margin-top: 6px;
	border: none;
	background-color: #FAFAFA;
	border-radius: 10px;
	mc-closed-image: none;
	mc-open-image: none;
	padding-left: 35px;
	padding-bottom: 5px;
	padding-top: 5px;
	background-image: url('../Images/FA/angle-down-regular.svg');
	background-size: 15px;
	background-position: 10px 10px;
	background-repeat: no-repeat;
	display: none;
}

/* Indent dropdowns*/

div.indent
{
	margin-left: 20px;
}

/* Version filter */

.styled-select.filter
{
	border: 1px solid #ccc;
	font-size: 16px;
	height: 34px;
	width: 240px;
}

.styled-select.filter select
{
	font-size: 16px;
	height: 34px;
	width: 268px;
}

.semi-square
{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.styled-select
{
	height: 29px;
	overflow: hidden;
	width: 240px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-image: url('../Images/Skin Images/Filter_FNZ.png');
}

.styled-select select
{
	background: transparent;
	border: none;
	font-size: 14px;
	height: 29px;
	padding: 5px;
	/* If you add too much padding here, the options won't show in IE */
	width: 268px;
}

.rounded
{
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.semi-square
{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/* Footer */

div.footer
{
	width: 80rem;
	/*matches skin width */
	/*margin-left: -16rem;
	 matches sideContent width*/
	border-top: 1px solid #d9d9d9;
	margin-top: 50px;
	padding-top: 20px;
}

div.footersearch
{
	border-top: 1px solid #d9d9d9;
	margin-top: 50px;
	padding-top: 20px;
}

div.footerDINO
{
	/*width: 80rem;*/
	border-top: 1px solid #d9d9d9;
	margin-top: 400px;
	padding-top: 20px;
}

/* Footnotes */

MadCap|footnote
{
	color: #000000;
}

MadCap|popup
{
	color: #535555;
}

MadCap|popup:focus
{
	color: #535555;
}

MadCap|popup:hover
{
	color: #535555;
}

MadCap|popupHead
{
	font-weight: bold;
	color: #535555;
}

/* Glossary */

MadCap|glossaryTerm
{
	color: #535555;
	mc-closed-image: url('../Images/Skin Images/DD_Closed.png');
	mc-open-image: url('../Images/Skin Images/DD_Open_FNZ.png');
}

MadCap|popupBody
{
	background-color: #ffffff;
}

/* Content */

.UGFieldName
{
	font-weight: bold;
}

.UGActionOption
{
	font-weight: bold;
}

.UGScreenName
{
	font-weight: bold;
}

/* Allows the logo to be used as a .svg*/

.title-bar-layout a.logo
{
	background-color: transparent;
	background-image: url('../Images/Skin Images/FNZStudioLogo.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 300px;
	font-family: RiformalLight;
	margin-left: 16px;
	margin-right: 40px;
	max-width: 35%;
}

.invisible-label	/* Stops a strange grey dot appearing in the logo*/
{
	border: none;
	max-width: none;
}

/*Content blocks*/

div.home
{
	padding-top: 100px;
	padding-right: 175px;
	padding-left: 175px;
	padding-bottom: 8em;
	background: black;
	box-shadow: 5px 5px 5px ffffff;
}

nav.title-bar
{
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-image: linear-gradient(to right, #a979f6, #6c1beb, #f05619, #f8d271) 50;
}

div.Sidemenu
{
	float: right;
	margin-left: 10px;
	margin-bottom: 20px;
	width: 25%;
	background: pink;
}

MadCap|miniTocProxy.LandingTOC
{
	font-weight: normal;
	border-left: solid 3px;
	border-left-color: var(--link-color);
	padding-top: 0px;
	color: var(--link-color);
}

div.LandingTOC
{
	border-left: solid 3px;
	border-left-color: var(--link-color);
}

a.MiniTOC1:link
{
	font-weight: normal;
	color: var(--link-color);
	text-decoration: underline;
}

a.GenListOfTextListOf:link
{
	font-weight: normal;
	color: var(--link-color);
	text-decoration: underline;
}

/*Toolbar SVGs*/

._Skins_TopicToolBar.mc-component .button.remove-highlight-button .button-icon
{
	background: transparent url('../Images/Skin Images/highlighter-light.svg');
}

._Skins_TopicToolBar.mc-component .button.expand-all-button .button-icon
{
	background: transparent url('../Images/Skin Images/chevron-double-down-light.svg');
}

._Skins_TopicToolBar.mc-component .button.collapse-all-button .button-icon
{
	background: transparent url('../Images/Skin Images/chevron-double-up-light.svg');
}

._Skins_TopicToolBar.mc-component .button.print-button .button-icon
{
	background: transparent url('../Images/Skin Images/print-light.svg');
}

._Skins_TopicToolBar.mc-component .button.home-button .button-icon
{
	background: transparent url('../Images/Skin Images/home.svg');
}

._Skins_SearchResults_FNZ.mc-component h1#results-heading
{
	color: black;
	background: white;
}

h2.RelatedArticle
{
	font-weight: normal;
	mc-heading-level: 2;
	font-size: 1.3em;
	color: #000000;
	padding-left: 20px;
}

/* Removes the strange on click highlight from the search bars*/

:focus
{
	outline: none;
}

/*Search Results */

div.SearchResultsDiv
{
	margin-left: 100px;
	max-width: 60rem;
}

div.TwoColumn	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
}

div.TwoColumn::before
{
	content: ' ';
	display: table;
}

div.TwoColumn::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.TwoColumn > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.TwoColumn > div:nth-child(1)
{
	width: 70%;
	padding-left: 2%;
	border-left: 1px #dadde1 solid;
}

div.TwoColumn > div:nth-child(2)
{
	width: 25%;
	margin-top: 3em;
	padding-left: 1em;
}

div.Roadmap
{
	padding-right: 10%;
}

/*Back to top button*/

#myBtn
{
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Fixed/sticky position */
	bottom: 20px;
	/* Place the button at the bottom of the page */
	right: 30px;
	/* Place the button 30px from the right */
	z-index: 99;
	/* Make sure it does not overlap */
	border: #white 2px solid;
	outline: none;
	background-color: black;
	color: white;
	cursor: pointer;
	padding: 2px 15px 2px 5px;
	border-radius: 0px;
	font-size: 14px;
	font-family: RiformalLight;
}

p.Backtotop
{
	margin-top: 0;
	line-height: 18pt;
	margin-bottom: 14px;
	color: #000000;
}

span.Backtotopicon
{
	margin-right: 0.3em;
	color: white;
	font-size: 2em;
	vertical-align: middle;
}

span.Backtotoptext
{
	vertical-align: text-bottom;
}

._Skins_SearchResults_FNZ.mc-component #resultList .description
{
	line-height: 1.5;
}

MadCap|dropDownHotspot.Dropdownhead
{
	font-size: 1.3em;
	margin-left: 10px;
	margin-bottom: 6px;
	margin-top: 6px;
}

div.notecolour
{
	background-color: #EB889F;
	background-image: url('../Images/FA/circle-info-regular.svg');
	background-size: 30px;
	background-position: 10px 10px;
	background-repeat: no-repeat;
	border-left: solid 2px var(--tip-color);
	line-height: 18px;
	overflow: hidden;
	padding: 15px 60px;
	margin-bottom: 15px;
}

/*Spans*/

span.query
{
	background: #ffffff;
}

span.total-results
{
	background: #ffffff;
}

span.mono
{
	font-size: 1.2em;
	font-family: monospace;
	font-weight: bold;
}

div.InternalOnly
{
	background-color: #FBDCDE;
	border-left: solid 4px #ff0000;
	line-height: 18px;
	overflow: hidden;
	padding: 12px;
	margin-bottom: 12px;
}

span.headerlink
{
	color: #ffffff;
	position: fixed;
	top: 20px;
	margin: 1px;
	font-weight: bold;
	text-decoration: underline;
	text-underline-position: under;
	border-bottom-width: 4px;
	border-radius: 8%;
	border-bottom-style: solid;
	border-bottom-color: #fcdafd;
}

span.headerlink2
{
	color: #ffffff;
	position: fixed;
	top: 20px;
	margin: 1px;
	margin-left: 135px;
}

span.SearchHighlight
{
	color: #000000;
	background: #F5E289;
}

b
{
	
}

MadCap|xref
{
	color: var(--link-color);
}

div.Threecolumn	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
}

div.Threecolumn::before
{
	content: ' ';
	display: table;
}

div.Threecolumn::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.Threecolumn > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 50px;
	padding-right: 50px;
}

div.Threecolumn > div:nth-child(1)
{
	height: 100%;
	width: 20%;
	margin-left: 0%;
}

div.Threecolumn > div:nth-child(2)
{
	border-left: 1px solid #dadde1;
	width: 55%;
	margin-left: 0%;
	min-height: 100vh;
}

div.Threecolumn > div:nth-child(3)
{
	width: 25%;
	margin-left: 0%;
}

.height-container-sidenav
{
	padding-bottom: 0px;
}

blockquote
{
	border: 1px solid #cccccc;
	/* Custom border color */
	background-color: #f9f9f9;
	/* Light background color */
	padding: 10px;
	/* Padding for better readability */
	margin: 15px 0;
	/* Margin to separate from surrounding text */
	border-radius: 5px;
	/* Rounded corners */
	font-size: 0.7em;
}

.warning-box
{
	border: 1px solid #ff0000;
	background-color: #fff5f5;
	padding: 10px;
	margin: 15px 0;
	border-radius: 5px;
	display: block;
	font-size: 0.7em;
}

.info-box
{
	border: 1px solid #FDDA0D;
	background-color: #fffddb;
	font-size: 0.7em;
	padding: 10px;
	margin: 15px 0;
	border-radius: 5px;
}

.zoomable
{
	cursor: zoom-in;
	transition: transform 0.3s ease-in-out;
	max-width: 100%;
	max-height: 100%;
}

.zoomable.zoomed
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(2);
	/* Adjust scale as needed */
	z-index: 1000;
	cursor: zoom-out;
	max-width: 90%;
	/* Ensure it adapts to the screen size */
	max-height: 90%;
	/* Prevents the image from overflowing */
}

@media only screen and (max-width: 1279px)
{
	div.Tiles1 > div:nth-child(1)
	{
		width: 48%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(2)
	{
		width: 48%;
		margin-left: 4%;
	}

	div.Tiles1 > div:nth-child(3)
	{
		width: 48%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(4)
	{
		width: 48%;
		margin-left: 4%;
	}

	div.Tiles2 > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles2 > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.sideContent
	{
		display: none;
	}

	div.sideContentwide
	{
		display: none;
	}

	div.mainContent
	{
		margin-left: 1rem;
		padding-right: 1rem;
		/*matches sideContent width*/
		/*matches sideContent width*/
		display: block;
	}

	div.mainContentwide
	{
		margin-left: 1rem;
		padding-right: 1rem;
		/*matches sideContent width*/
		/*matches sideContent width*/
		display: block;
	}

	div.SearchResultsDiv
	{
		padding-right: 0%;
		margin-left: 1rem;
		margin-right: 1rem;
	}

	div.footer,
	div.footersearch
	{
		width: 100%;
		margin-left: 10px;
		margin-right: 10px;
	}

	div.Tiles1
	{
		padding-left: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
		padding-right: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
	}

	div.Tiles2
	{
		padding-left: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
		padding-right: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
	}

	div.home
	{
		padding-left: 75px;
		/* Match to Tiles 1 padding*/
		padding-right: 75px;
		/* Match to Tiles 1 padding*/
	}

	.title-bar-layout a.logo
	{
		margin-left: 40px;
		Margin-right: 40px;
	}

	div.Threecolumn > div:nth-child(1)
	{
		width: 25%;
		margin-left: 0%;
		display: none;
	}

	div.Threecolumn > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Threecolumn > div:nth-child(3)
	{
		width: 25%;
		margin-left: 0%;
		display: none;
	}

	/*div.TwoColumn > div:nth-child(2)
	{
		margin-left: 73%;
	}*/

	nav.title-bar .menu-icon
	{
		/*background: transparent url('../Images/Skin Images/bars-solid.svg');
		height: 28px;
		width: 28px;*/
		top: 68%;
	}

	div.gradientbar	/*un stickies the div graident bar in tablet/mobile*/
	{
		position: unset;
	}

	.dropDown.dropDownDinoDropdown
	{
		display: none;
	}

	div.Whatcanwehelpwithside
	{
		border-left: none;
		display: none;
	}

	.popup-holder
	{
		top: 15%;
		left: 20%;
		width: 60%;
	}

	img.Thumbnail
	{
		border: solid 1px #888888;
		mc-thumbnail: none;
	}

	img.Nobig
	{
		border: solid 1px #888888;
		mc-thumbnail: none;
	}
}

@media only screen and (max-width: 767px)
{
	img.Widget
	{
		max-width: default;
	}

	div.Widget > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
		margin-top: 0px;
	}

	div.Widget > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Widget > div:nth-child(3)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(3)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles1 > div:nth-child(4)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles2 > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles2 > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.Tiles2
	{
		padding-left: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
		padding-right: 75px;
		/* If you update this, update div.Contours in StylesForHomePage */
	}

	div.sideContent
	{
		display: none;
	}

	div.sideContentwide
	{
		display: none;
	}

	div.mainContent,
	div.mainContentwide,
	div.SearchResultsDiv
	{
		padding-right: 0px;
		margin-left: 1rem;
		margin-right: 1rem;
	}

	div.footer,
	div.footersearch
	{
		width: 100%;
		margin-left: 10px;
		margin-right: 10px;
	}

	div.Tiles1
	{
		padding-left: 15px;
		/* If you update this, update div.Contours in StylesForHomePage */
		padding-right: 15px;
		/* If you update this, update div.Contours in StylesForHomePage */
	}

	div.Tiles2
	{
		padding-left: 15px;
		/* If you update this, update div.Contours in StylesForHomePage */
		padding-right: 15px;
		/* If you update this, update div.Contours in StylesForHomePage */
	}

	#myBtn
	{
		padding: 2px, 5px;
		font-size: 11px;
	}

	div.home
	{
		padding-top: 30px;
		padding-left: 15px;
		/* Match to Tiles 1 padding*/
		padding-right: 15px;
		/* Match to Tiles 1 padding*/
	}

	div.Threecolumn > div:nth-child(1)
	{
		width: 99%;
		margin-left: 1%;
		display: none;
	}

	div.Threecolumn > div:nth-child(2)
	{
		width: 0%;
		margin-left: 0%;
	}

	div.TwoColumn > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.TwoColumn > div:nth-child(2)
	{
		display: none;
	}

	.dropDown.dropDownDinoDropdown
	{
		display: block;
	}

	span.headerlink
	{
		display: block !important;
	}

	span.headerlink2
	{
		display: block !important;
	}

	div.Whatcanwehelpwithside
	{
		border-left: none;
	}

	MadCap|dropDown.DinoDropdown
	{
		display: block;
		padding-bottom: 35px;
	}

	.dropDown.dropDownDinoDropdown
	{
		width: 70%;
		margin-bottom: 20px;
	}

	div.importantinfo
	{
		max-height: 60vh;
		width: 73%;
		right: 13%;
		top: 24%;
	}
}

p.FigureCaption
{
	font-size: 70%;
	line-height: 12pt;
	padding-top: -2px;
	top: -2px;
}

