/*<meta />*/

/*  Visual Studio Code Shortcut Keys

	Ctrl+K  Ctrl+0  (Collapse all)
	Ctrl-K  Ctrl-J  (Expand all)
*/

/*-------------------------
		Top-level
--------------------------*/

@import url('anchors.css');

/* Styles for anchor links */

@import url('picker-native-menu.css');

@namespace MadCap url(http://www.madcapsoftware.com/Schemas/MadCap.xsd);

/* Styles for dropdown menu picker (version, document) */
/* Styles for custom page TOC */
/* @import url("anchors-page-toc.css");  */

@font-face 
{
	font-family: APRegular;
	src: url(../fonts/APRegular.otf);
}

@font-face 
{
	font-family: APSemiCondensedBold;
	src: url(../fonts/APSemiCondensedBold.otf);
}

body.light
{
	--text: #2c2c2c;
	--background: white;
	--theme-icon: url(../images/icons/general/theme-dark.png);
	--logos: brightness(0.01);
	/* Darkens white logo */
	--ui-text: black;
	--ui-option-text: black;
	--link-text: #1da1e1;
	--keyboard-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px white inset;
	--image-shadow: 6px 6px 0 #eeeeee;
	--table-background: #f0f0f0;
	/* Hard-coding this overrides all table background styles */
	--table-border: white;
	/* Matches body background */
	--topic-contents-text: #2c2c2c;
	/* Overrides menu skin defaults */
}

body.dark
{
	--text: #e0e0e0;
	--background: #2c2c2c;
	--theme-icon: url(../images/icons/general/theme-light.png);
	--logos: brightness(9.9);
	/* Retains white logo */
	--ui-text: white;
	--ui-option-text: white;
	--link-text: #68c2ed;
	--keyboard-shadow: 0 1px 0px rgba(226, 226, 226, 0.2), 0 0 0 2px white inset;
	--image-shadow: 6px 6px 0 #494949;
	--table-background: #363636;
	/* Dark mode table background. Defaults to table style background with light mode */
	--table-border: #2c2c2c;
	/* Matches body background */
	--topic-contents-text: #e0e0e0;
	/* Overrides menu skin defaults */
}

body
{
	color: var(--text);
	background: var(--background);
	font-family: APRegular;
	font-size: 1rem;
	line-height: 28px;
	/* --textUI: var(--Black); */
	/* Dark/Light Mode: remove line from final build */
	/* --imageShadow: var(--ENPSLightGrey); */
}

.body-container
{
	padding-left: 76px !important;
	padding-top: 76px !important;
	scroll-behavior: smooth;
}

.theme-button
{
	background-color: white;
	border: 0;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	color: white;
	padding: 4px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	/* margin: 4px 2px; */
	cursor: pointer;
}

.theme-button .icon
{
	background: var(--theme-icon) no-repeat;
	float: left;
	width: 16px;
	height: 16px;
	/* margin-right: 10px */
}

.theme-button .span
{
	float: left;
	width: 20px;
	height: 20px;
}

.theme-button.active p	/*-------------------------
		Content
--------------------------*/
{
	margin-top: 20px;
	margin-bottom: 20px;
	letter-spacing: 0.25px;
}

p.splash
{
	font-family: APRegular;
	font-size: 5.625rem;
	line-height: 5.625rem;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
}

p.splash-sub
{
	font-family: APSemiCondensedBold;
	font-size: 2.5rem;
	line-height: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
}

p.invisible	/* Required for custom search topic to appear, via Contact Us */
{
	visibility: hidden;
	background-color: yellow;
}

/*-------------------------
		Headings
--------------------------*/

h1,
h2,
h3,
h4,
h5,
h6
{
	line-height: 1em;
	margin-top: 1em;
	margin-bottom: 0.5em;
	font-family: APSemiCondensedBold;
	/* display: inline-block; */
	/* added to try to fix anchor link changing the header spacing on click */
}

h1
{
	line-height: 3.6rem;
	font-size: 3rem;
	margin-top: 0em;
	margin-bottom: 1em;
}

h1.splash
{
	line-height: 58px;
	/* font-size: 5.625rem; */
	/*margin-top: 1em;*/
	margin-bottom: 1em;
	text-align: center;
}

h2
{
	line-height: 2.85rem;
	font-size: 2.25rem;
}

h3
{
	line-height: 2.4rem;
	font-size: 1.8rem;
}

h4
{
	line-height: 2rem;
	font-size: 1.4rem;
}

h5
{
	line-height: 1.5rem;
	font-size: 1rem;
}

/*-------------------------
			Text
--------------------------*/

.emphasize
{
	text-decoration: underline;
}

.var-name
{
	font-family: monospace;
	/*font-size: 0.9em;*/
	background-color: #f0f0f0;
	border-radius: 4px;
	color: #e0245e;
	padding-right: 0.4em;
	padding-left: 0.4em;
}

.var-value
{
	font-family: monospace;
	/*font-size: 0.9em;*/
	background-color: #e0e0e0;
	border-radius: 4px;
	color: black;
	padding-right: 0.4em;
	padding-left: 0.4em;
}

.code-inline	/* Currently copied from .variableValue */
{
	font-family: monospace;
	background-color: #e0e0e0;
	border-radius: 4px;
	color: black;
	padding-right: 0.4em;
	padding-left: 0.4em;
}

.filename
{
	font-family: monospace;
	word-break: break-all;
}

.ui-label
{
	color: var(--ui-text);
	font-weight: 900;
}

.ui-value-option
{
	color: var(--ui-option-text);
	font-style: italic;
	font-weight: 900;
}

.product-tool-name
{
	font-weight: bold;
}

.keyboard
{
	font-size: 0.8em;
	font-weight: bold;
	color: #595959;
	text-shadow: 0 1px 0 white;
	line-height: 1.4;
	border: 1px solid #ccc;
	border-radius: 3px;
	display: inline-block;
	white-space: nowrap;
	margin: 0 0.1em;
	margin-bottom: 0;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
	padding-right: 0.7em;
	padding-left: 0.7em;
	box-shadow: var(--keyboard-shadow);
	-moz-box-shadow: var(--keyboard-shadow);
	-webkit-box-shadow: var(--keyboard-shadow);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: white;
}

/*-------------------------
		Links
--------------------------*/

/* Also MadCap|xref */

a
{
	font-weight: normal;
	position: relative;
	color: var(--link-text);
}

a.externalLink
{
	text-decoration: none;
}

/*
a::before
{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background-color: var(--ENPSBrightBlue);
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .2s ease-in-out;
}
*/

a.externalLink::after
{
	/* add 'outside link' icon for external links? */
	content: url(../images/icons/flare/link-external.png);
	margin-left: 5px;
}

a:link
{
	/*color: var(--ENPSBrightBlue);*/
}

a:visited
{
	/*color: var(--ENPSBrightBlue);*/
}

a:hover::before
{
	transform-origin: left;
	transform: scaleX(1);
}

a:hover
{
	text-decoration: underline;
}

/*-------------------------
		Tipboxes
--------------------------*/

div.boxNote
{
	/* color: #595959; */
	/*background-color: #f0f0f0;*/
	/* background-image: url('../Images/Icons/Flare/boxNote_18px.png'); */
	background-image: url('../Images/Icons/Flare/box-note.svg');
	background-position: 16px 12px;
	background-repeat: no-repeat;
	line-height: 24px;
	overflow: hidden;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 60px;
	margin-bottom: 8px;
	margin-top: 20px;
	border-left: solid 4px #3496da;
}

div.boxNote > p
{
	margin-top: 10px;
}

div.boxTip
{
	/* color: #595959; */
	/*background-color: #f0f0f0;*/
	background-image: url('../Images/Icons/Flare/box-tip.svg');
	background-position: 16px 12px;
	background-repeat: no-repeat;
	line-height: 24px;
	overflow: hidden;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 60px;
	margin-bottom: 8px;
	margin-top: 20px;
	border-left: solid 4px #2dd273;
}

div.boxTip > p
{
	margin-top: 10px;
}

div.boxWarning
{
	/* color: #595959; */
	/*background-color: #f0f0f0;*/
	background-image: url('../Images/Icons/Flare/box-warning.svg');
	background-position: 16px 12px;
	background-repeat: no-repeat;
	line-height: 24px;
	overflow: hidden;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 60px;
	margin-bottom: 8px;
	margin-top: 20px;
	border-left: solid 4px #c0382b;
}

div.boxWarning > p
{
	margin-top: 10px;
}

div.boxMessage
{
	/* color: #595959; */
	/*background-color: #f0f0f0;*/
	background-image: url('../Images/Icons/Flare/box-message.svg');
	background-position: 16px 12px;
	background-repeat: no-repeat;
	line-height: 24px;
	overflow: hidden;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 60px;
	margin-bottom: 8px;
	margin-top: 20px;
	border-left: solid 4px #979797;
}

div.boxMessage > p
{
	margin-top: 10px;
}

/*-------------------------
		Images and Videos
--------------------------*/

li p img.screenshot	/* Add extra padding to screenshots in lists */
{
	margin-top: 14px;
}

li > p > video	/* Add extra padding to videos in lists */
{
	margin-top: 14px;
}

img
{
	border: none;
	/*max-width: 95%;*/
}

img.inlineIcon
{
	/*margin: 0px 0px 0px 0px;*/
	padding: 0px 0px 0px 0px;
	border-radius: 3px;
	margin-bottom: -5px;
	max-height: 24px;
	width: auto;
}

img.inline-windows-icon
{
	/*margin: 0px 0px 0px 0px;*/
	padding: 0px 0px 0px 0px;
	border-radius: 3px;
	margin-bottom: -5px;
	max-height: 24px;
	width: auto;
	filter: var(--logos);
}

img.screenshot,
object.video
{
	margin-left: 20px;
	max-width: 95%;
	box-shadow: var(--image-shadow);
	-moz-box-shadow: var(--image-shadow);
	-webkit-box-shadow: var(--image-shadow);
	-khtml-box-shadow: var(--image-shadow);
	border-radius: 6px;
	/* box-shadow: 3px 3px 7px var(--imageShadow);
	-moz-box-shadow: 3px 3px 7px var(--imageShadow);
	-webkit-box-shadow: 3px 3px 7px var(--imageShadow);
	-khtml-box-shadow: 3px 3px 7px var(--imageShadow); */
	/*box-shadow: 3px 3px 7px #595959;
	-moz-box-shadow: 3px 3px 7px #595959;
	-webkit-box-shadow: 3px 3px 7px #595959;
	-khtml-box-shadow: 3px 3px 7px #595959; */
}

img.screenshotNoShadow
{
	margin-left: 20px;
	max-width: 95%;
}

img.diagramIconResize
{
	width: 7%;
}

img.thumb
{
	margin-left: 20px;
	mc-thumbnail: popup;
	mc-thumbnail-max-height: 96px;
	mc-thumbnail-max-width: auto;
	border-bottom: red;
	border-right: red;
}

img.MCPopupFullImage
{
	/*outline: none;
    padding: 10px;
    mc-hidden: hidden;*/
}

.MCPopupContainer
{
	/* Set in C:\Program Files\MadCap Software\MadCap Flare 19\Flare.app\Resources\WebHelp2\Desktop\Skins\Default\Stylesheets\TextEffects.css */
}

/* used for imbedding external Vimeo videos */

.vidcontainer
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.viditem
{
	flex: 0 0 calc(33.33% - 20px);
	margin: 10px;
	text-align: center;
}

/*-------------------------
		Lists
--------------------------*/

dd,
dd p,
dt,
dt p,
li,
li p
{
	margin-bottom: 8px;
	margin-top: 8px;
	margin-left: 8px;
}

dl,
ol,
ul
{
	letter-spacing: .25px;
	line-height: 20pt;
	margin-top: 0px;
	margin-bottom: 20px;
}

ol
{
	font-weight: bold;
}

li p
{
	font-weight: normal;
}

/*-------------------------
		Tables
--------------------------*/

p.table-text
{
	/*line-height: 24px;*/
	/* color: var(--textTableText); This generates 'Invalid color' messages in Flare Messages window */
	/* color: #595959; */
	margin-top: 10px;
	margin-bottom: 10px;
}

td,
th
{
	border-color: var(--table-border) !important;
	/* For light/dark mode table borders. Defaults (hardcodes) to table style background with light mode */
}

td
{
	background-color: var(--table-background) !important;
	/* For light/dark mode table background. Defaults (hardcodes) to table style background with light mode */
}

p.anchor-me
{
	/* Empty class, added so that anchor.js can add anchors to elements tagged with this class. Class name must be added to the selectors in anchor.js */
}

p.anchor-me:target	/* styling added to anchored link that has been opened */
{
	background-color: yellow;
}

table#sortableTable
{
	
}

MadCap|breadcrumbsProxy
{
	border-bottom-width: 0;
	mc-breadcrumbs-prefix: '\200b';
	/* \200b is a no-width space */
	font-size: 0.8em;
}

/*-------------------------
		MadCap Specific
--------------------------*/

MadCap|xref
{
	mc-format: '{para}';
	text-decoration: none;
	color: var(--link-text);
}

MadCap|codeSnippet
{
	color: #595959;
	background: #e0e0e0;
	border: 0px;
	padding-left: 20px;
	padding-bottom: 20px;
	margin-bottom: 16px;
}

MadCap|codeSnippetBody
{
	font-size: 16px;
	line-height: 24px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	padding-right: 60px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.codeSnippetBody > pre
{
	text-wrap: wrap;
}

MadCap|codeSnippetCopyButton
{
	background-image: url('../images/icons/flare/copy-clipboard.svg');
	background-repeat: no-repeat;
	mc-label: ' ';
	height: 24px;
	width: 24px;
	/*float: left;*/
}

MadCap|dropDown
{
	/*border-bottom: 1px solid var(--Light);*/
	mc-image-position: left;
	mc-image-spacing: 10px;
	mc-open-image: url('../Images/Icons/Flare/list_16px.png');
	mc-closed-image: url('../Images/Icons/Flare/list_16px.png');
	padding: 10px 0;
}

MadCap|dropDownHead
{
	/* color: #595959; */
}

MadCap|dropDownBody
{
	padding: 10px 30px 0;
}

MadCap|dropDownHotspot
{
	cursor: help;
	font-weight: bold;
	/*border-bottom: none;*/
	/* color: #595959; */
}

MadCap|expandingBody
{
	/* color: #595959; */
	font-style: italic;
}

MadCap|expandingHead
{
	font-style: italic;
	font-weight: normal;
	cursor: hand;
	text-decoration: none;
	color: #146994;
}

/* Master page */

div.main-footer
{
	position: absolute;
	font-weight: bold;
	bottom: 0;
}

div.home-footer
{
	background-color: #146994;
	padding: 2% 5%;
}

p.footer
{
	margin-top: 5px;
	margin-bottom: 5px;
	line-height: 13pt;
	color: white;
}

p.footer-sub
{
	color: white;
	font-size: 14pt;
	margin-top: 14px;
}

p.titlebar	/* Do not change to title-bar, which is superceded by title-bar in a build-level CSS */
{
	font-size: 1.5rem;
	/* font-size: calc(1.5rem * var(--text-multiplier)); */
	font-weight: 600;
	padding-left: 30px;
	/* color: var(--text) !important; */
}

li::marker
{
	/*color: #ea4335;*/
}

MadCap|glossaryTerm.Hyperlink
{
	mc-term-display: popup;
	text-decoration: underline;
}

MadCap|glossaryTerm:hover
{
	/*mc-open-image: ;*/
}

span.SearchHighlight
{
	background-color: #fff948;
}

MadCap|slideshow
{
	box-shadow: none;
}

/* anchorjs header icon link styling */

.anchorjs-link
{
	text-decoration: none !important;
}

ul.checklist
{
	list-style-image: none;
}

ul.checklist > li::marker
{
	/*font-family: Webdings;
	content: 'a';*/
	content: url(../images/icons/general/checkbox-ticked.png);
}

ul.checklist > li > ul
{
	list-style-image: none;
}

ul.checklist > li > ul > li::marker
{
	/*font-family: Webdings;
	content: 'a';*/
	content: url(../images/icons/general/checkbox-ticked.png);
}

ul.checklist > li > ul > li > ul
{
	list-style-image: none;
}

ul.checklist > li > ul > li > ul > li::marker
{
	/*font-family: Webdings;
	content: 'a';*/
	content: url(../images/icons/general/checkbox-ticked.png);
}

ul._Skins_menuProxySkin a
{
	color: var(--topic-contents-text) !important;
	/* Overrides skin defaults */
}

ol.numbers
{
	list-style-type: decimal;
	list-style-image: none;
}

ol.numbers > li > ol
{
	list-style-type: lower-alpha;
	list-style-image: none;
}

ol.numbers > li > ol > li > ol
{
	list-style-type: lower-roman;
	list-style-image: none;
}

ol.numbers > li > ol > li > ol > li > ol
{
	list-style-type: upper-alpha;
}

ul.bullets
{
	list-style-image: none;
}

ul.bullets > li::marker
{
	font-size: 6pt;
	content: '⚫ ';
}

ul.bullets > li > ul
{
	list-style-image: none;
}

ul.bullets > li > ul > li::marker
{
	font-size: 6pt;
	content: '⚪ ';
}

ul.bullets > li > ul > li > ul
{
	list-style-image: none;
}

ul.bullets > li > ul > li > ul > li::marker
{
	content: '⁃ ';
}

ul.bullets > li > ul > li > ul > li > ul
{
	list-style-image: none;
}

hr
{
	margin-top: 30px;
	margin-bottom: 46px;
}

hr.apred
{
	width: 74px;
	height: 7px;
	text-align: left;
	margin-left: 0;
	margin-top: -10px;
	margin-bottom: 5px;
	border: 0;
	background-color: #ff322e;
}

.center
{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	float: none !important;
	text-align: center;
}

.sidebar-heading
{
	font-weight: bold;
	font-size: 22px;
	padding-left: 10px;
	color: black;
}

.titlebar-link
{
	text-decoration: none !important;
	color: black !important;
}

.topic-contents-heading
{
	margin-top: 50px;
}

div.grid-eight-four	/*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.grid-eight-four::before
{
	content: ' ';
	display: table;
}

div.grid-eight-four::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.grid-eight-four > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.grid-eight-four > div:nth-child(1)
{
	width: 66.667%;
	margin-left: 0%;
}

div.grid-eight-four > div:nth-child(2)
{
	width: 33.333%;
	margin-left: 0%;
}

div.grid-nine-three	/*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.grid-nine-three::before
{
	content: ' ';
	display: table;
}

div.grid-nine-three::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.grid-nine-three > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.grid-nine-three > div:nth-child(1)
{
	margin-left: 0%;
	width: 75%;
	padding-right: 76px;
}

div.grid-nine-three > div:nth-child(2)
{
	margin-left: 0%;
	width: 25%;
}

div.grid-four-four-four	/*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.grid-four-four-four::before
{
	content: ' ';
	display: table;
}

div.grid-four-four-four::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.grid-four-four-four > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.grid-four-four-four > div:nth-child(1)
{
	width: 33.33333%;
	margin-left: 0%;
}

div.grid-four-four-four > div:nth-child(2)
{
	width: 33.33333%;
	margin-left: 0%;
}

div.grid-four-four-four > div:nth-child(3)
{
	width: 33.33333%;
	margin-left: 0%;
}

div.grid-6-6	/*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.grid-6-6::before
{
	content: ' ';
	display: table;
}

div.grid-6-6::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.grid-6-6 > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.grid-6-6 > div:nth-child(1)
{
	width: 50%;
	margin-left: 0%;
}

div.grid-6-6 > div:nth-child(2)
{
	width: 50%;
	margin-left: 0%;
}

@media only screen and (max-width: 1279px)
{
	div.grid-eight-four > div:nth-child(1)
	{
		width: 66.66667%;
		margin-left: 0%;
	}

	div.grid-eight-four > div:nth-child(2)
	{
		width: 33.33333%;
		margin-left: 0%;
	}

	div.grid-nine-three > div:nth-child(1)
	{
		width: 75%;
		margin-left: 0%;
	}

	div.grid-nine-three > div:nth-child(2)
	{
		width: 25%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(1)
	{
		width: 33.33333%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(2)
	{
		width: 33.33333%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(3)
	{
		width: 33.33333%;
		margin-left: 0%;
	}

	p.titlebar
	{
		font-size: 1rem;
	}

	div.grid-6-6 > div:nth-child(1)
	{
		width: 50%;
		margin-left: 0%;
	}

	div.grid-6-6 > div:nth-child(2)
	{
		width: 50%;
		margin-left: 0%;
	}
}

@media only screen and (max-width: 767px)
{
	div.grid-eight-four > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-eight-four > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-nine-three > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
		padding-right: 0;
	}

	div.grid-nine-three > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-four-four-four > div:nth-child(3)
	{
		width: 100%;
		margin-left: 0%;
	}

	.body-container
	{
		padding-left: 8px !important;
		padding-top: 8px !important;
	}

	p.titlebar
	{
		font-size: 1rem;
	}

	div.grid-6-6 > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
	}

	div.grid-6-6 > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
	}
}

