html, body {margin: 0px; padding: 0px;}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #5b5d5e;
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

a, a:visited {
	color: #368EC4;
	text-decoration : none;
}

a:hover {
	color: #005386;
	text-decoration: none;
}

/* Panel and frames styling */

iframe {
	display: block;
	border: none;
	width: 100%;
	height: 100%;
}

#header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
	cursor: default;

	font-family: '3dsweblight', Arial, lucida, helvetica, sans-serif;
	color: #fff;
	position: fixed;
	z-index: 500;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 44px;
	background-color: #005386;
}

#header b {font-family: '3dsweb', Arial, lucida, helvetica, sans-serif; font-weight: normal;}

#logo {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;

	width: 44px;
	height: 44px;
	background: transparent url('images/logo_sprite.svg') no-repeat;
}

#title {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;

	display: inline-flex;
	text-align: left;
	font-size: 16px;
	font-weight: normal;
	padding: 0 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#title .headingTitle:before {
	content: "|";
	margin: 0 10px;
}

#body {
	position: absolute;
	top: 44px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
}

#navi {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 310px;
	background-color: #f8f8f8;
	overflow: hidden;
}

#browser {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* loader mask */

#mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.8;
}

#mask-wrapper {
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
}

#mask-content {
	display: table-cell;
	margin: auto;
	vertical-align: middle;
}

#spinner {
	display: inline-block;
	vertical-align: middle;
	background: url("images/misc_progress_small.gif") 0px 50% no-repeat;
	text-align: center;
	width: 25px;
	height: 25px;
}

#text {
	font-family: '3dsweb', Arial, lucida, helvetica, sans-serif;
	font-size: 15px;
	line-height: 25px;
	padding: 5px;
}

/* loader mask end */

#separator {
	position: absolute;
	left: 310px;
	top: 0;
	bottom: 0;
	width: 6px;
	border-left: 1px solid #e0e0e0;
	cursor: e-resize;
	z-index: 300;
}

#maskingPanel {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: white;
	opacity: 0.05;
	filter: alpha(opacity = 5);
}

#separator:hover, #separator.active {
	background: #f8f8f8 url(images/separator_v.png) 50% 50% no-repeat;
	border-right: 1px solid #e0e0e0;
	cursor: e-resize;
}

#viewer {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 316px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* Panel and frames styling end */

/* General styling */
#header .about {
	position: absolute;
	top: 5px;
	right: 8px;
}

body#main {
	padding: 10px;
}

body#tree {
	padding: 10px 0 10px 1px;
}

p, pre {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 600px;
}

p.note, p.warning, p.Info, pre.codelisting {
	margin: 8px 0;
	padding: 10px 10px 10px 35px;
	height: auto;
	font-size: 10pt;
	border-radius: 4px;
	border-left: 5px solid;
	color: #3D3D3D;
	box-shadow: 0 1px 3px 1px rgba(0,0,0,0.3);
}

p.note, p.Info {
	background: #f2f5f7 url('images/ico_info.png') 6px 6px no-repeat;
	border-color: #00b8de;
}

p.warning, p.Warning {
	background: #fff3e9 url('images/ico_warning.png') 6px 6px no-repeat;
	border-color: #e87b00;
}

pre.summary {
	font-family: Arial, Helvetica, sans-serif;
	white-space: pre-wrap;
}

pre.description {
	font-family: Arial, Helvetica, sans-serif;
}

pre.codelisting {
	font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
	/*background-color: #F9F9F9;*/
	background-color: #F0F0F0;
	border-color: #D1D4D4;
	padding: 10px;
	font-size: 9pt;
	line-height: 10pt;
	white-space: pre-wrap;
	word-wrap: break-word;
	-ms-word-wrap: break-word;
}

ol, ul {
	margin-top: 3px;
	margin-bottom: 6px;
	max-width: 600px;
}

ul {
	list-style-type: square;
	list-style-image: url('images/bullet.png');
}

li {
	padding-top: 1px;
	padding-bottom: 3px;
}

h,h1,h2,h3,h4 {
	font-family: '3dsweblight', Arial, lucida, helvetica, sans-serif;
	font-weight: normal;
	margin: 0px;
	color: #005386;
}

h1 {
	margin: 0 0 8pt 0;
	font-size: 1.6em;
}

h2 {
	margin: 12pt 0 6pt 0;
	font-size: 1.4em;
}

h3 {
	margin: 8pt 0 4pt 0;
	font-size: 1.2em;
}

h4 {
	padding: 6pt 0 2pt 0;
	font-size: 1em;
}

/* triggers styling */
.trigger {
	display: block;
	float: right;
	visibility: visible;
	margin: 0 0 5px 5px;
}

/* Content table styling - common */
table {
	width: 100%;
	border-collapse: collapse;
}

table * {
	margin-top: 0px;
	padding-top: 0px;
}

.content th, .details th {
	vertical-align: top;
	font-weight: normal;
	padding: .5em;
}

.content th {
	background-color: #E2E4E3;
	color: #3d3d3d;
	border: solid 1px #FFFFFF;
	text-align: left;
}

.details th {
	text-align: right;
}

.content tr, .details tr, .content td, .details td {
	vertical-align: top;
	padding: .5em;
	color: #77797C;
}

.content tr:nth-child(even) {
	background-color: #f1f1f1;
	border: none;
}

.content tr:nth-child(odd) {
	background-color: #FFF;
	border: none;
}

/* Content table styling - common end */

/* form styling */
#formNest {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;

	position: absolute;
	top: 7px;
	left: calc(50% + 5px);
}

.inputGroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;

	width: 300px;
}

#header .inputGroup > * {
	border-radius: 4px;
	border: none;
}

#header .inputGroup > *:first-child, a.btn:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; }
#header .inputGroup > *:not(:first-child), a.btn:not(:first-child) { border-radius: 0; }
#header .inputGroup > *:last-child, a.btn:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

#searchbox {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-flex-basis: 100px;
	-ms-flex-preferred-size: 100px;
	flex-basis: 100px;

	padding: 0 10px;
}

#searchbox.required {
	background: #EA4F37;
	color: rgba(255, 255, 255, 0.5);
	-webkit-transition: background 1s;
	-moz-transition: background 1s;
	-o-transition: background 1s;
	transition: background 1s
}

#formNest .Button {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;

	font-family: "DSFontIcon";
	font-size: 18px;
	background-color: #fff;
	width: 38px;
}

#formNest .Button:before {
	display: block;
	color: #b4b6ba;
	line-height: 30px;
	text-align: center;
}

#formNest .Button:hover:before {
	color: #3D3D3D;
}

#clearButton:before { content: "\e016"; }
#theButton:before   { content: "\e180"; }


#searchbox::-ms-clear                       { display: none; } /* disable IE clear button */
#searchbox:placeholder-shown + #clearButton { display: none; } /* only show clear when value present */

/* */

/* Tree styling */

.treeNode {
	display: -webkit-flex;
	display: flex;

	white-space: nowrap;
	padding: 0px;
	line-height: 24px;
	border-left: solid 4px transparent;
	cursor: default;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.treeNode:not(.selected):hover {
	background-color: #F2F5F7;
}

.treeNode:not(.expanded) + .branch:not(.visible) {
	display: none;
}

#NoResultsInfo {
	text-align: center;
	color: #d1d4d4;
	font-size: 1.3em;
	margin: 8em 0 0 0;
}

.branch > .treeNode { padding-left: 16px; }
.branch > .branch > .treeNode { padding-left: 32px; }
.branch > .branch > .branch > .treeNode { padding-left: 48px; }
.branch > .branch > .branch > .branch > .treeNode { padding-left: 64px; }
.branch > .branch > .branch > .branch > .branch > .treeNode { padding-left: 80px; }

.treeNode > a[class*="Leaf"], .columnResults {
	padding-left: 36px;
	background-position: 18px;
	background-repeat: no-repeat;
}

.nodeExpander > *[class*="Leaf"], .nodeExpander + a[class*="Leaf"] {
	padding-left: 18px;
	background-position: 0;
	background-repeat: no-repeat;
}

.hidden { display: none; }
.invisible { visibility: hidden; }

.indentTop {
	margin-top: 7px;
}

.selected, .selected a {
	color: #005386;
	background-color: #F1F1F1;
	border-color: #42A2DA;
}

.nodeExpander {
	padding-left: 18px;
	background: url(images/tree_p_node.png) no-repeat 0 50%;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.treeNode.expanded > .nodeExpander {
	background-image: url(images/tree_m_node.png)
}

.nodeExpander:only-child, .treeNode > a:not(.nodeAction) {
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

a.nodeAction {
	display: block;
	cursor: pointer;
	overflow: hidden;
	height: 18px;
	width: 38px;
	margin: 3px 0;
}

/* Tree styling end */

/* Form controls appearance */

input[type='button'], input[type='submit'], a.btn {
	display: block;
	border-radius: 3px;
	text-decoration: none;
	height: 28px;
	line-height: 26px;
	cursor: default;
	padding: 0px 12px;

 -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
}

input.Primary, input[type='submit'] {
	color: #ffffff;
	background-color: #368EC4;
	border: 1px solid #368EC4;
}

input.Primary:hover, input[type='submit']:hover {
	color: #ffffff;
	background-color: #005686;
	border-color: #005686;
}

input.Primary:active, input[type='submit']:active {
	border-color: #368ec4;
	color: #ffffff;
	background-color: #003C5A;
}

input.Secondary, a.btn {
	color: #3d3d3d;
	background-color: #F1F1F1;
	border: 1px solid #B4B6BA;
}

input.Secondary:hover, a.btn:hover {
	text-decoration: none;
	cursor: default;
	color: #3d3d3d;
	background-color: #E2E4E3;
	border-color: #77797C;
}

input.Secondary:active, a.btn:active {
	border-color: #3D3D3D;
	color: #3D3D3D;
	background-color: #B4B6Ba;
}

input[type='button'][disabled], input[type='button'][disabled]:hover {
	color: #3d3d3d;
	background-color: #F1F1F1;
	border: 1px solid #B4B6BA;
	opacity: 0.4;
}

input[type='text'] {
	height: 30px;
}

input[type='text'], input.datetime, textarea {
	border: 1px solid #D1D4D4;
	border-radius: 3px;
	padding-left: 3px;
}

/* Form controls appearance end */

/* Styling for small screen sizes */
@media screen and (max-width: 40em) {
	#navi, #separator, #dimmer, #title .prefix, #burger + #logo, #title > span.active, #title .headingTitle:before {
		display:none;
	}

	#title {
		-webkit-flex-shrink: 1;
		-ms-flex-negative: 1;
		flex-shrink: 1;
	}

	#title > span {
		overflow: hidden;
		text-overflow: ellipsis;
	}

	#formNest {
		position: static;
		margin-right: 5px;
	}

	.inputGroup {
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;

		padding-left: 0;
		width: auto;
		min-width: 200px;
		max-width: 300px;
	}

	.menuPresent #navi, .menuPresent #dimmer {
		display: block;
	}

	#navi {
		width: 80% !important; /* needs to overwrite size set by separator */
		border-right: 1px solid #e0e0e0;
		box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
		z-index: 100;
	}

	#dimmer {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(0,0,0,0.3);
		cursor: pointer;
		z-index: 50;
	}

	#viewer {
		left: 0px !important; /* needs to overwrite position set by separator */
	}

	#burger {
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;

		width: 44px;
		height: 44px;
		background: transparent url('images/logo_sprite.svg') no-repeat 0 -44px;
		cursor: pointer;
	}

	#burger:hover, .menuPresent #burger {
		background-position: 0 -132px;
	}
}

@media screen and (max-device-width: 40em) {
	body {
		font-size: 16px;
	}

	.treeNode {
		margin: -1px 0px;
		line-height: 38px;
		border-top: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
	}
}

@media screen and (max-width: 20em) {
	#navi {
		width: 100% !important;
		border: none;
	}
}
/* Styling for small screen sizes end */

/* Class supporting ZoomSearch hilighting feature (http://www.wrensoft.com/zoom/support/highlighting.html) */
.highlight { background: #f2d600; }

/* !!!! DO NOT MODIFY BY HAND!!!! */
/* fonts.css from default style */
@font-face {
	font-family: '3dsweb';
	font-style: normal;
	font-weight: normal;
	src: url("../../../Start/fonts/DS_FY_Regular.eot");
	src: url("../../../Start/fonts/DS_FY_Regular.eot?#iefix") format("embedded-opentype"), url("../../../Start/fonts/DS_FY_Regular.woff") format("woff"), url("../../../Start/fonts/DS_FY_Regular.ttf") format("truetype"), url("../../../Start/fonts/DS_FY_Regular.svg#3dsregular") format("svg");
}

@font-face {
	font-family: '3dsweblight';
	font-style: normal;
	font-weight: normal;
	src: url("../../../Start/fonts/DS_FY_Light.eot");
	src: url("../../../Start/fonts/DS_FY_Light.eot?#iefix") format("embedded-opentype"), url("../../../Start/fonts/DS_FY_Light.woff") format("woff"), url("../../../Start/fonts/DS_FY_Light.ttf") format("truetype"), url("../../../Start/fonts/DS_FY_Light.svg#3dslight") format("svg");
}

@font-face {
  font-family: 'DSFontIcon';
  font-style: normal;
  font-weight: normal;
  src: url("../../../Start/fonts/3ds_fonticon.eot");
  src: url("../../../Start/fonts/3ds_fonticon.eot?#iefix") format("embedded-opentype"), url("../../../Start/fonts/3ds_fonticon.woff") format("woff"), url("../../../Start/fonts/3ds_fonticon.woff2") format("woff2"), url("../../../Start/fonts/3ds_fonticon.ttf") format("truetype"), url("../../../Start/fonts/3ds_fonticon.svg") format("svg");
}

/* fonts end */